From ff1faff8392cee23c9a3e9a9f1780ef49fdc60d6 Mon Sep 17 00:00:00 2001 From: dwasint <82520990+dwasint@users.noreply.github.com> Date: Thu, 25 Jul 2024 22:26:23 -0700 Subject: [PATCH] Ouroboros and Voidraptor (#2439) * voidraptor initial save * blacksmith * prison * voidraptor config * ouroboros * moon turfs * adds lunar decal * new xeno * lights * Update VoidRaptor.dmm * adds chicken and botany books * blueshift pen fix * pool fix * shuttles * Revert "lights" This reverts commit 33affc3cb0fda13bf29953efb7a8ae02352cee71. * Reapply "lights" This reverts commit f3ccc3179eea2e6d792f3ca35ce882c6cb97ed73. * fixes * new chem synths aswell * fixes * Update VoidRaptor.dmm * fixes * Update Ouroboros.dmm * Update Ouroboros.dmm * Update VoidRaptor.dmm * Update VoidRaptor.dmm * fuckin hate fake stairs * bloop * Bumps rust-g to `3.3.0` (#83635) ## About The Pull Request Release notes: https://github.com/tgstation/rust-g/releases/tag/3.3.0 Mainly bumping in order to use a feature of it in #83138, to optimize the system a little better. ## Why It's Good For The Game Faster init when that system will be more widely used is a good thing. Also keeps us up to date and enables more tools to be available to coders. * Adds Biomes to the Cave Generator, for all of your procedurally-placed cave biome needs! (#83138) Implements biomes into the Cave Generator, using some adapted code from the biomes feature of the Jungle Generator. It's there as a tool for whomever would want to implement it on /tg/, I simply don't have the sprites, mobs and motivation to add biomes to anything at this current point in time, even though I'm fully open to helping anyone that would be interested in doing so. Here's how it works: You supply a 2D list of biomes based on the two arbitrary criteria 'heat' and 'humidity', you can treat these as simply two independent variables that would affect your biome distribution. There's three levels of each, `LOW`, `MEDIUM` and `HIGH`, take a look at `possible_biomes` for a good example of it. Here's what it looks like by default (yes, that's the default on the jungle generator as well, except here we use 3x3 instead of 4x4): ![image](https://github.com/tgstation/tgstation/assets/58045821/2c53b46b-f4f9-497f-9647-efc2cc118805) On the `/datum/biome`, you have three important stats, split into two each: flora, features and fauna. They are evaluated in this order, so if a flora spawns, no feature nor fauna will spawn. If a feature spawns, no fauna will spawn, and if fauna spawns, then that's cool. Each of these stats have a corresponding `density` (i.e. `flora_density`), which is simply the probability for that thing to be spawned if it's eligible, and a `types` list (i.e. `flora_types`), which is a weighted list that then gets expanded at runtime in order to make the `pick()` operation faster. The areas you want to have the biomes in also need to have their `area_flags` set up to include `FLORA_ALLOWED` for both flora and features, and `MOB_SPAWN_ALLOWED` for fauna to spawn. The fauna currently does just about every check that is done in `cave_generator`'s `populate_terrain()`, except for handling megafauna differently, or taking megafauna into account. If that's desired, it can be added easily, I simply chose not to add it because it felt like wasted processor time over something that would probably not be pertinent in the majority of cases. I've run a few tests, and keeping in mind that I've got a high-specs computer, generating the caves with biomes takes about 1 second for an entire z-level covered in biomes. For comparison, I compile the repo in about 36 seconds. ~~It may increase the amount of time spent initializing the atoms subsystem, however, I'll need to compare that, I'd really appreciate some help optimizing that if anyone knows how to.~~ It didn't seem to have an effect, I just had seen things a bit weird. I optimized things by moving rust-g calls outside of the for loop, and we gained about 0.3-0.4 seconds, which is pretty nice. Biomes are cool, and since we use mainly cave generators for z-level generation, I decided to add biomes to that, so that the biome code added by floyd lives on. Here's an example of ice box with jungle caves, just as a proof of concept, to prove that it works: ![image](https://github.com/tgstation/tgstation/assets/58045821/33b348db-513b-4a2e-b11f-907e80b65177) :cl: GoldenAlpharex add: Added Biomes capabilities to the Cave Generator, to allow for procedurally-placed biomes to be introduced in cave generation. This feature is not currently used on any map, but the tools are all there for anyone with the motivation to add biomes to any cave-generating area, like Lavaland and Ice Box. code: Biomes can now affect features (which are usually structures), on top of flora and fauna. /:cl: * adds in base forest and mushroom forest generation * makes it work * Update Ouroboros.dmm * Update Ouroboros.dmm * Update signals_atom.dm * Update signals_atom.dm * :) * spawnable colony kit, atmospherics changes for forest, eclipse? new map eclipse base * Update particle_weather.dm * fixes * Update misc_procs.dm * Delete wolf.dm * fixes grass dug * guh * Update eclipse.dmm * Update frontier.dm * Update frontier.dm * Update new_turfs.dm * -2 for eclipse * eclipse is halved * fixes bulk splits breaking liquids for the rest of the round * more colony stuff * Update new_turfs.dm * Update food_or_drink.dm * Update all_nodes.dm * Update all_nodes.dm * misc fixes * fixes rain sounds on eclipse * adds seedmesh design to organic printer * removes some plushies * removes another plush * fixes * better sounds for eclipse * Update areas.dm * adds a way to have mobs temporarily target objects until hit * restart spawner signal * Update new_turfs.dm * fixes bloom * removes bb block * Update VoidRaptor.dmm * fixes maps * adds wall lockers and shelf recipes * base of the extractor * new icons * fixes * Update armament.dm * alot of new stuff all at once * whoops * whoops * Update AntagInfoAssaultops.tsx * more stuff * Update CentCom.dmm * Update goldeneye_cruiser.dmm * more fixes * Update _base_event.dm * whoops * stamps * voidraptor and blueshift maint access cleanup * Update Ouroboros.dmm * Update Ouroboros.dmm * changes * access fixes pinpointers * Update goldeneye_cruiser.dmm * removes the forced event after run * reruns update_icon_state to force the empty mags to be empty * Portal To Hell * fixes * Update rust_g.dll * admin retirement home * Revert "admin retirement home" This reverts commit 42588d32a6ba378bb2aa490d3153ebd3f8be05ee. * Update misc_pets.dm * Update machinery.dm * missing icons * Update new_turfs.dm * fixes * more stuff * changes * Update shuttle.dm * Update shuttle.dm * Update VoidRaptor.dmm * fixes --------- Co-authored-by: GoldenAlpharex <58045821+GoldenAlpharex@users.noreply.github.com> --- _maps/map_files/Blueshift/Blueshift.dmm | 129 +- _maps/map_files/Ouroboros/Ouroboros.dmm | 212916 +++++++++++++++ _maps/map_files/Voidraptor/VoidRaptor.dmm | 152413 +++++++++++ _maps/map_files/generic/CentCom.dmm | 136930 +++++----- _maps/ouroboros.json | 30 + _maps/shuttles/nova/cargo_nova_delta.dmm | 337 + _maps/shuttles/nova/cargo_ouroboros.dmm | 220 + _maps/shuttles/nova/goldeneye_cruiser.dmm | 1328 + _maps/shuttles/nova/mining_nova_large.dmm | 542 + _maps/shuttles/nova/whiteship_ouroboros.dmm | 964 + _maps/voidraptor.json | 22 + _maps/~monkestation/unique/eclipse.dmm | 32922 +++ .../signals_mob/signals_mob_spawner.dm | 6 + code/__DEFINES/extraction.dm | 11 + code/__DEFINES/flags.dm | 3 + code/__DEFINES/icon_smoothing.dm | 4 +- code/__DEFINES/layers.dm | 26 +- code/__DEFINES/maps.dm | 29 + code/__DEFINES/role_preferences.dm | 3 + code/__DEFINES/rust_g.dm | 27 + code/__DEFINES/sound.dm | 2 + code/__DEFINES/~monkestation/assault.dm | 19 + code/__DEFINES/~monkestation/atmospherics.dm | 2 + code/__DEFINES/~monkestation/blackboard.dm | 29 + code/__DEFINES/~monkestation/colors.dm | 12 + .../~monkestation/dcs/signals/signals_atom.dm | 5 + code/__DEFINES/~monkestation/optfor.dm | 1 - code/__DEFINES/~monkestation/traits.dm | 3 + code/__HELPERS/areas.dm | 1 + code/__HELPERS/spatial_info.dm | 31 + code/_globalvars/~monkestation/lists/mobs.dm | 1 + code/controllers/subsystem/mapping.dm | 16 +- code/controllers/subsystem/shuttle.dm | 1 + code/controllers/subsystem/ticker.dm | 2 +- .../basic_ai_behaviors/targeting.dm | 2 +- .../basic_targeting_strategy.dm | 5 + code/datums/announcers/default_announcer.dm | 1 + code/datums/components/lock_on_cursor.dm | 37 +- code/datums/components/spawner.dm | 71 +- code/datums/map_config.dm | 2 +- code/datums/mapgen/CaveGenerator.dm | 256 +- code/datums/mapgen/biomes/_biome.dm | 202 +- code/game/area/areas.dm | 18 +- .../effects/spawners/random/food_or_drink.dm | 2 +- code/game/objects/items.dm | 4 +- code/game/objects/items/charter.dm | 22 +- code/game/objects/items/tools/weldingtool.dm | 2 +- code/game/objects/structures/flora.dm | 2 +- code/game/objects/structures/railings.dm | 1 + code/game/objects/structures/spawner.dm | 9 +- code/game/turfs/open/asteroid.dm | 4 +- code/game/turfs/turf.dm | 7 + code/modules/admin/admin_verbs.dm | 1 + code/modules/admin/sql_ban_system.dm | 1 + code/modules/antagonists/brother/brother.dm | 8 + code/modules/escape_menu/home_page.dm | 6 + code/modules/hydroponics/hydroitemdefines.dm | 1 + code/modules/lighting/lighting_corner.dm | 27 +- .../mob/living/basic/icemoon/wolf/wolf.dm | 12 + code/modules/mob/living/carbon/life.dm | 2 +- .../hostile/megafauna/demonic_frost_miner.dm | 2 +- .../simple_animal/hostile/mining_mobs/wolf.dm | 72 - code/modules/mod/modules/modules_antag.dm | 3 - .../procedural_mapping/mapGenerator.dm | 4 + .../boxes_magazines/_box_magazine.dm | 1 + .../projectiles/guns/energy/special.dm | 2 +- .../research/designs/medical_designs.dm | 12 +- code/modules/research/techweb/all_nodes.dm | 2 + config/maps.txt | 9 + dependencies.sh | 2 +- icons/turf/decals.dmi | Bin 88830 -> 96019 bytes icons/turf/floors.dmi | Bin 366492 -> 408685 bytes .../code/controllers/subsystem/job.dm | 9 +- .../aesthetics/mapping/tilecoloring.dm | 6 + .../modules/assault_ops/code/access_cards.dm | 14 + .../code/modules/assault_ops/code/alarms.dm | 82 + .../code/modules/assault_ops/code/ammo_box.dm | 7 + .../modules/assault_ops/code/antagonist.dm | 288 + .../code/modules/assault_ops/code/areas.dm | 65 + .../assault_ops/code/armaments/_base.dm | 193 + .../assault_ops/code/armaments/explosives.dm | 40 + .../assault_ops/code/armaments/implants.dm | 48 + .../assault_ops/code/armaments/medical.dm | 53 + .../assault_ops/code/armaments/mod_modules.dm | 35 + .../assault_ops/code/armaments/utility.dm | 70 + .../assault_ops/code/assault_op_vendor.dm | 29 + .../assault_ops/code/covert_modsuit.dm | 104 + .../modules/assault_ops/code/goldeneye.dm | 257 + .../modules/assault_ops/code/interrogator.dm | 219 + .../assault_ops/code/midround_event.dm | 91 + .../code/modules/assault_ops/code/outfits.dm | 45 + .../code/modules/assault_ops/code/pouch.dm | 73 + .../assault_ops/code/roundstart_event.dm | 93 + .../code/modules/assault_ops/code/shuttle.dm | 45 + .../code/modules/assault_ops/code/sunbeam.dm | 194 + .../code/modules/assault_ops/code/turret.dm | 29 + .../code/modules/assault_ops/code/turrets.dm | 40 + .../code/modules/assault_ops/code/vending.dm | 75 + .../code/modules/assault_ops/icons/alarm.dmi | Bin 0 -> 445 bytes .../modules/assault_ops/icons/goldeneye.dmi | Bin 0 -> 12945 bytes .../modules/assault_ops/icons/guns/guns.dmi | Bin 0 -> 1129 bytes .../assault_ops/icons/guns/guns_lefthand.dmi | Bin 0 -> 1274 bytes .../assault_ops/icons/guns/guns_righthand.dmi | Bin 0 -> 1258 bytes .../assault_ops/icons/guns/guns_worn.dmi | Bin 0 -> 1189 bytes .../assault_ops/icons/guns/magazines.dmi | Bin 0 -> 1519 bytes .../assault_ops/icons/modsuits/mod.dmi | Bin 0 -> 2332 bytes .../assault_ops/icons/modsuits/wornmod.dmi | Bin 0 -> 4454 bytes .../code/modules/assault_ops/icons/radial.dmi | Bin 0 -> 4086 bytes .../modules/assault_ops/icons/storage.dmi | Bin 0 -> 805 bytes .../modules/assault_ops/icons/sunbeam.dmi | Bin 0 -> 3404 bytes .../code/modules/assault_ops/readme.md | 0 .../sound/assault_operatives_greet.ogg | Bin 0 -> 239620 bytes .../assault_ops/sound/goldeneyealarm.ogg | Bin 0 -> 76768 bytes .../assault_ops/sound/icarus_alarm.ogg | Bin 0 -> 278808 bytes .../assault_ops/sound/sunbeam_fire.ogg | Bin 0 -> 38359 bytes .../assault_ops/sound/sunbeam_loop.ogg | Bin 0 -> 70878 bytes .../modules/blueshift/appliances/colony.dm | 4 +- .../code/modules/blueshift/areas/station.dm | 32 + .../blueshift/biogenerator/clothing.dm | 132 + .../blueshift/biogenerator/equipment.dm | 79 + .../blueshift/biogenerator/resources.dm | 22 + .../code/modules/blueshift/cargo/flatpacks.dm | 36 + .../modules/blueshift/components/armament.dm | 6 + .../modules/blueshift/designs/frontier.dm | 20 + .../blueshift/effects/mapping_helper.dm | 35 + .../code/modules/blueshift/icons/plushes.dmi | Bin 0 -> 63693 bytes .../code/modules/blueshift/items/pizza.dm | 35 + .../code/modules/blueshift/items/plushies.dm | 587 + .../modules/blueshift/items/soul_catcher.dm | 5 + .../blueshift/machines/sterling_generator.dm | 2 +- .../code/modules/blueshift/mobs/misc_pets.dm | 102 + .../code/modules/blueshift/shuttles.dm | 21 + .../modules/blueshift/structures/fluff.dm | 34 + .../modules/blueshift/structures/lights.dm | 16 + .../modules/blueshift/structures/locker.dm | 53 + .../modules/blueshift/structures/primative.dm | 13 + .../modules/blueshift/structures/veins.dm | 124 + .../blueshift/structures/wooden_rack.dm | 4 + .../code/modules/blueshift/turfs/evac.dm | 60 + .../code/modules/get_off_my_lawn/areas.dm | 7 + .../modules/get_off_my_lawn/fluff/fluff.dm | 17 + .../get_off_my_lawn/fluff/streetlamps.dm | 8 + .../modules/get_off_my_lawn/icons/bathtub.dmi | Bin 0 -> 6258 bytes .../get_off_my_lawn/icons/bed_chair.dmi | Bin 0 -> 43768 bytes .../get_off_my_lawn/icons/lighting_32x64.dmi | Bin 0 -> 5006 bytes .../modules/get_off_my_lawn/icons/mail.dmi | Bin 0 -> 380 bytes .../icons/modern_structures.dmi | Bin 0 -> 84884 bytes .../code/modules/holomaps/machinery.dm | 3 + .../code/modules/liquids/liquid_effect.dm | 4 +- .../code/modules/liquids/liquid_groups.dm | 98 +- .../code/modules/liquids/ocean_generator.dm | 4 +- .../code/modules/map_gen_expansions/README.md | 8 + .../map_gen_expansions/_basemapping.dm | 11 + .../ai/behaviours/hiding.dm | 59 + .../map_gen_expansions/ai/idle_behaviours.dm | 9 + .../ai/subtree/find_target_not_hiding.dm | 9 + .../map_gen_expansions/ai/subtree/hiding.dm | 57 + .../ai/subtree/retaliate_target.dm | 19 + .../ai/subtree/stop_hiding_if_target.dm | 12 + .../code/modules/map_gen_expansions/areas.dm | 35 + .../map_gen_expansions/elements/can_hide.dm | 56 + .../elements/stop_targetting_and_clear_key.dm | 26 + .../map_gen_expansions/forest/atmosphere.dm | 23 + .../map_gen_expansions/forest/generator.dm | 37 + .../map_gen_expansions/forest/mobs/deer.dm | 3 + .../forest/mobs/megadeer.dm | 91 + .../map_gen_expansions/icons/floors.dmi | Bin 0 -> 1653 bytes .../map_gen_expansions/icons/hud_icons.dmi | Bin 0 -> 715 bytes .../modules/map_gen_expansions/icons/misc.dmi | Bin 0 -> 399 bytes .../icons/mushroom_flora.dmi | Bin 0 -> 18359 bytes .../icons/mushroomtrees.dmi | Bin 0 -> 22720 bytes .../icons/newfauna_wide.dmi | Bin 0 -> 37230 bytes .../icons/plasma_extractor.dmi | Bin 0 -> 27862 bytes .../icons/turfs/floors/mushroom.dmi | Bin 0 -> 12784 bytes .../icons/turfs/floors/mushroom_blue.dmi | Bin 0 -> 12924 bytes .../icons/turfs/floors/mushroom_green.dmi | Bin 0 -> 12848 bytes .../icons/turfs/floors/plasma_forest.dmi | Bin 0 -> 88744 bytes .../icons/turfs/floors/plasma_forest_mask.dmi | Bin 0 -> 3009 bytes .../extraction/components/pipe_layer.dm | 223 + .../mushroom/extraction/effects/hud_effect.dm | 55 + .../extraction/structures/extraction_pipe.dm | 268 + .../extraction/structures/extractor/geyser.dm | 13 + .../extraction/structures/extractor/hub.dm | 102 + .../extraction/structures/extractor/main.dm | 124 + .../map_gen_expansions/mushroom/flora.dm | 213 + .../map_gen_expansions/mushroom/generator.dm | 110 + .../mushroom/mobs/stillcaps.dm | 100 + .../modules/map_gen_expansions/new_turfs.dm | 143 + .../structures/test_spawner.dm | 31 + .../_onclick/hud/rendering/plane_master.dm | 17 + .../modules/outdoors/code/admin_commands.dm | 9 +- .../controllers/subsystem/outdoors_effects.dm | 10 +- .../controllers/subsystem/particle_weather.dm | 125 +- .../particle_weathers/_particle_weather.dm | 108 +- .../particle_weathers/weather_types/rain.dm | 4 + .../code/modules/outdoors/code/misc_procs.dm | 19 +- .../sound/weather/forest_ambience.ogg | Bin 0 -> 1124553 bytes .../weather/rain/weather_rain_indoors.ogg | Bin 0 -> 172454 bytes .../converted_events/_base_event.dm | 7 +- .../storytellers/storytellers/_storyteller.dm | 4 + .../code/modules/trading/icons/particles.dmi | Bin 431 -> 458 bytes .../disease/symtoms/animation_procs.dm | 38 + rust_g.dll | Bin 7038464 -> 7232512 bytes tgstation.dme | 65 +- .../tgui/interfaces/AntagInfoAssaultops.tsx | 254 + .../antagonists/assaultoperative.ts | 25 + 206 files changed, 478079 insertions(+), 68011 deletions(-) create mode 100644 _maps/map_files/Ouroboros/Ouroboros.dmm create mode 100644 _maps/map_files/Voidraptor/VoidRaptor.dmm create mode 100644 _maps/ouroboros.json create mode 100644 _maps/shuttles/nova/cargo_nova_delta.dmm create mode 100644 _maps/shuttles/nova/cargo_ouroboros.dmm create mode 100644 _maps/shuttles/nova/goldeneye_cruiser.dmm create mode 100644 _maps/shuttles/nova/mining_nova_large.dmm create mode 100644 _maps/shuttles/nova/whiteship_ouroboros.dmm create mode 100644 _maps/voidraptor.json create mode 100644 _maps/~monkestation/unique/eclipse.dmm create mode 100644 code/__DEFINES/extraction.dm create mode 100644 code/__DEFINES/~monkestation/assault.dm create mode 100644 code/__DEFINES/~monkestation/atmospherics.dm create mode 100644 code/__DEFINES/~monkestation/blackboard.dm delete mode 100644 code/modules/mob/living/simple_animal/hostile/mining_mobs/wolf.dm create mode 100644 monkestation/code/modules/assault_ops/code/access_cards.dm create mode 100644 monkestation/code/modules/assault_ops/code/alarms.dm create mode 100644 monkestation/code/modules/assault_ops/code/ammo_box.dm create mode 100644 monkestation/code/modules/assault_ops/code/antagonist.dm create mode 100644 monkestation/code/modules/assault_ops/code/areas.dm create mode 100644 monkestation/code/modules/assault_ops/code/armaments/_base.dm create mode 100644 monkestation/code/modules/assault_ops/code/armaments/explosives.dm create mode 100644 monkestation/code/modules/assault_ops/code/armaments/implants.dm create mode 100644 monkestation/code/modules/assault_ops/code/armaments/medical.dm create mode 100644 monkestation/code/modules/assault_ops/code/armaments/mod_modules.dm create mode 100644 monkestation/code/modules/assault_ops/code/armaments/utility.dm create mode 100644 monkestation/code/modules/assault_ops/code/assault_op_vendor.dm create mode 100644 monkestation/code/modules/assault_ops/code/covert_modsuit.dm create mode 100644 monkestation/code/modules/assault_ops/code/goldeneye.dm create mode 100644 monkestation/code/modules/assault_ops/code/interrogator.dm create mode 100644 monkestation/code/modules/assault_ops/code/midround_event.dm create mode 100644 monkestation/code/modules/assault_ops/code/outfits.dm create mode 100644 monkestation/code/modules/assault_ops/code/pouch.dm create mode 100644 monkestation/code/modules/assault_ops/code/roundstart_event.dm create mode 100644 monkestation/code/modules/assault_ops/code/shuttle.dm create mode 100644 monkestation/code/modules/assault_ops/code/sunbeam.dm create mode 100644 monkestation/code/modules/assault_ops/code/turret.dm create mode 100644 monkestation/code/modules/assault_ops/code/turrets.dm create mode 100644 monkestation/code/modules/assault_ops/code/vending.dm create mode 100644 monkestation/code/modules/assault_ops/icons/alarm.dmi create mode 100644 monkestation/code/modules/assault_ops/icons/goldeneye.dmi create mode 100644 monkestation/code/modules/assault_ops/icons/guns/guns.dmi create mode 100644 monkestation/code/modules/assault_ops/icons/guns/guns_lefthand.dmi create mode 100644 monkestation/code/modules/assault_ops/icons/guns/guns_righthand.dmi create mode 100644 monkestation/code/modules/assault_ops/icons/guns/guns_worn.dmi create mode 100644 monkestation/code/modules/assault_ops/icons/guns/magazines.dmi create mode 100644 monkestation/code/modules/assault_ops/icons/modsuits/mod.dmi create mode 100644 monkestation/code/modules/assault_ops/icons/modsuits/wornmod.dmi create mode 100644 monkestation/code/modules/assault_ops/icons/radial.dmi create mode 100644 monkestation/code/modules/assault_ops/icons/storage.dmi create mode 100644 monkestation/code/modules/assault_ops/icons/sunbeam.dmi create mode 100644 monkestation/code/modules/assault_ops/readme.md create mode 100644 monkestation/code/modules/assault_ops/sound/assault_operatives_greet.ogg create mode 100644 monkestation/code/modules/assault_ops/sound/goldeneyealarm.ogg create mode 100644 monkestation/code/modules/assault_ops/sound/icarus_alarm.ogg create mode 100644 monkestation/code/modules/assault_ops/sound/sunbeam_fire.ogg create mode 100644 monkestation/code/modules/assault_ops/sound/sunbeam_loop.ogg create mode 100644 monkestation/code/modules/blueshift/biogenerator/clothing.dm create mode 100644 monkestation/code/modules/blueshift/biogenerator/equipment.dm create mode 100644 monkestation/code/modules/blueshift/biogenerator/resources.dm create mode 100644 monkestation/code/modules/blueshift/effects/mapping_helper.dm create mode 100644 monkestation/code/modules/blueshift/icons/plushes.dmi create mode 100644 monkestation/code/modules/blueshift/items/pizza.dm create mode 100644 monkestation/code/modules/blueshift/items/plushies.dm create mode 100644 monkestation/code/modules/blueshift/structures/lights.dm create mode 100644 monkestation/code/modules/blueshift/structures/veins.dm create mode 100644 monkestation/code/modules/get_off_my_lawn/areas.dm create mode 100644 monkestation/code/modules/get_off_my_lawn/fluff/fluff.dm create mode 100644 monkestation/code/modules/get_off_my_lawn/fluff/streetlamps.dm create mode 100644 monkestation/code/modules/get_off_my_lawn/icons/bathtub.dmi create mode 100644 monkestation/code/modules/get_off_my_lawn/icons/bed_chair.dmi create mode 100644 monkestation/code/modules/get_off_my_lawn/icons/lighting_32x64.dmi create mode 100644 monkestation/code/modules/get_off_my_lawn/icons/mail.dmi create mode 100644 monkestation/code/modules/get_off_my_lawn/icons/modern_structures.dmi create mode 100644 monkestation/code/modules/map_gen_expansions/README.md create mode 100644 monkestation/code/modules/map_gen_expansions/_basemapping.dm create mode 100644 monkestation/code/modules/map_gen_expansions/ai/behaviours/hiding.dm create mode 100644 monkestation/code/modules/map_gen_expansions/ai/idle_behaviours.dm create mode 100644 monkestation/code/modules/map_gen_expansions/ai/subtree/find_target_not_hiding.dm create mode 100644 monkestation/code/modules/map_gen_expansions/ai/subtree/hiding.dm create mode 100644 monkestation/code/modules/map_gen_expansions/ai/subtree/retaliate_target.dm create mode 100644 monkestation/code/modules/map_gen_expansions/ai/subtree/stop_hiding_if_target.dm create mode 100644 monkestation/code/modules/map_gen_expansions/areas.dm create mode 100644 monkestation/code/modules/map_gen_expansions/elements/can_hide.dm create mode 100644 monkestation/code/modules/map_gen_expansions/elements/stop_targetting_and_clear_key.dm create mode 100644 monkestation/code/modules/map_gen_expansions/forest/atmosphere.dm create mode 100644 monkestation/code/modules/map_gen_expansions/forest/generator.dm create mode 100644 monkestation/code/modules/map_gen_expansions/forest/mobs/deer.dm create mode 100644 monkestation/code/modules/map_gen_expansions/forest/mobs/megadeer.dm create mode 100644 monkestation/code/modules/map_gen_expansions/icons/floors.dmi create mode 100644 monkestation/code/modules/map_gen_expansions/icons/hud_icons.dmi create mode 100644 monkestation/code/modules/map_gen_expansions/icons/misc.dmi create mode 100644 monkestation/code/modules/map_gen_expansions/icons/mushroom_flora.dmi create mode 100644 monkestation/code/modules/map_gen_expansions/icons/mushroomtrees.dmi create mode 100644 monkestation/code/modules/map_gen_expansions/icons/newfauna_wide.dmi create mode 100644 monkestation/code/modules/map_gen_expansions/icons/plasma_extractor.dmi create mode 100644 monkestation/code/modules/map_gen_expansions/icons/turfs/floors/mushroom.dmi create mode 100644 monkestation/code/modules/map_gen_expansions/icons/turfs/floors/mushroom_blue.dmi create mode 100644 monkestation/code/modules/map_gen_expansions/icons/turfs/floors/mushroom_green.dmi create mode 100644 monkestation/code/modules/map_gen_expansions/icons/turfs/floors/plasma_forest.dmi create mode 100644 monkestation/code/modules/map_gen_expansions/icons/turfs/floors/plasma_forest_mask.dmi create mode 100644 monkestation/code/modules/map_gen_expansions/mushroom/extraction/components/pipe_layer.dm create mode 100644 monkestation/code/modules/map_gen_expansions/mushroom/extraction/effects/hud_effect.dm create mode 100644 monkestation/code/modules/map_gen_expansions/mushroom/extraction/structures/extraction_pipe.dm create mode 100644 monkestation/code/modules/map_gen_expansions/mushroom/extraction/structures/extractor/geyser.dm create mode 100644 monkestation/code/modules/map_gen_expansions/mushroom/extraction/structures/extractor/hub.dm create mode 100644 monkestation/code/modules/map_gen_expansions/mushroom/extraction/structures/extractor/main.dm create mode 100644 monkestation/code/modules/map_gen_expansions/mushroom/flora.dm create mode 100644 monkestation/code/modules/map_gen_expansions/mushroom/generator.dm create mode 100644 monkestation/code/modules/map_gen_expansions/mushroom/mobs/stillcaps.dm create mode 100644 monkestation/code/modules/map_gen_expansions/new_turfs.dm create mode 100644 monkestation/code/modules/map_gen_expansions/structures/test_spawner.dm create mode 100644 monkestation/code/modules/outdoors/sound/weather/forest_ambience.ogg create mode 100644 monkestation/code/modules/outdoors/sound/weather/rain/weather_rain_indoors.ogg create mode 100644 tgui/packages/tgui/interfaces/AntagInfoAssaultops.tsx create mode 100644 tgui/packages/tgui/interfaces/PreferencesMenu/antagonists/antagonists/assaultoperative.ts diff --git a/_maps/map_files/Blueshift/Blueshift.dmm b/_maps/map_files/Blueshift/Blueshift.dmm index c2b55ac47ec6ef..f4696465451f24 100644 --- a/_maps/map_files/Blueshift/Blueshift.dmm +++ b/_maps/map_files/Blueshift/Blueshift.dmm @@ -821,7 +821,6 @@ /area/station/commons/toilet/restrooms) "aiN" = ( /obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/fore) "aiP" = ( @@ -1811,7 +1810,6 @@ /area/station/service/chapel/office) "asw" = ( /obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -2002,6 +2000,10 @@ /obj/effect/turf_decal/trimline/green/filled/corner{ dir = 8 }, +/obj/item/botanical_lexicon, +/obj/item/botanical_lexicon, +/obj/item/botanical_lexicon, +/obj/item/botanical_lexicon, /turf/open/floor/iron/dark/corner{ dir = 1 }, @@ -2212,7 +2214,6 @@ /area/station/common/pool) "awQ" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -2699,7 +2700,6 @@ /obj/machinery/door/airlock/maintenance{ name = "Disposal Access" }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -2725,7 +2725,6 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/medical/central) "aBU" = ( @@ -4461,7 +4460,6 @@ "aTw" = ( /obj/machinery/door/airlock/maintenance_hatch, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/crew_quarters/dorms) "aTD" = ( @@ -10496,7 +10494,6 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/maintenance/aft/upper) "caC" = ( @@ -14282,7 +14279,6 @@ /area/station/service/power_station) "cHT" = ( /obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/structure/disposalpipe/segment, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -19173,10 +19169,10 @@ /obj/machinery/door/airlock/engineering{ name = "Cargo Power Station" }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/general, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/all/service/general, /turf/open/floor/iron/smooth, /area/station/cargo/power_station/upper) "dHb" = ( @@ -19252,7 +19248,6 @@ /obj/machinery/door/airlock/maintenance, /obj/effect/decal/cleanable/dirt, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/medical/central) "dIc" = ( @@ -20503,7 +20498,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/medical/central) "dTL" = ( @@ -21803,7 +21797,6 @@ "eij" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/maintenance/aft/upper) "eiq" = ( @@ -21860,7 +21853,6 @@ /area/station/engineering/supermatter/room) "eiP" = ( /obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/structure/cable, /obj/effect/mapping_helpers/airlock/unres, /turf/open/floor/plating, @@ -23114,7 +23106,7 @@ /obj/effect/turf_decal/siding/thinplating/light, /obj/machinery/door/window/left/directional/south{ name = "Monkey Pen"; - req_access = list("virology") + req_access = list("pathology") }, /turf/open/floor/grass, /area/station/medical/virology/isolation) @@ -24224,7 +24216,6 @@ "eFC" = ( /obj/machinery/door/airlock/maintenance_hatch, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/eva) "eFF" = ( @@ -28988,7 +28979,6 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/barricade/wooden/crude, -/obj/effect/mapping_helpers/airlock/access/all/engineering/engine_equipment, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) "fAX" = ( @@ -29627,6 +29617,13 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/smooth, /area/station/cargo/miningdock) +"fIR" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Engineering Maintenance" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) "fIT" = ( /obj/structure/decorative/shelf, /obj/item/computer_disk/maintenance/theme{ @@ -30956,7 +30953,6 @@ /area/station/security/warden) "fWA" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/structure/cable, /obj/structure/disposalpipe/segment, /obj/machinery/duct, @@ -32294,7 +32290,6 @@ /area/station/engineering/atmos/test_chambers) "gkY" = ( /obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/station/maintenance/central) @@ -34970,7 +34965,6 @@ /obj/machinery/door/airlock/security/old{ name = "ERT Response Centre" }, -/obj/effect/mapping_helpers/airlock/access/all/admin/general, /turf/open/floor/iron/smooth, /area/station/maintenance/starboard/fore) "gLt" = ( @@ -37230,7 +37224,6 @@ "hiS" = ( /obj/machinery/door/airlock/maintenance_hatch, /obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) @@ -37828,7 +37821,6 @@ /turf/open/floor/engine, /area/station/engineering/supermatter/room) "hoQ" = ( -/obj/effect/mapping_helpers/airlock/access/all/engineering, /obj/machinery/door/airlock/engineering{ name = "AI Sat Power Station" }, @@ -39320,7 +39312,6 @@ /area/station/service/bar/atrium) "hEI" = ( /obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/central) "hEL" = ( @@ -43278,7 +43269,6 @@ "isb" = ( /obj/effect/mapping_helpers/burnt_floor, /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/medical/central) "isg" = ( @@ -43746,7 +43736,6 @@ "ixp" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/wood, /area/station/service/abandoned_gambling_den) "ixq" = ( @@ -43814,7 +43803,6 @@ /obj/effect/decal/cleanable/blood/tracks{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/plating, /area/station/maintenance/cult_chapel_maint) "ixJ" = ( @@ -44966,7 +44954,6 @@ "iKJ" = ( /obj/machinery/door/airlock/maintenance_hatch, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/maintenance/law) "iKO" = ( @@ -45938,7 +45925,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/fore) "iWe" = ( @@ -46219,7 +46205,6 @@ /area/station/cargo/warehouse) "iYE" = ( /obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/maintenance/central) "iYJ" = ( @@ -47352,7 +47337,6 @@ /area/station/medical/patients_rooms) "jkk" = ( /obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -48305,7 +48289,6 @@ "jtm" = ( /obj/structure/cable, /obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/maintenance/law) "jtq" = ( @@ -48391,7 +48374,6 @@ name = "Council of Practical Gags" }, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/service/theatre, /turf/open/floor/noslip, /area/station/maintenance/gag_room) "jul" = ( @@ -51607,7 +51589,6 @@ /area/station/service/hydroponics) "jYH" = ( /obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -53061,7 +53042,6 @@ /area/station/hallway/secondary/command) "kml" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/mapping_helpers/airlock/unres, @@ -54319,7 +54299,6 @@ /obj/machinery/door/airlock/engineering{ name = "Cargo Power Station" }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/general, /turf/open/floor/plating, /area/station/cargo/power_station/upper) "kye" = ( @@ -55791,7 +55770,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/medical/central) "kMY" = ( @@ -56852,6 +56830,11 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/dark, /area/station/ai_monitored/aisat/exterior) +"lab" = ( +/obj/machinery/door/airlock/maintenance_hatch, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/department/chapel) "lad" = ( /obj/structure/table/wood, /obj/item/crowbar/red, @@ -57470,7 +57453,6 @@ /turf/open/floor/wood, /area/station/command/meeting_room/council) "lfe" = ( -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/machinery/door/airlock/maintenance, /obj/structure/cable, /obj/effect/mapping_helpers/airlock/unres{ @@ -59688,12 +59670,10 @@ dir = 4 }, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/iron, /area/station/maintenance/department/medical/central) "lCI" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -59791,7 +59771,6 @@ dir = 4 }, /obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/fore) "lDr" = ( @@ -59954,7 +59933,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering, /obj/machinery/door/airlock/engineering{ name = "AI Sat Power Station" }, @@ -60145,7 +60123,6 @@ "lHh" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/engineering/engine_aft_port) "lHi" = ( @@ -60742,7 +60719,6 @@ /obj/machinery/door/airlock/engineering{ name = "Cargo Power Station" }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/general, /turf/open/floor/iron, /area/station/cargo/power_station/upper) "lNi" = ( @@ -62658,7 +62634,6 @@ /area/station/hallway/primary/central) "mfR" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/effect/mapping_helpers/airlock/unres, /turf/open/floor/plating, /area/station/maintenance/department/engineering/engine_aft_port) @@ -63378,7 +63353,6 @@ /obj/machinery/door/airlock/maintenance{ name = "Disposal Access" }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/maintenance/disposal) "moy" = ( @@ -63813,7 +63787,6 @@ /area/station/security/brig) "msS" = ( /obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -66075,7 +66048,6 @@ /area/station/maintenance/department/eva) "mQp" = ( /obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/crew_quarters/dorms) "mQt" = ( @@ -66465,7 +66437,6 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/effect/mapping_helpers/burnt_floor, /turf/open/floor/plating, /area/station/maintenance/fore/upper) @@ -67347,7 +67318,6 @@ "ndC" = ( /obj/machinery/door/airlock/maintenance_hatch, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/maintenance/pool_maintenance) "ndG" = ( @@ -67894,7 +67864,6 @@ /area/station/service/kitchen/diner) "niJ" = ( /obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, @@ -69241,7 +69210,6 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/wood, /area/station/maintenance/abandon_office) @@ -69731,7 +69699,6 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/engineering/engine_equipment, /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) @@ -71351,7 +71318,6 @@ dir = 4 }, /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -71520,7 +71486,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/sign/poster/contraband/random/directional/east, /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/medical/central) "nVj" = ( @@ -71859,7 +71824,6 @@ "nYQ" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) "nYR" = ( @@ -72621,7 +72585,6 @@ /area/station/service/power_station) "ogj" = ( /obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/eva) "ogq" = ( @@ -73708,7 +73671,6 @@ "opb" = ( /obj/machinery/door/airlock/maintenance_hatch, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/fore) "opt" = ( @@ -73796,7 +73758,6 @@ /area/station/construction/mining/aux_base) "oqr" = ( /obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/machinery/duct, /turf/open/floor/plating, /area/station/maintenance/port/aft) @@ -74290,7 +74251,6 @@ /area/station/hallway/secondary/command) "ovI" = ( /obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/chapel) "ovO" = ( @@ -78177,7 +78137,6 @@ "piD" = ( /obj/machinery/door/airlock/maintenance_hatch, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/upper) "piL" = ( @@ -79708,7 +79667,6 @@ /area/station/engineering/break_room) "pxU" = ( /obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/aft) "pxX" = ( @@ -81450,7 +81408,6 @@ "pPR" = ( /obj/machinery/door/airlock/maintenance_hatch, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/maintenance/library/lower) "pQs" = ( @@ -81656,7 +81613,6 @@ /area/station/maintenance/department/eva) "pSI" = ( /obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/machinery/duct, /turf/open/floor/plating, /area/station/maintenance/port/fore) @@ -81895,7 +81851,6 @@ dir = 1 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/engineering/engine_equipment, /obj/effect/mapping_helpers/airlock/unres, /turf/open/floor/plating, /area/station/maintenance/port/aft) @@ -81958,7 +81913,6 @@ "pWa" = ( /obj/structure/cable, /obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/maintenance/library/upper) "pWi" = ( @@ -82061,7 +82015,6 @@ "pWF" = ( /obj/machinery/door/airlock/maintenance_hatch, /obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/port/fore) @@ -82728,7 +82681,6 @@ /area/station/engineering/atmos/test_chambers) "qdF" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/structure/disposalpipe/segment, /obj/structure/cable, /turf/open/floor/plating, @@ -82770,7 +82722,6 @@ /area/station/maintenance/central) "qev" = ( /obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/structure/cable, /obj/structure/disposalpipe/segment{ dir = 4 @@ -84576,6 +84527,10 @@ name = "hallway camera" }, /obj/machinery/feed_machine, +/obj/item/chicken_book, +/obj/item/chicken_book, +/obj/item/chicken_book, +/obj/item/chicken_book, /turf/open/floor/iron/dark/side{ dir = 1 }, @@ -84954,7 +84909,6 @@ "qzz" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/machinery/door/airlock/maintenance{ name = "Abandoned Clown Theater" }, @@ -86732,7 +86686,6 @@ /obj/machinery/door/airlock/engineering{ name = "Cargo Power Station" }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/general, /turf/open/floor/plating, /area/station/cargo/power_station/upper) "qRz" = ( @@ -86972,7 +86925,6 @@ dir = 4 }, /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/effect/mapping_helpers/airlock/abandoned, /obj/structure/disposalpipe/segment{ dir = 4 @@ -88687,7 +88639,6 @@ "rkc" = ( /obj/machinery/door/airlock/maintenance_hatch, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/central) "rkh" = ( @@ -92023,7 +91974,6 @@ /obj/machinery/door/airlock/maintenance_hatch, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/aft/upper) @@ -92048,7 +91998,6 @@ "rRC" = ( /obj/machinery/door/airlock/maintenance_hatch, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/machinery/duct, /turf/open/floor/plating, /area/station/maintenance/department/eva) @@ -95179,7 +95128,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/wood, /area/station/maintenance/abandon_psych) "syf" = ( @@ -101181,7 +101129,6 @@ "tEK" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/fore) "tEN" = ( @@ -102011,7 +101958,6 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/engineering/engine_equipment, /turf/open/floor/plating, /area/station/maintenance/aft/upper) "tNg" = ( @@ -103804,7 +103750,6 @@ /area/station/security/warden) "ueR" = ( /obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/department/crew_quarters/bar) @@ -106617,7 +106562,6 @@ /area/station/science/circuits) "uFA" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) @@ -107243,7 +107187,6 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/upper) "uMy" = ( @@ -108227,7 +108170,6 @@ /area/station/maintenance/starboard/fore) "uWl" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/effect/mapping_helpers/airlock/abandoned, /obj/structure/disposalpipe/segment{ dir = 4 @@ -108411,7 +108353,6 @@ "uYe" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/fore) "uYj" = ( @@ -108499,6 +108440,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/all/science/research, /turf/open/floor/iron, /area/station/science/auxlab/firing_range) "uYQ" = ( @@ -109834,7 +109776,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/crew_quarters/dorms) "vms" = ( @@ -109876,7 +109817,6 @@ /area/station/maintenance/disposal) "vmJ" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/effect/mapping_helpers/airlock/unres{ dir = 4 }, @@ -109962,7 +109902,6 @@ /area/station/maintenance/aft/upper) "vnS" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/effect/mapping_helpers/airlock/unres, /turf/open/floor/plating, /area/station/maintenance/port/aft) @@ -110496,7 +110435,6 @@ "vti" = ( /obj/machinery/door/airlock/maintenance_hatch, /obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, @@ -110686,7 +110624,6 @@ "vuz" = ( /obj/structure/cable, /obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/plating, /area/station/maintenance/aft/upper) "vuE" = ( @@ -111350,7 +111287,6 @@ "vzz" = ( /obj/machinery/door/airlock/maintenance_hatch, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -111942,7 +111878,6 @@ "vGn" = ( /obj/machinery/door/airlock/maintenance_hatch, /obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) "vGu" = ( @@ -112125,7 +112060,6 @@ /obj/machinery/door/airlock/maintenance_hatch{ name = "Maintenance Hatch" }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/maintenance/central) "vHY" = ( @@ -115667,7 +115601,6 @@ "wpT" = ( /obj/structure/cable, /obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/plating, /area/station/maintenance/pool_maintenance) "wpX" = ( @@ -115796,7 +115729,6 @@ /area/station/security/prison/visit) "wrr" = ( /obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/effect/mapping_helpers/airlock/abandoned, /turf/open/floor/plating, /area/station/maintenance/central) @@ -116067,7 +115999,6 @@ /obj/machinery/door/airlock/engineering{ name = "Construction Area" }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment, /obj/structure/cable, @@ -116873,7 +116804,6 @@ "wBq" = ( /obj/machinery/door/airlock/maintenance_hatch, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/machinery/duct, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -118279,7 +118209,6 @@ "wPg" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) @@ -118569,7 +118498,6 @@ /area/station/security/office) "wRU" = ( /obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/maintenance/library/upper) "wRZ" = ( @@ -118795,7 +118723,6 @@ /area/station/hallway/secondary/command) "wUn" = ( /obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) "wUs" = ( @@ -120904,7 +120831,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/structure/cable, /turf/open/floor/plating, /area/station/service/abandoned_gambling_den) @@ -122064,7 +121990,6 @@ /area/station/hallway/primary/central) "xCZ" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/iron/grimy, /area/station/maintenance/starboard/fore) "xDb" = ( @@ -123849,7 +123774,6 @@ /area/station/common/wrestling/lobby) "xWm" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/effect/mapping_helpers/airlock/unres, /turf/open/floor/iron, /area/station/maintenance/department/engineering/engine_aft_port) @@ -124506,7 +124430,6 @@ /area/station/ai_monitored/turret_protected/aisat_interior) "ybS" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/maintenance/central) "ybT" = ( @@ -147661,7 +147584,7 @@ fWT fWT glt pOJ -sVC +fIR vTs buC jpx @@ -148655,7 +148578,7 @@ qZN tLL tLL tLL -vrE +lab tLL tLL tLL @@ -155594,7 +155517,7 @@ hVM mid hlR rdL -vrE +lab tLL bRE knf diff --git a/_maps/map_files/Ouroboros/Ouroboros.dmm b/_maps/map_files/Ouroboros/Ouroboros.dmm new file mode 100644 index 00000000000000..849f18abe0c65d --- /dev/null +++ b/_maps/map_files/Ouroboros/Ouroboros.dmm @@ -0,0 +1,212916 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aal" = ( +/obj/effect/turf_decal/lunar_sand/plating, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/railing, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/science/cytology) +"aau" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"aaw" = ( +/obj/structure/rack, +/obj/item/screwdriver, +/obj/item/hand_labeler, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"aaB" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/structure/chemical_manufacturer, +/obj/item/integrated_circuit/chemical, +/obj/item/multitool, +/obj/item/stock_parts/cell/high, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"aaL" = ( +/obj/effect/turf_decal/trimline/green/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/mid_joiner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/service/hydroponics) +"aaX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/spawner/random/maintenance, +/obj/structure/rack, +/obj/item/clothing/head/utility/welding, +/obj/item/assembly/voice, +/obj/item/weldingtool, +/obj/machinery/computer/pod/old/mass_driver_controller/trash{ + pixel_y = -26; + pixel_x = 4 + }, +/turf/open/floor/iron, +/area/station/maintenance/disposal) +"abb" = ( +/obj/machinery/computer/station_alert{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/carpet/black, +/area/station/command/heads_quarters/ce) +"abf" = ( +/obj/effect/spawner/random/trash/food_packaging, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/maintenance/starboard/fore) +"abk" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/openspace, +/area/station/engineering/main) +"abl" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue/half{ + dir = 8 + }, +/obj/effect/landmark/start/security_officer, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/security/office) +"abx" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/cargo/lobby) +"abT" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/security/checkpoint/engineering) +"abX" = ( +/obj/structure/bed, +/obj/effect/landmark/start/prisoner, +/obj/item/bedsheet/brown, +/obj/machinery/button/curtain{ + id = "Cell1Privacy"; + pixel_x = 24; + pixel_y = 24 + }, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"abY" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/solars/port/aft) +"ack" = ( +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/diagonal, +/area/station/commons/fitness/recreation) +"acm" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/stool/bar/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/checker, +/area/station/maintenance/abandon_diner) +"acs" = ( +/obj/structure/chair/office, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron, +/area/station/security/checkpoint/engineering) +"acy" = ( +/obj/machinery/camera/directional/south{ + c_tag = "Central Primary Hallway - Library Lounge" + }, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/hallway/primary/central) +"acJ" = ( +/obj/structure/bed/double, +/obj/item/bedsheet/qm/double, +/turf/open/floor/carpet/black, +/area/station/command/heads_quarters/qm) +"acL" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "mining" + }, +/turf/open/floor/plating, +/area/station/cargo/office) +"adr" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"adA" = ( +/obj/effect/mapping_helpers/airlock/access/any/command/maintenance, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch" + }, +/turf/open/floor/plating, +/area/station/maintenance/central) +"adH" = ( +/obj/structure/girder, +/obj/effect/spawner/structure/electrified_grille, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"adJ" = ( +/obj/machinery/status_display/ai/directional/west, +/turf/closed/wall/r_wall, +/area/station/command/heads_quarters/captain) +"adM" = ( +/obj/machinery/door/airlock/silver{ + name = "Kitchen Counter" + }, +/obj/effect/mapping_helpers/airlock/access/any/service/kitchen, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "kitchen_privacy"; + name = "Kitchen Privacy Shutters" + }, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"adO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/green/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/service/hydroponics) +"adW" = ( +/obj/effect/turf_decal/tile/red/real_red{ + dir = 8 + }, +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/cafeteria, +/area/station/hallway/secondary/exit/escape_pod) +"aej" = ( +/obj/machinery/power/turbine/turbine_outlet{ + dir = 8 + }, +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/maintenance/disposal/incinerator) +"aeo" = ( +/obj/machinery/camera/directional/east{ + c_tag = "Auxillary Base - Equipment"; + network = list("ss13","auxbase") + }, +/obj/effect/landmark/atmospheric_sanity/ignore_area, +/turf/open/floor/iron, +/area/station/construction/mining/aux_base) +"aet" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters{ + id = "aux_base_shutters"; + name = "Auxiliary Base Shutters"; + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/button/door/directional/north{ + id = "aux_base_shutters"; + name = "Public Shutters Control"; + req_access = list("aux_base") + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/cargo/lobby) +"aex" = ( +/turf/closed/wall, +/area/station/science/genetics) +"aez" = ( +/obj/structure/closet/wardrobe/miner, +/obj/item/storage/belt/mining/alt, +/obj/item/storage/backpack/satchel/explorer{ + pixel_y = -6 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"aeE" = ( +/obj/machinery/requests_console/auto_name/directional/south, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/mapping_helpers/requests_console/information, +/obj/effect/mapping_helpers/requests_console/announcement, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/pdapainter/engineering, +/obj/machinery/light/warm/directional/south, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/command/heads_quarters/ce) +"aeH" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/engineering/atmos/hfr_room) +"aeM" = ( +/obj/structure/tank_dispenser/oxygen, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/digital_clock/directional/west, +/obj/machinery/camera/directional/west{ + c_tag = "Security - EVA Equipment" + }, +/turf/open/floor/engine, +/area/station/security/eva) +"aeQ" = ( +/obj/effect/turf_decal/tile/dark_red{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/science/robotics/mechbay) +"aeW" = ( +/obj/structure/chair/sofa/left/brown, +/obj/effect/mapping_helpers/broken_floor, +/obj/item/ammo_casing/c45{ + dir = 10; + pixel_x = 6; + pixel_y = -3 + }, +/turf/open/floor/wood, +/area/station/maintenance/port/fore) +"aeX" = ( +/obj/effect/turf_decal/tile/green/opposingcorners, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/hallway/primary/central/fore) +"afh" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/bronze, +/turf/open/openspace, +/area/station/engineering/main) +"afn" = ( +/turf/open/floor/engine, +/area/station/science/ordnance/testlab) +"aft" = ( +/obj/structure/cable, +/obj/machinery/power/smes/super/full, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/ai) +"afy" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/two, +/obj/item/weldingtool, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"afA" = ( +/obj/structure/industrial_lift/public, +/obj/effect/landmark/lift_id{ + specific_lift_id = "departures_lift" + }, +/turf/open/floor/plating/elevatorshaft, +/area/station/hallway/primary/starboard) +"afW" = ( +/obj/effect/turf_decal/lunar_sand, +/obj/structure/table, +/obj/item/book/manual/wiki/cytology{ + pixel_y = 6; + pixel_x = 3 + }, +/obj/item/book/manual/wiki/plumbing, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/science/cytology) +"ags" = ( +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"agy" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad" + }, +/obj/effect/turf_decal/stripes/full, +/turf/open/floor/plating, +/area/station/cargo/storage) +"agI" = ( +/obj/structure/hedge, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/brig/entrance) +"agJ" = ( +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"agM" = ( +/obj/structure/marker_beacon/indigo, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"agQ" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"agW" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"agX" = ( +/obj/structure/disposalpipe/sorting/mail{ + dir = 8 + }, +/obj/effect/mapping_helpers/mail_sorting/service/kitchen, +/obj/effect/mapping_helpers/mail_sorting/service/hydroponics, +/obj/effect/mapping_helpers/mail_sorting/service/library, +/obj/effect/mapping_helpers/mail_sorting/service/dormitories, +/obj/effect/mapping_helpers/mail_sorting/science/experimentor_lab, +/obj/effect/mapping_helpers/mail_sorting/science/genetics, +/obj/effect/mapping_helpers/mail_sorting/science/ordnance, +/obj/effect/mapping_helpers/mail_sorting/science/rd_office, +/obj/effect/mapping_helpers/mail_sorting/science/research, +/obj/effect/mapping_helpers/mail_sorting/science/xenobiology, +/obj/effect/mapping_helpers/mail_sorting/science/robotics, +/obj/effect/mapping_helpers/mail_sorting/supply/cargo_bay, +/obj/effect/mapping_helpers/mail_sorting/security/general, +/obj/effect/mapping_helpers/mail_sorting/security/detectives_office, +/obj/effect/mapping_helpers/mail_sorting/security/hos_office, +/obj/effect/mapping_helpers/mail_sorting/engineering/general, +/obj/effect/mapping_helpers/mail_sorting/engineering/ce_office, +/obj/effect/mapping_helpers/mail_sorting/engineering/atmospherics, +/obj/effect/mapping_helpers/mail_sorting/service/law_office, +/obj/effect/mapping_helpers/mail_sorting/service/hop_office, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"ahd" = ( +/obj/structure/stairs/west, +/turf/open/floor/plating, +/area/station/service/library/lounge) +"ahf" = ( +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 8 + }, +/obj/structure/marker_beacon/burgundy, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/gateway) +"ahj" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/half, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_half, +/area/station/security/interrogation) +"ahn" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 1 + }, +/obj/machinery/vending/assist, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark, +/area/station/commons/storage/primary) +"ahq" = ( +/obj/effect/turf_decal/caution, +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/disposal/incinerator) +"ahA" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/emergency, +/obj/effect/spawner/random/maintenance/two, +/obj/effect/spawner/random/trash/grime, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"ahB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/diagonal, +/area/station/common/spa) +"ahO" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"aig" = ( +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"aii" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/dark_red/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/checker, +/area/station/maintenance/abandon_diner) +"aim" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/newscaster/directional/south, +/obj/effect/spawner/random/vending/snackvend, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/recreation) +"air" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple/half, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white/smooth_edge, +/area/station/command/heads_quarters/rd) +"aiB" = ( +/obj/structure/bookcase/random/adult, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/wood, +/area/station/service/library/lounge) +"aiH" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/corral_corner{ + mapping_id = "2" + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"aiI" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/mapping_helpers/mail_sorting/service/law_office, +/obj/structure/disposalpipe/sorting/mail{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/tile, +/area/station/service/lawoffice) +"aiS" = ( +/obj/structure/chair/sofa/right/brown, +/turf/open/floor/wood, +/area/station/maintenance/port/fore) +"aiT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/general/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/meter, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/iron/white/side{ + dir = 8 + }, +/area/station/science/ordnance) +"aiW" = ( +/turf/open/openspace, +/area/station/engineering/lobby) +"ajl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm/directional/east{ + pixel_y = 8 + }, +/obj/structure/closet{ + name = "brig officer's locker" + }, +/obj/machinery/light_switch/directional/east{ + pixel_y = -8 + }, +/obj/item/storage/belt/security/full, +/turf/open/floor/engine, +/area/station/security/corrections_officer) +"aju" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/item/assembly/prox_sensor{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/assembly/signaler{ + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"ajv" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners{ + dir = 1 + }, +/obj/structure/chair/stool/bar/directional/east, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/checker, +/area/station/maintenance/abandon_diner) +"ajw" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"ajB" = ( +/obj/structure/table/glass, +/obj/item/crowbar, +/obj/item/radio/intercom/directional/west, +/obj/machinery/camera/directional/west{ + c_tag = "Engineering - Lower MiniSat Access"; + network = list("ss13","engine") + }, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/dark, +/area/station/engineering/transit_tube) +"ajK" = ( +/obj/machinery/computer/records/medical{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/paramedic) +"ajM" = ( +/obj/machinery/computer/security{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/obj/machinery/light/cold/directional/south, +/obj/machinery/digital_clock/directional/south, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"aka" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/item/flashlight/flare/candle{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/item/flashlight/flare/candle{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/service/chapel) +"akd" = ( +/obj/machinery/computer/atmos_control/carbon_tank, +/obj/effect/turf_decal/box, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"aki" = ( +/obj/structure/table, +/obj/item/wrench, +/obj/item/screwdriver{ + pixel_y = 1 + }, +/obj/effect/spawner/random/maintenance, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/station/science/research/abandoned) +"aks" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"akt" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/aisat/equipment) +"akT" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/storage/fancy/donut_box{ + pixel_y = 6 + }, +/obj/item/radio/intercom/directional/west, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/security/brig/entrance) +"alg" = ( +/obj/structure/cable, +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"alk" = ( +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"alp" = ( +/obj/effect/spawner/random/maintenance/three, +/obj/effect/spawner/random/structure/closet_maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"alt" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"alZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/security/checkpoint/engineering) +"ama" = ( +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 1 + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4 + }, +/obj/effect/mapping_helpers/mail_sorting/service/hydroponics, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/service) +"amu" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/vending/wardrobe/gene_wardrobe, +/turf/open/floor/iron/white/side, +/area/station/science/genetics) +"amw" = ( +/obj/structure/table/wood, +/obj/item/kirbyplants/organic/plant11{ + pixel_y = 19; + pixel_x = -6 + }, +/obj/item/kirbyplants/organic/plant15{ + pixel_x = 10; + pixel_y = 14 + }, +/obj/item/kirbyplants/organic/plant23{ + pixel_y = 9 + }, +/obj/machinery/light/warm/directional/west, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/wood/tile, +/area/station/medical/psychology) +"and" = ( +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"ank" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/simple/violet/visible{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/meter, +/obj/machinery/light/warm/directional/south, +/turf/open/openspace, +/area/station/engineering/atmos/upper) +"ano" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"anp" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"ans" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/burgundy, +/turf/open/space/basic, +/area/space/nearstation) +"anx" = ( +/turf/closed/wall, +/area/station/cargo/miningoffice) +"anE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"anI" = ( +/obj/structure/trash_pile, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"anP" = ( +/obj/structure/sign/departments/aisat/directional/south, +/obj/structure/sign/warning/secure_area/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/tcommsat/computer) +"anQ" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"anV" = ( +/obj/structure/bed/double, +/obj/effect/spawner/random/bedsheet/double, +/turf/open/floor/wood, +/area/station/commons/dorms/room3) +"anY" = ( +/obj/machinery/smartfridge/chemistry/preloaded, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "pharmacy_shutters_2"; + name = "Chemlab Shutters"; + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/pharmacy) +"aoe" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"aof" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Canteen Lounge" + }, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/lounge) +"aok" = ( +/obj/effect/turf_decal/lunar_sand, +/obj/effect/turf_decal/lunar_sand/plating, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"aoo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/camera/directional/north{ + c_tag = "Bridge Access - Starboard"; + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"aoG" = ( +/turf/closed/wall/r_wall, +/area/station/command/heads_quarters/nt_rep) +"aoH" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/dark/end{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/small, +/area/station/hallway/primary/starboard) +"aoK" = ( +/obj/structure/railing{ + dir = 10 + }, +/turf/open/openspace, +/area/station/service/kitchen/diner) +"aoY" = ( +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/engineering/atmos/hfr_room) +"apd" = ( +/obj/machinery/corral_corner{ + mapping_id = "5" + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"apz" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/escape) +"apA" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/landmark/start/shaft_miner, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"apL" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "vac-office"; + name = "Privacy Shutters" + }, +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/commons/vacant_room/office) +"apP" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"apT" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/dark/end{ + dir = 1 + }, +/obj/machinery/status_display/ai/directional/south, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/command) +"aqd" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder{ + pixel_y = 6 + }, +/obj/effect/turf_decal/box/white/corners{ + dir = 4 + }, +/obj/machinery/light/cold/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/hydroponics) +"aqt" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 9 + }, +/obj/machinery/meter, +/turf/open/floor/iron, +/area/station/maintenance/disposal/incinerator) +"aqE" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/command) +"aqM" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/dark_blue, +/obj/machinery/atm/directional/east, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/hallway/secondary/command) +"are" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/shutters/window{ + id = "EVAaccess"; + name = "External Operations Shutter Access" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/command/storage/eva) +"arf" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 10 + }, +/turf/open/space/basic, +/area/space) +"ark" = ( +/turf/closed/wall/r_wall, +/area/station/security/eva) +"arz" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/maintenance/port/aft) +"arK" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/openspace, +/area/station/hallway/primary/central) +"arU" = ( +/obj/structure/hedge, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/primary/central) +"arV" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced/spawner/directional/west, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/storage) +"arW" = ( +/obj/structure/cable/layer1, +/obj/structure/cable/layer3, +/turf/open/floor/engine/hull, +/area/station/solars/aisat) +"arZ" = ( +/obj/effect/turf_decal/tile/green/opposingcorners, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/checker{ + dir = 1 + }, +/area/station/hallway/primary/central/fore) +"asc" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/evidence, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/light/small/blacklight/directional/east, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/security/evidence) +"asp" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"asr" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/light/warm/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/engineering/atmos/hfr_room) +"asz" = ( +/obj/docking_port/stationary{ + dwidth = 1; + height = 13; + name = "arrivals"; + shuttle_id = "arrival_stationary"; + width = 5; + roundstart_template = /datum/map_template/shuttle/arrival/nova; + dir = 2 + }, +/turf/open/space/openspace, +/area/space/nearstation) +"asC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/security/office) +"asH" = ( +/obj/item/poster/random_contraband, +/obj/effect/spawner/random/maintenance, +/obj/structure/table, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"asJ" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/closed/wall, +/area/station/medical/paramedic) +"asP" = ( +/obj/machinery/computer/atmos_control/plasma_tank, +/obj/effect/turf_decal/box, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"atb" = ( +/obj/effect/turf_decal/tile/red/real_red{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/exit/departure_lounge) +"atl" = ( +/obj/structure/industrial_lift, +/obj/machinery/elevator_control_panel/directional/south{ + pixel_x = -6; + linked_elevator_id = "cargo_lobbylift"; + preset_destination_names = list("2"="Lower Deck","3"="Upper Deck"); + req_access = list("cargo") + }, +/turf/open/floor/plating, +/area/station/cargo/storage) +"atn" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, +/turf/closed/wall/r_wall, +/area/station/maintenance/disposal/incinerator) +"atp" = ( +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 8 + }, +/turf/open/floor/wood/tile, +/area/station/commons/lounge) +"atJ" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"atL" = ( +/obj/item/clothing/under/color/blue, +/obj/item/clothing/ears/earmuffs, +/obj/structure/closet/lasertag/blue, +/obj/item/clothing/under/color/blue, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/obj/structure/sign/poster/official/terragov/directional/east, +/turf/open/floor/iron/dark, +/area/station/common/laser_tag) +"atN" = ( +/obj/structure/hedge, +/obj/structure/window/fulltile, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/fitness/recreation) +"atT" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/light/warm/directional/east, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/recharge_station, +/obj/effect/turf_decal/box, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"auf" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"auq" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/science/explab) +"aur" = ( +/obj/machinery/airalarm/directional/east, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/common/wrestling/arena) +"auu" = ( +/obj/effect/turf_decal/stripes/blue/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/blue/line{ + dir = 4 + }, +/obj/machinery/light/blacklight/directional/west, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull, +/area/space/nearstation) +"auy" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"auL" = ( +/obj/machinery/firealarm/directional/south, +/turf/open/floor/carpet/green, +/area/station/service/library/lounge) +"auX" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/service/janitor) +"avj" = ( +/obj/structure/chair/office/light, +/obj/effect/landmark/start/scientist, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/research) +"avp" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/engineering/atmos/hfr_room) +"avq" = ( +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"avs" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/command/meeting_room/council) +"avA" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"avD" = ( +/obj/effect/turf_decal/siding/dark_blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/holding_cell) +"avH" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start/geneticist, +/turf/open/floor/glass/reinforced, +/area/station/science/genetics) +"avJ" = ( +/obj/structure/sign/painting/library{ + pixel_x = 32 + }, +/obj/machinery/light/warm/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/wood, +/area/station/service/library/lounge) +"avY" = ( +/obj/structure/table/reinforced, +/obj/item/radio{ + pixel_x = -6; + pixel_y = 6 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/office) +"awl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/status_display/ai/directional/south, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) +"awr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/eighties, +/area/station/common/arcade) +"awv" = ( +/obj/structure/cable, +/obj/machinery/power/terminal, +/obj/machinery/flasher/directional/south{ + id = "AI"; + pixel_x = 22 + }, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/ai) +"awy" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"awz" = ( +/obj/machinery/camera/directional/east{ + c_tag = "Holodeck - Upper Starboard" + }, +/turf/open/openspace, +/area/station/commons/fitness/recreation) +"awQ" = ( +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"awS" = ( +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/box/blue, +/obj/machinery/fishing_portal_generator, +/turf/open/floor/plastic, +/area/station/common/carpshop) +"axf" = ( +/obj/item/kirbyplants/synthetic/plant29, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/holding_cell) +"axk" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/eva) +"axp" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/blue/line{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/range) +"axq" = ( +/obj/machinery/duct, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/engineering/lobby) +"axE" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/digital_clock/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/engine, +/area/station/security/lockers) +"axG" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/engine, +/area/station/science/ordnance/testlab) +"axJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain) +"axR" = ( +/obj/effect/turf_decal/tile/dark_blue/half{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/security/brig/entrance) +"axX" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/openspace, +/area/station/maintenance/port/aft) +"ayc" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/ladder, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/solars/port/fore) +"aye" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/space/openspace, +/area/space/nearstation) +"ayi" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/mix_output{ + dir = 4 + }, +/turf/open/floor/engine/vacuum, +/area/station/engineering/atmos/upper) +"ayx" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners{ + dir = 1 + }, +/obj/structure/chair/stool/bar/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/checker, +/area/station/maintenance/abandon_diner) +"ayJ" = ( +/obj/effect/turf_decal/lunar_sand/plating, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"azp" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "Atmospherics Blast Door" + }, +/turf/open/floor/plating, +/area/station/engineering/atmos/hfr_room) +"azu" = ( +/obj/machinery/computer/records/security{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green/half/contrasted, +/turf/open/floor/iron, +/area/station/security/checkpoint/service) +"azG" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"azH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/machinery/light/warm/directional/north, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"azJ" = ( +/obj/machinery/light/small/directional/east, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/maintenance/starboard/lesser) +"azK" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"azL" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/structure/chair/stool/bar/directional/north, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"azO" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"azS" = ( +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"azV" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/catwalk_floor/iron, +/area/station/security/checkpoint/medical) +"azZ" = ( +/obj/machinery/airalarm/directional/south, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit) +"aAj" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/primary/central/aft) +"aAk" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/security/checkpoint/engineering) +"aAm" = ( +/turf/closed/wall, +/area/station/service/barber) +"aAF" = ( +/obj/structure/hedge, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/primary/starboard) +"aAK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/science/robotics/mechbay) +"aAM" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/bronze, +/turf/open/space/basic, +/area/space/nearstation) +"aAP" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/duct, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"aAR" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/structure/sign/warning/cold_temp/directional/north, +/obj/machinery/airalarm/directional/east, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{ + dir = 8 + }, +/obj/item/clipboard{ + pixel_y = 5; + pixel_x = 3 + }, +/turf/open/floor/iron/dark, +/area/station/science/server) +"aBf" = ( +/obj/effect/turf_decal/box/corners, +/turf/open/floor/engine, +/area/station/engineering/atmos/hfr_room) +"aBj" = ( +/obj/machinery/vending/medical, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"aBk" = ( +/turf/closed/wall/r_wall, +/area/station/command/gateway) +"aBr" = ( +/obj/effect/spawner/random/vending/snackvend, +/turf/open/floor/iron/dark, +/area/station/medical/break_room) +"aBx" = ( +/obj/effect/turf_decal/tile/dark_red/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark_red{ + dir = 8 + }, +/obj/machinery/recharger, +/obj/machinery/airalarm/directional/east, +/obj/machinery/light/no_nightlight/directional/east, +/turf/open/floor/iron/dark, +/area/station/common/laser_tag) +"aBA" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/obj/structure/window/spawner/directional/west, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/library/lounge) +"aBH" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/starboard/lesser) +"aBI" = ( +/obj/structure/closet/cabinet, +/obj/item/circuitboard/machine/dish_drive, +/obj/item/etherealballdeployer, +/obj/item/roulette_wheel_beacon, +/obj/effect/turf_decal/siding/wood/end{ + dir = 1 + }, +/turf/open/floor/wood/tile, +/area/station/maintenance/port/central) +"aBM" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"aBP" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/service/hydroponics/upper) +"aBX" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/vending/assist, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) +"aCd" = ( +/turf/closed/wall, +/area/station/asteroid) +"aCe" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/obj/machinery/recharge_station, +/turf/open/floor/engine, +/area/station/security/eva) +"aCf" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Genetics Lab Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/genetics, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/science/genetics) +"aCi" = ( +/obj/machinery/door/airlock/hatch{ + name = "Maintenance Hatch" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/engineering/atmos/upper) +"aCj" = ( +/obj/effect/turf_decal/siding/dark_blue{ + dir = 4 + }, +/obj/item/kirbyplants/organic/plant22, +/obj/machinery/light/warm/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/command/meeting_room/council) +"aCn" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/railing{ + dir = 9 + }, +/obj/structure/window/reinforced/spawner/directional/west, +/turf/open/openspace, +/area/station/maintenance/department/security/upper) +"aCw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"aCB" = ( +/obj/structure/stairs/west, +/turf/open/floor/plating, +/area/station/science/robotics/augments) +"aCI" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"aCN" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/disposalpipe/trunk/multiz{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/end, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/department/security/lower) +"aCP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/primary/central/aft) +"aDb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/main) +"aDk" = ( +/obj/structure/filingcabinet/employment, +/obj/machinery/camera/directional/north{ + c_tag = "Security - Law Office" + }, +/obj/machinery/light/warm/directional/east, +/obj/machinery/button/door/directional/north{ + id = "lawyerprivacy"; + name = "Privacy Shutters Control" + }, +/turf/open/floor/carpet, +/area/station/service/lawoffice) +"aDq" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/carpet/green, +/area/station/security/courtroom) +"aDr" = ( +/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/brig/entrance) +"aDt" = ( +/obj/structure/hedge, +/obj/structure/window/fulltile, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/library/lounge) +"aDG" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"aDI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/small, +/area/station/security/checkpoint/escape) +"aDN" = ( +/obj/machinery/requests_console/auto_name/directional/west, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/machinery/camera/directional/west{ + c_tag = "Medbay - Primary Treatment Centre Port"; + network = list("ss13","medbay") + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"aDU" = ( +/obj/effect/turf_decal/weather/snow, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/mob/living/basic/goat/pete, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/service/kitchen/coldroom) +"aEf" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Meeting Hall Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/teleporter, +/turf/open/floor/plating, +/area/station/maintenance/department/bridge) +"aEs" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/diagonal, +/area/station/commons/fitness/recreation) +"aEt" = ( +/obj/effect/spawner/random/exotic/ripley, +/obj/machinery/light/small/directional/east, +/turf/open/floor/iron/recharge_floor, +/area/station/science/research/abandoned) +"aEu" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hopqueue"; + name = "HoP Queue Shutters" + }, +/obj/effect/turf_decal/arrows, +/obj/effect/turf_decal/tile/dark_red/half{ + dir = 1 + }, +/obj/machinery/atm/directional/east, +/turf/open/floor/iron/half, +/area/station/hallway/secondary/command) +"aED" = ( +/obj/effect/turf_decal/box/red, +/obj/structure/railing, +/obj/effect/decal/cleanable/ash/large, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/chapel/funeral) +"aEE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/caution/stand_clear{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/security/checkpoint/escape) +"aEF" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/small, +/area/station/security/checkpoint/escape) +"aEP" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/openspace, +/area/station/maintenance/port/greater) +"aER" = ( +/obj/effect/turf_decal/bot, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/iron/large, +/area/station/cargo/miningoffice) +"aEU" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/engineering/gravity_generator) +"aEW" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "vac-office"; + name = "Privacy Shutters" + }, +/turf/open/floor/plating, +/area/station/commons/vacant_room/office) +"aFk" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/light/warm/directional/west, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/ce) +"aFA" = ( +/obj/structure/closet/masks, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/landmark/start/hangover/closet, +/turf/open/floor/iron/large, +/area/station/common/wrestling/arena) +"aFC" = ( +/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/obj/machinery/mineral/stacking_unit_console{ + pixel_x = 32 + }, +/turf/open/floor/iron, +/area/station/maintenance/disposal) +"aFF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/storage) +"aFW" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/warning, +/obj/structure/railing, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/machinery/door/poddoor/shutters/window/preopen{ + dir = 4; + id = "briggatez2"; + name = "Brig Gate Shutters" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/security/brig/entrance) +"aGx" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/machinery/computer/security/telescreen{ + desc = "Used for the Auxiliary Mining Base."; + name = "Auxiliary Base Monitor"; + network = list("auxbase"); + pixel_y = 28 + }, +/turf/open/floor/iron, +/area/station/construction/mining/aux_base) +"aGz" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/blueshield) +"aGG" = ( +/obj/effect/turf_decal/tile/dark_red{ + dir = 8 + }, +/turf/open/floor/iron/dark/side, +/area/station/common/wrestling/arena) +"aHa" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/item/skub{ + name = "medicinal skub" + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/showroomfloor, +/area/station/medical/coldroom) +"aHF" = ( +/obj/structure/closet/crate/hydroponics, +/obj/item/paper/guides/jobs/hydroponics, +/obj/item/seeds/onion, +/obj/item/seeds/garlic, +/obj/item/seeds/potato, +/obj/item/seeds/tomato, +/obj/item/seeds/carrot, +/obj/item/seeds/grass, +/obj/item/seeds/ambrosia, +/obj/item/seeds/wheat, +/obj/item/seeds/pumpkin, +/obj/effect/spawner/random/contraband/prison, +/obj/item/seeds/tower, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral/full, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/prison) +"aHI" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/punch_shit/directional/south, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 4 + }, +/area/station/common/wrestling/arena) +"aIg" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/machinery/firealarm/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Security - Detective's Office" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/grimy, +/area/station/security/detectives_office) +"aIi" = ( +/obj/effect/landmark/start/hangover, +/obj/machinery/station_map/engineering/directional/west, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"aIl" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/item/radio/intercom/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/storage) +"aIv" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/neutral/anticorner, +/turf/open/floor/iron/corner{ + dir = 1 + }, +/area/station/commons/storage/mining) +"aIy" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/commons/dorms/room1) +"aIQ" = ( +/obj/effect/turf_decal/tile/red/real_red{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/station/hallway/secondary/exit/departure_lounge) +"aIU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + id_tag = "innerbrig"; + name = "Brig" + }, +/obj/effect/mapping_helpers/airlock/access/any/service/lawyer, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/holding_cell) +"aJr" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"aJC" = ( +/obj/effect/turf_decal/tile/green, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/commons/dorms) +"aJE" = ( +/obj/effect/turf_decal/tile/dark_blue/half{ + dir = 8 + }, +/obj/machinery/holopad, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/security/office) +"aJF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research/glass{ + name = "Break Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/general, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/breakroom) +"aJL" = ( +/obj/machinery/plumbing/ooze_sucker{ + mapping_id = "5" + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"aJN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) +"aJP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"aJW" = ( +/obj/machinery/conveyor{ + id = "cargodisposals" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plating, +/area/station/cargo/sorting) +"aKa" = ( +/obj/effect/turf_decal/tile/dark_blue/half, +/obj/structure/table/reinforced, +/obj/item/clothing/ears/earmuffs{ + pixel_y = 7; + pixel_x = 7 + }, +/obj/item/clothing/ears/earmuffs{ + pixel_y = 3; + pixel_x = 7 + }, +/turf/open/floor/iron/dark/smooth_half, +/area/station/security/range) +"aKb" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/rd) +"aKc" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/maintenance/port/lesser) +"aKe" = ( +/obj/effect/turf_decal/tile/yellow/half{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/engineering/atmos/office) +"aKo" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/white, +/area/station/medical/pharmacy) +"aKs" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/effect/spawner/random/maintenance/four, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"aKA" = ( +/obj/machinery/light/floor/has_bulb, +/obj/effect/turf_decal/box/white, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"aKB" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"aKW" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible/layer1, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/science/ordnance) +"aLh" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/openspace, +/area/station/ai_monitored/turret_protected/aisat/equipment) +"aLw" = ( +/obj/machinery/door/airlock/hos{ + name = "Head Of Security's Quarters" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/hos, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/hos) +"aLG" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) +"aLH" = ( +/obj/structure/railing, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"aLK" = ( +/obj/structure/stairs/east, +/turf/open/floor/plating, +/area/station/command/meeting_room/council) +"aLL" = ( +/turf/closed/wall/r_wall, +/area/station/hallway/primary/central/aft) +"aLP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/sign/warning/test_chamber/directional/west, +/turf/open/floor/iron/white/side{ + dir = 8 + }, +/area/station/science/research) +"aLT" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white/smooth_half, +/area/station/science/xenobiology) +"aLZ" = ( +/obj/structure/railing, +/turf/open/openspace, +/area/station/command/heads_quarters/rd) +"aMj" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "Port to Fuel Pipe" + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"aMk" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "brigdeskz1"; + name = "Security Desk Shutters" + }, +/turf/open/floor/plating, +/area/station/security/brig/entrance) +"aMm" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/hfr_room) +"aMo" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"aMp" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/engineering/atmos/office) +"aMw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"aMC" = ( +/turf/open/openspace, +/area/station/security/brig/upper) +"aME" = ( +/turf/open/openspace, +/area/station/maintenance/port/greater) +"aMI" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/white/side{ + dir = 8 + }, +/area/station/hallway/primary/central/fore) +"aMJ" = ( +/obj/effect/turf_decal/bot_white, +/obj/structure/bed/roller, +/turf/open/floor/iron/dark, +/area/station/medical/medbay/central) +"aMU" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/department/security/upper) +"aMX" = ( +/obj/structure/girder, +/obj/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/department/eva) +"aNk" = ( +/obj/effect/turf_decal/box, +/obj/machinery/photobooth, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/hop) +"aNK" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"aNT" = ( +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/kitchen) +"aNU" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/trash_pile, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"aNY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"aOb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"aOr" = ( +/obj/structure/railing, +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/openspace, +/area/station/engineering/main) +"aOt" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/ai_monitored/turret_protected/aisat/maint) +"aOC" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral/full, +/turf/open/floor/iron/dark/smooth_large, +/area/station/cargo/lobby) +"aOH" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) +"aOJ" = ( +/obj/structure/stairs/south, +/turf/open/floor/plating, +/area/station/science/xenobiology/hallway) +"aOU" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only, +/obj/structure/stairs/west, +/turf/open/floor/iron/stairs{ + dir = 8 + }, +/area/station/medical/storage) +"aPb" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{ + dir = 6 + }, +/turf/open/floor/engine/vacuum, +/area/station/science/ordnance/freezerchamber) +"aPs" = ( +/obj/structure/table/wood, +/obj/item/paper{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/paper, +/obj/item/paper_bin/carbon{ + pixel_y = 14; + pixel_x = 4 + }, +/obj/item/pen{ + pixel_x = 5 + }, +/turf/open/floor/carpet/green, +/area/station/service/library) +"aPw" = ( +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/light/small/directional/west, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/iron/dark, +/area/station/medical/morgue) +"aPx" = ( +/obj/structure/table, +/obj/item/storage/bag/ore, +/obj/item/pickaxe, +/obj/item/mining_scanner, +/obj/item/flashlight, +/obj/item/gps/mining, +/obj/item/clothing/glasses/meson, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark/side, +/area/station/commons/storage/mining) +"aPE" = ( +/obj/structure/chair/office, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron, +/area/station/engineering/gravity_generator) +"aPM" = ( +/obj/structure/stairs/west, +/turf/open/floor/plating, +/area/station/commons/storage/tools) +"aPU" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"aQc" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 4 + }, +/area/station/security/brig) +"aQd" = ( +/obj/machinery/door/airlock/external{ + name = "Departure Shuttle Airlock"; + space_dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/exit/departure_lounge) +"aQr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/general/visible{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"aQw" = ( +/obj/structure/railing, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/item/stack/medical/gauze{ + pixel_x = -2; + pixel_y = 7 + }, +/obj/structure/table/glass, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"aQS" = ( +/turf/closed/wall, +/area/station/construction/mining/aux_base) +"aRb" = ( +/obj/structure/lattice, +/obj/structure/railing, +/turf/open/space/basic, +/area/space/nearstation) +"aRw" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/digital_clock/directional/west, +/turf/open/floor/plating, +/area/station/hallway/primary/central) +"aRA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"aRN" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/bot_blue, +/obj/structure/bed/roller, +/obj/structure/railing, +/turf/open/floor/iron/white, +/area/station/hallway/primary/central/fore) +"aRS" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Kitchen Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/service/hydroponics, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/service/hydroponics) +"aSl" = ( +/obj/machinery/light/small/directional/east, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/maintenance/aft/greater) +"aSs" = ( +/obj/machinery/door/airlock/hatch{ + name = "Maintenance Hatch" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"aSu" = ( +/obj/item/reagent_containers/cup/bottle/epinephrine{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/reagent_containers/cup/bottle/multiver{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/reagent_containers/syringe{ + pixel_y = -4 + }, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/table/glass, +/turf/open/floor/iron/dark, +/area/station/medical/treatment_center) +"aSx" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "Arrival Airlock" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"aSz" = ( +/obj/structure/ore_vein/stone, +/turf/open/misc/asteroid/moon/airless, +/area/station/asteroid) +"aSF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/light/warm/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"aSS" = ( +/obj/structure/aquarium/prefilled, +/obj/machinery/door/firedoor, +/obj/machinery/light/warm/directional/west, +/turf/open/floor/plastic, +/area/station/common/carpshop) +"aST" = ( +/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"aTa" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/machinery/atmospherics/pipe/layer_manifold/orange/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/science/ordnance/burnchamber) +"aTd" = ( +/obj/machinery/digital_clock/directional/south, +/obj/effect/turf_decal/tile/blue/half{ + dir = 8 + }, +/obj/machinery/smartfridge/organ, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/medical/surgery/aft) +"aTe" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/decal/cleanable/confetti, +/obj/structure/railing, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/eighties, +/area/station/common/arcade) +"aTi" = ( +/obj/effect/turf_decal/tile/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/closet, +/obj/effect/spawner/random/maintenance/three, +/obj/effect/spawner/random/entertainment/wallet_storage, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron, +/area/station/commons/vacant_room/commissary) +"aTu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"aTB" = ( +/obj/structure/window/reinforced/tinted/fulltile, +/obj/structure/hedge/opaque, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/rd) +"aTC" = ( +/obj/machinery/computer/atmos_control/nocontrol/incinerator, +/obj/effect/turf_decal/box, +/turf/open/floor/iron, +/area/station/maintenance/disposal/incinerator) +"aTE" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/table, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"aTG" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/engineering/lobby) +"aTH" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/science/research) +"aTL" = ( +/obj/machinery/modular_computer/preset/command{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/carpet/cyan, +/area/station/command/heads_quarters/blueshield) +"aTU" = ( +/obj/structure/stairs/west, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"aTV" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/structure/cable, +/obj/machinery/holopad, +/turf/open/floor/iron/white, +/area/station/medical/pharmacy) +"aTX" = ( +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/security/holding_cell) +"aUb" = ( +/turf/closed/wall/r_wall, +/area/station/security/checkpoint/escape) +"aUr" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Chemistry Factory Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/chemistry, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/chemistry) +"aUv" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/chair/comfy/black, +/obj/machinery/light/small/blacklight/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/commons/dorms/room4) +"aUE" = ( +/obj/effect/mapping_helpers/burnt_floor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/small/directional/south, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"aUF" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/effect/spawner/random/maintenance/four, +/turf/open/floor/iron, +/area/station/maintenance/port/greater) +"aUI" = ( +/obj/structure/hedge, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/chapel) +"aUP" = ( +/obj/effect/turf_decal/trimline/dark_red/corner, +/obj/effect/turf_decal/siding/dark_red/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_red{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/security/prison) +"aUQ" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"aUS" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"aUZ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"aVd" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"aVt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"aVz" = ( +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue/full, +/obj/effect/landmark/start/paramedic, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/paramedic) +"aVH" = ( +/obj/machinery/igniter/incinerator_atmos, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/turf/open/floor/engine, +/area/station/maintenance/disposal/incinerator) +"aVM" = ( +/obj/structure/chair/stool/bar/directional/north, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/tile, +/area/station/service/bar) +"aVN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/engineering/supermatter/room) +"aVQ" = ( +/obj/effect/turf_decal/tile/green/opposingcorners, +/turf/open/floor/iron/white, +/area/station/medical/virology) +"aWe" = ( +/turf/closed/wall, +/area/station/service/kitchen/diner) +"aWf" = ( +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Atmiospherics Maintenance" + }, +/turf/open/floor/plating, +/area/station/engineering/atmos) +"aWg" = ( +/turf/open/floor/iron/stairs/right, +/area/station/cargo/storage) +"aWj" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/openspace, +/area/station/engineering/main) +"aWA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/white, +/area/station/medical/pharmacy) +"aWD" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch" + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"aXe" = ( +/obj/item/kirbyplants/synthetic/plant28, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/white/smooth_half, +/area/station/science/xenobiology) +"aXk" = ( +/obj/machinery/camera/directional/east{ + c_tag = "Virology - Lab"; + network = list("ss13","medbay") + }, +/obj/effect/turf_decal/tile/green/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/white, +/area/station/medical/virology) +"aXr" = ( +/turf/closed/wall, +/area/station/cargo/miningdock) +"aXv" = ( +/obj/machinery/light/cold/directional/east, +/obj/effect/turf_decal/tile/dark_blue/half, +/turf/open/floor/iron/dark/smooth_half, +/area/station/security/office) +"aXN" = ( +/obj/structure/chair/office, +/obj/structure/cable, +/obj/effect/landmark/start/station_engineer, +/turf/open/floor/iron/dark, +/area/station/engineering/lobby) +"aXZ" = ( +/obj/effect/turf_decal/tile/green/opposingcorners, +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/camera/directional/east{ + c_tag = "Recreation - Holodeck Hallway" + }, +/turf/open/floor/iron/checker{ + dir = 1 + }, +/area/station/hallway/secondary/recreation) +"aYc" = ( +/obj/effect/spawner/random/engineering/tracking_beacon, +/turf/open/floor/iron/white/side{ + dir = 8 + }, +/area/station/hallway/secondary/exit/escape_pod) +"aYh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/carpet/blue, +/area/station/command/heads_quarters/cmo) +"aYp" = ( +/obj/machinery/door/window/left/directional/east{ + name = "Containment Pen"; + req_access = list("xenobiology") + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/duct, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"aYr" = ( +/obj/machinery/teleport/hub, +/obj/effect/turf_decal/stripes/box, +/obj/machinery/firealarm/directional/east, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/plating, +/area/station/command/teleporter) +"aYt" = ( +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/mid_joiner{ + dir = 4 + }, +/obj/effect/mapping_helpers/dead_body_placer, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/medical/morgue) +"aYB" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/small, +/area/station/security/checkpoint/escape) +"aYC" = ( +/obj/item/flashlight/lamp{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/station/service/lawoffice) +"aYJ" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"aYK" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/item/storage/medkit/regular{ + pixel_x = 6 + }, +/obj/item/stack/cable_coil{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/storage/bag/ore{ + pixel_y = -11 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/greater) +"aYN" = ( +/obj/structure/marker_beacon/burgundy, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/gateway) +"aYU" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"aYX" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"aZa" = ( +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/departure_lounge) +"aZc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/sparker/directional/south{ + id = "justicespark" + }, +/obj/effect/turf_decal/stripes/red/line, +/turf/open/floor/iron/dark/small, +/area/station/security/execution/education) +"aZd" = ( +/turf/open/openspace, +/area/station/security/prison/upper) +"aZq" = ( +/obj/effect/turf_decal/tile/purple/half{ + dir = 1 + }, +/obj/machinery/smartfridge/extract/preloaded, +/obj/item/binoculars{ + pixel_y = 12 + }, +/turf/open/floor/iron/dark/smooth_half, +/area/station/science/xenobiology) +"aZC" = ( +/obj/effect/turf_decal/tile/red/real_red{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/obj/structure/cable, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/exit/escape_pod) +"aZJ" = ( +/obj/effect/turf_decal/tile/dark_blue/half, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/security/office) +"aZS" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/transit_tube/station/dispenser/reverse{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"aZT" = ( +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark, +/area/station/commons/storage/tools) +"aZY" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood/tile, +/area/station/service/bar) +"bam" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/iron, +/area/station/maintenance/disposal/incinerator) +"bar" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Security Desk" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/brig/entrance) +"baC" = ( +/obj/structure/table/reinforced, +/obj/item/holosign_creator/engineering{ + pixel_y = 8; + pixel_x = -4 + }, +/obj/item/holosign_creator/atmos{ + pixel_y = 4; + pixel_x = 6 + }, +/obj/item/holosign_creator/medical, +/turf/open/floor/iron/dark/small, +/area/station/engineering/storage/tech) +"baG" = ( +/obj/effect/turf_decal/siding/white{ + dir = 6 + }, +/obj/structure/window/reinforced/tinted/frosted/spawner/directional/east, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/turf/open/floor/wood/parquet, +/area/station/medical/patients_rooms) +"baI" = ( +/obj/machinery/door/window/brigdoor/left/directional/south{ + name = "Captain's Desk"; + req_access = list("captain") + }, +/obj/machinery/camera/directional/east{ + c_tag = "Bridge - Captain's Office" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain) +"baU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/escape) +"bbg" = ( +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"bbk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/holopad, +/turf/open/floor/iron/white/side, +/area/station/science/research) +"bbp" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/science/rd, +/obj/machinery/door/airlock/rd{ + name = "Research Director's Quarters" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/rd) +"bbz" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron, +/area/station/commons/vacant_room/commissary) +"bbA" = ( +/obj/structure/stairs/east, +/obj/machinery/camera/motion/directional/south{ + c_tag = "MiniSat Foyer"; + network = list("minisat") + }, +/turf/open/floor/plating, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"bbE" = ( +/obj/effect/turf_decal/bot_white/right, +/obj/structure/window/reinforced/plasma/spawner/directional/east, +/turf/open/floor/engine, +/area/station/engineering/gravity_generator) +"bbJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"bcd" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/holding_cell) +"bcz" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/light_switch/directional/east, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/commons/dorms/room5) +"bcA" = ( +/obj/structure/table/glass, +/turf/open/floor/glass/reinforced, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"bcK" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/hallway/secondary/exit/escape_pod) +"bcO" = ( +/obj/machinery/space_heater, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/smooth_large, +/area/station/maintenance/port/aft) +"bdf" = ( +/obj/structure/table/glass, +/obj/machinery/smartfridge/disks{ + pixel_y = 6 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Science - Ordnance Office"; + network = list("ss13","rd") + }, +/obj/machinery/airalarm/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/item/raw_anomaly_core/random, +/obj/item/raw_anomaly_core/random, +/obj/item/raw_anomaly_core/random, +/turf/open/floor/iron/dark/small, +/area/station/science/ordnance/office) +"bdh" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Dormitories" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) +"bdt" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=lowhall6"; + location = "lowhall5" + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"bdu" = ( +/obj/machinery/door/airlock/service{ + name = "Barbershop" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/barber) +"bdy" = ( +/obj/effect/turf_decal/box, +/obj/machinery/computer/records/security{ + dir = 8 + }, +/obj/machinery/airalarm/directional/east, +/obj/machinery/light/cold/directional/east, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/security/checkpoint/supply) +"bdM" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Wrestling Arena" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/common/wrestling/arena) +"bdP" = ( +/obj/machinery/smartfridge/chemistry/preloaded, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/station/medical/pharmacy) +"bdX" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light/warm/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/engineering/atmos/hfr_room) +"bdY" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner/directional/north, +/turf/open/floor/catwalk_floor/iron, +/area/station/security/checkpoint/medical) +"bdZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/small, +/area/station/medical/surgery/aft) +"bea" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera/directional/south{ + c_tag = "Engineering - Tech Storage"; + network = list("ss13","engine") + }, +/obj/structure/cable, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) +"beg" = ( +/turf/open/floor/iron, +/area/station/maintenance/aft/greater) +"bem" = ( +/obj/structure/table/glass, +/obj/item/disk/tech_disk, +/obj/item/disk/tech_disk, +/obj/item/disk/tech_disk, +/obj/item/clothing/glasses/science{ + pixel_x = 2 + }, +/obj/item/clothing/glasses/science{ + pixel_y = -3 + }, +/turf/open/floor/glass/reinforced, +/area/station/science/research) +"bev" = ( +/turf/closed/wall/r_wall, +/area/station/science/ordnance) +"beC" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/camera/directional/south{ + c_tag = "Auxillary Base - Access" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"beH" = ( +/obj/effect/turf_decal/tile/purple/half, +/obj/machinery/firealarm/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/smooth_edge, +/area/station/command/heads_quarters/rd) +"beN" = ( +/obj/machinery/gulag_teleporter, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/processing) +"beR" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/light/warm/directional/west, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/engineering/atmos/hfr_room) +"beU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit) +"bfb" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible/layer5{ + dir = 10 + }, +/obj/machinery/camera/directional/east{ + c_tag = "Science - Ordnance Burn Chamber"; + network = list("ss13","rd") + }, +/turf/open/space/basic, +/area/space/nearstation) +"bfd" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/item/radio/intercom/prison/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/small, +/area/station/security/checkpoint/escape) +"bfC" = ( +/turf/closed/wall, +/area/station/commons/dorms/room2) +"bfF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"bfG" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner/directional/north, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"bfK" = ( +/obj/structure/table, +/obj/item/experi_scanner{ + pixel_y = 6; + pixel_x = 3 + }, +/obj/item/experi_scanner, +/turf/open/floor/glass/reinforced, +/area/station/science/research) +"bfQ" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"bfT" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + piping_layer = 2 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/white, +/area/station/science/ordnance) +"bfX" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/security/corrections_officer) +"bfY" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/commons/dorms) +"bfZ" = ( +/obj/item/assembly/mousetrap/armed, +/obj/item/crowbar/large{ + pixel_y = 20 + }, +/turf/open/floor/wood, +/area/station/maintenance/starboard/fore) +"bgb" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Catwalk Maintenance Access" + }, +/turf/open/floor/plating, +/area/station/commons/fitness/recreation) +"bgf" = ( +/obj/structure/plasticflaps/opaque{ + name = "Service Deliveries" + }, +/turf/open/floor/iron/large, +/area/station/hallway/secondary/service) +"bgi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/holosign/barrier/engineering, +/turf/open/floor/plating, +/area/station/hallway/secondary/exit/escape_pod) +"bgj" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/structure/cable, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"bgs" = ( +/obj/structure/chair/stool/bar/directional/south, +/turf/open/floor/glass/reinforced, +/area/station/science/xenobiology) +"bgt" = ( +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"bgw" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "Bridge Blast Door" + }, +/turf/open/floor/plating, +/area/station/command/bridge) +"bgD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"bgL" = ( +/obj/machinery/status_display/ai/directional/north, +/obj/machinery/camera/directional/north{ + c_tag = "Bridge - Teleporter" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/command/teleporter) +"bgN" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/bot_white, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"bgQ" = ( +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/common/wrestling/arena) +"bgS" = ( +/obj/effect/spawner/random/vending/snackvend, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/entry) +"bgT" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen_counter"; + name = "Kitchen Counter Shutters" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"bgU" = ( +/obj/machinery/door/airlock/maintenance/external{ + name = "Wine Cellar" + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"bgV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"bhb" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/machinery/airalarm/directional/north, +/obj/machinery/vending/hydroseeds, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"bhc" = ( +/obj/machinery/igniter/incinerator_ordmix, +/turf/open/floor/engine/vacuum, +/area/station/science/ordnance/burnchamber) +"bhd" = ( +/turf/closed/wall, +/area/station/medical/storage) +"bhh" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen_counter"; + name = "Kitchen Counter Shutters" + }, +/obj/machinery/door/firedoor, +/obj/structure/desk_bell{ + pixel_x = -13 + }, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"bhw" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/entry) +"bhH" = ( +/obj/item/radio/intercom/directional/east, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/turf_decal/siding/dark/end{ + dir = 8 + }, +/obj/item/kirbyplants/organic/plant22, +/obj/structure/cable, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/entry) +"bhJ" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_y = 6; + pixel_x = -3 + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"bhL" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/openspace, +/area/station/maintenance/aft/greater) +"bhM" = ( +/turf/open/floor/iron, +/area/station/maintenance/port/lesser) +"bhY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/red/line{ + dir = 5 + }, +/turf/open/floor/iron/dark/small, +/area/station/security/execution/education) +"biy" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/maintenance/port/aft) +"biD" = ( +/obj/machinery/atmospherics/components/tank{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/ordnance) +"biO" = ( +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible, +/obj/machinery/meter/monitored/waste_loop, +/turf/open/floor/engine, +/area/station/engineering/atmos) +"biR" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing, +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/simple/violet/visible{ + dir = 4 + }, +/turf/open/openspace, +/area/station/engineering/atmos/upper) +"biW" = ( +/obj/structure/bed/double{ + dir = 1 + }, +/obj/item/bedsheet/rd/double{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/purple, +/area/station/command/heads_quarters/rd) +"bjs" = ( +/obj/effect/turf_decal/tile/dark_red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/service/chapel/funeral) +"bjw" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/glass, +/obj/item/bot_assembly/hygienebot{ + pixel_y = -12 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"bjx" = ( +/obj/machinery/chem_dispenser, +/obj/effect/turf_decal/tile/yellow/anticorner{ + dir = 4 + }, +/obj/machinery/button/door/directional/east{ + id = "pharmacy_shutters_1"; + name = "Pharmacy Privacy Shutters Toggle"; + req_access = list("pharmacy") + }, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/iron/white/smooth_corner{ + dir = 8 + }, +/area/station/medical/pharmacy) +"bjA" = ( +/obj/effect/turf_decal/tile/dark_red/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/iron/dark, +/area/station/service/chapel/office) +"bjC" = ( +/obj/effect/spawner/random/structure/crate, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"bjL" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/visible{ + dir = 9 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"bjZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/light/small/directional/east, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"bka" = ( +/obj/effect/turf_decal/siding/white{ + dir = 5 + }, +/obj/structure/window/reinforced/tinted/frosted/spawner/directional/east, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/turf/open/floor/wood/parquet, +/area/station/medical/patients_rooms) +"bko" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"bks" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/security/range) +"bkD" = ( +/obj/effect/turf_decal/bot, +/obj/effect/spawner/random/vending/snackvend, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/escape_pod) +"bkS" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/holopad/secure, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/grimy, +/area/station/security/detectives_office) +"bkT" = ( +/obj/effect/turf_decal/bot_white, +/obj/machinery/light/warm/directional/west, +/obj/structure/bed/roller, +/turf/open/floor/iron/dark, +/area/station/medical/medbay/central) +"bla" = ( +/obj/effect/turf_decal/bot, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = -5; + pixel_y = 7 + }, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = 3; + pixel_y = 7 + }, +/obj/item/stack/sheet/plasteel{ + amount = 10; + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/sheet/iron/fifty{ + pixel_x = -3 + }, +/obj/item/stack/sheet/iron/fifty{ + pixel_x = -3 + }, +/obj/item/stack/rods/fifty{ + pixel_y = 3 + }, +/obj/item/stack/rods/fifty, +/obj/structure/table, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/machinery/light/warm/directional/south, +/turf/open/floor/iron, +/area/station/engineering/atmos/storage) +"bld" = ( +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/entry) +"bls" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm/directional/east, +/obj/machinery/camera/directional/east{ + c_tag = "Library - Upper Study"; + network = list("ss13","bar") + }, +/obj/machinery/skill_station, +/turf/open/floor/wood/large, +/area/station/service/library) +"blv" = ( +/obj/machinery/computer/gateway_control, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron, +/area/station/command/gateway) +"blx" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/stripes/blue/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/aisat_interior) +"blQ" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/central/aft) +"blS" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"blT" = ( +/obj/effect/turf_decal/tile/purple/half, +/obj/machinery/airalarm/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/white/smooth_edge, +/area/station/command/heads_quarters/rd) +"bmi" = ( +/obj/machinery/chem_master/condimaster{ + desc = "Looks like a knock-off chem-master. Perhaps useful for separating liquids when mixing drinks precisely. Also dispenses condiments."; + name = "HoochMaster Deluxe" + }, +/obj/effect/turf_decal/bot_white, +/obj/machinery/requests_console/auto_name/directional/east, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/item/toy/figure/bartender{ + pixel_y = 18 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/bar) +"bmk" = ( +/obj/machinery/elevator_control_panel/directional/north{ + linked_elevator_id = "arrivals_lift"; + preset_destination_names = list("2"="Lower Deck","3"="Upper Deck"); + pixel_x = 16 + }, +/obj/structure/industrial_lift/public, +/turf/open/floor/plating/elevatorshaft, +/area/station/hallway/primary/port) +"bmt" = ( +/obj/machinery/light/cold/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"bmw" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"bmx" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/security/brig/entrance) +"bmy" = ( +/obj/machinery/button/flasher{ + id = "brigflashdoorz2"; + name = "Flash Control"; + pixel_x = 30; + pixel_y = -7; + req_access = list("security") + }, +/turf/open/openspace, +/area/station/security/brig/entrance) +"bmG" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/hfr_room) +"bmT" = ( +/obj/structure/cable, +/turf/open/floor/glass, +/area/station/ai_monitored/turret_protected/ai) +"bmU" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"bmV" = ( +/obj/machinery/camera/directional/west{ + c_tag = "Guard Post - Medbay"; + network = list("ss13","medbay") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/security/checkpoint/medical) +"bmW" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/wood/parquet, +/area/station/security/detectives_office) +"bnd" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"bnl" = ( +/obj/machinery/computer/records/security{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/brig/entrance) +"bno" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/head_of_security, +/turf/open/floor/carpet, +/area/station/command/heads_quarters/hos) +"bnq" = ( +/obj/machinery/plumbing/ooze_sucker{ + mapping_id = "3"; + dir = 1 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"bnu" = ( +/obj/effect/turf_decal/tile/dark_red/half{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/closet/wardrobe/robotics_black, +/obj/effect/turf_decal/bot_white, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark/smooth_half, +/area/station/science/robotics/lab) +"bnv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"bnw" = ( +/obj/machinery/door/window/elevator/right/directional/north{ + elevator_mode = 1; + elevator_linked_id = "arrivals_lift" + }, +/turf/open/floor/glass/reinforced, +/area/station/hallway/secondary/entry) +"bnx" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/shieldgen, +/turf/open/openspace, +/area/station/maintenance/starboard/greater) +"bnG" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/station/service/library) +"bnJ" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side, +/area/station/engineering/atmos/hfr_room) +"bnN" = ( +/obj/structure/table/reinforced, +/obj/item/taperecorder, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/security/office) +"bnO" = ( +/obj/machinery/door/airlock/engineering{ + name = "Engineering Emergency Supplies" + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"bnZ" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/box, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/airalarm/directional/west, +/obj/structure/disposalpipe/trunk, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/treatment_center) +"bol" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/medbay/lobby) +"boB" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/machinery/vending/modularpc, +/turf/open/floor/iron/dark, +/area/station/commons/storage/primary) +"boE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/camera/directional/south{ + c_tag = "Engineering - Supermatter Room Aft"; + network = list("ss13","engine") + }, +/obj/machinery/station_map/engineering/directional/south, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"boG" = ( +/obj/machinery/power/port_gen/pacman/pre_loaded, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"boM" = ( +/obj/structure/rack, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/button/door/directional/south{ + id = "gatewaydoor"; + name = "Gateway Bolt Control"; + normaldoorcontrol = 1; + req_access = list("gateway"); + specialfunctions = 4; + pixel_x = -8 + }, +/obj/item/radio/intercom/directional/west, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/teleporter) +"bpa" = ( +/turf/closed/wall, +/area/station/maintenance/fore/lesser) +"bpr" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/dark/end{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/entry) +"bpv" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/sign/warning/vacuum/external/directional/north, +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4; + name = "Output to Waste" + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"bpN" = ( +/obj/machinery/growing/soil, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/grass, +/area/station/service/hydroponics/garden) +"bpO" = ( +/obj/structure/railing, +/obj/machinery/door/firedoor/border_only, +/turf/open/openspace, +/area/station/science/xenobiology) +"bpS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"bpZ" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/effect/spawner/random/maintenance/two, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/iron, +/area/station/maintenance/fore/lesser) +"bqf" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"bqh" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/engineering/storage/tcomms) +"bqn" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"brb" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"brc" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/plasma_input, +/turf/open/floor/engine/plasma, +/area/station/engineering/atmos/upper) +"brn" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"brq" = ( +/obj/effect/turf_decal/trimline/green/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/mid_joiner{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 4 + }, +/area/station/service/hydroponics) +"brr" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/openspace, +/area/station/engineering/atmos/upper) +"brw" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/openspace, +/area/station/engineering/atmos/upper) +"brC" = ( +/obj/structure/closet/crate/internals, +/obj/effect/turf_decal/delivery, +/obj/item/storage/medkit/emergency{ + pixel_y = 5 + }, +/obj/item/tank/internals/oxygen{ + pixel_x = -4 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath, +/turf/open/floor/iron/large, +/area/station/cargo/storage) +"brD" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/openspace, +/area/station/maintenance/starboard/fore) +"brF" = ( +/obj/machinery/light/cold/directional/east, +/turf/open/floor/glass/reinforced, +/area/station/science/research) +"brH" = ( +/obj/structure/lattice/catwalk, +/obj/structure/table/glass, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/item/radio/headset/headset_med, +/turf/open/openspace, +/area/station/medical/pharmacy) +"brT" = ( +/obj/effect/turf_decal/tile/dark_red/half, +/mob/living/basic/pet/dog/corgi, +/obj/structure/bed/dogbed{ + anchored = 1; + name = "E-N's bed" + }, +/obj/machinery/posialert/directional/south, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/dark/smooth_half, +/area/station/science/robotics/lab) +"brW" = ( +/obj/structure/railing{ + dir = 5 + }, +/obj/structure/window/reinforced/plasma/spawner/directional/north, +/obj/structure/window/reinforced/plasma/spawner/directional/east, +/turf/open/openspace, +/area/station/engineering/atmos/upper) +"bsp" = ( +/obj/structure/cable, +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"bsJ" = ( +/obj/effect/turf_decal/tile/blue, +/obj/machinery/light/cold/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/iron/white/side{ + dir = 4 + }, +/area/station/medical/storage) +"bsN" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/checker, +/area/station/hallway/primary/central/aft) +"bsS" = ( +/obj/machinery/door/airlock/hydroponics{ + name = "Hydroponics Bay" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/service/hydroponics, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/hydroponics) +"bsY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/librarian, +/obj/structure/cable, +/obj/structure/chair/wood{ + dir = 8 + }, +/turf/open/floor/cult, +/area/station/service/library/private) +"bta" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/dark/end{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/sign/directions/evac/directional/south{ + dir = 4 + }, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central) +"btc" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Cargo - Bitrunner Office" + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark/small, +/area/station/bitrunning/den) +"btn" = ( +/obj/structure/chair/office, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/corrections_officer) +"btp" = ( +/obj/machinery/griddle, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"bts" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"btv" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/hallway/primary/port) +"btz" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/secondary/command) +"btM" = ( +/obj/effect/turf_decal/arrows{ + dir = 4 + }, +/obj/structure/disposalpipe/junction/flip, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall4"; + location = "hall3" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/entry) +"btR" = ( +/obj/machinery/door/airlock/external{ + name = "Labor Camp Shuttle Airlock"; + shuttledocked = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/security/processing) +"btW" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/service/library) +"btY" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"bub" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/east, +/turf/open/openspace, +/area/station/science/xenobiology) +"buf" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"buh" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/obj/machinery/button/door/directional/north{ + id = "visitation"; + name = "Visitation Shutters"; + pixel_x = 6; + pixel_y = -24; + req_access = list("brig") + }, +/obj/machinery/button/flasher{ + id = "visitorflash"; + pixel_x = -6; + pixel_y = -24; + name = "Visitation Flasher"; + req_access = list("brig") + }, +/obj/machinery/button/door/directional/south{ + id = "visit_bolt"; + name = "Visitation Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4; + pixel_y = -33; + req_access = list("brig") + }, +/obj/machinery/airalarm/directional/west, +/obj/item/kirbyplants/synthetic/plant29, +/obj/machinery/light/small/directional/west, +/turf/open/floor/iron/dark, +/area/station/security/prison/visit) +"bul" = ( +/obj/item/restraints/legcuffs/beartrap, +/obj/item/restraints/legcuffs/beartrap, +/obj/structure/rack, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/item/storage/box/lights/mixed{ + pixel_y = 6 + }, +/obj/item/storage/box/mousetraps, +/obj/machinery/requests_console/auto_name/directional/south, +/obj/effect/mapping_helpers/requests_console/assistance, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/service/janitor) +"buw" = ( +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 5 + }, +/obj/machinery/camera/directional/east{ + c_tag = "Dormitories - Public Spa" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/siding/wideplating_new/corner, +/turf/open/floor/iron/white/diagonal, +/area/station/common/spa) +"buA" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"buC" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/item/healthanalyzer{ + pixel_y = 10 + }, +/obj/item/clothing/gloves/latex, +/turf/open/floor/iron/white, +/area/station/security/medical) +"buK" = ( +/obj/structure/table/wood, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/blueshield) +"buM" = ( +/obj/structure/table, +/obj/item/key/janitor{ + pixel_y = 10; + pixel_x = -7 + }, +/obj/item/grenade/chem_grenade/cleaner{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/grenade/chem_grenade/cleaner{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/item/grenade/chem_grenade/cleaner, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/service/janitor) +"buX" = ( +/obj/item/skub, +/turf/open/misc/asteroid/moon/airless, +/area/station/asteroid) +"bve" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/security/brig/entrance) +"bvi" = ( +/obj/machinery/button/door/directional/west{ + id = "private_4"; + name = "Privacy Bolts"; + normaldoorcontrol = 1; + pixel_y = 9; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/commons/dorms/room4) +"bvH" = ( +/obj/structure/table/reinforced, +/obj/machinery/chem_dispenser/drinks{ + pixel_y = 6; + pixel_x = -2; + dir = 4 + }, +/obj/item/reagent_containers/cup/glass{ + pixel_x = 10; + pixel_y = 14 + }, +/obj/item/reagent_containers/cup/glass{ + pixel_x = 12; + pixel_y = 6 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron/kitchen/diagonal, +/area/station/maintenance/abandon_diner) +"bvM" = ( +/obj/effect/landmark/start/cyborg, +/obj/machinery/recharge_station, +/obj/effect/turf_decal/stripes/white/line{ + dir = 5 + }, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/aisat/equipment) +"bwc" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/simple/violet/visible{ + dir = 9 + }, +/turf/open/space/openspace, +/area/space/nearstation) +"bwi" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/lockers) +"bws" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/item/storage/toolbox/artistic{ + pixel_y = 9; + pixel_x = -14 + }, +/obj/structure/chair/office{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/service/library) +"bwt" = ( +/obj/structure/railing, +/turf/open/space/openspace, +/area/space/nearstation) +"bwv" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/science/xenobiology) +"bwD" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/obj/structure/chair/office/light, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"bwK" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "pharmacy_shutters_2"; + name = "Chemlab Shutters" + }, +/turf/open/floor/plating, +/area/station/medical/pharmacy) +"bwL" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/wood/large, +/area/station/service/bar) +"bwM" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall18"; + location = "hall17" + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"bwX" = ( +/obj/effect/turf_decal/tile/green, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/commons/dorms) +"bxb" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"bxo" = ( +/obj/structure/table/wood, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/wood, +/area/station/commons/dorms/room2) +"bxW" = ( +/obj/effect/spawner/random/structure/girder, +/obj/structure/grille/broken, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/lesser) +"byb" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/space/basic, +/area/space/nearstation) +"bye" = ( +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/spawner/random/engineering/tracking_beacon, +/turf/open/floor/iron/dark, +/area/station/cargo/office) +"byo" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/structure/tank_dispenser, +/obj/item/toy/figure/engineer{ + pixel_x = 7; + pixel_y = 12 + }, +/turf/open/floor/iron, +/area/station/engineering/storage) +"byO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/command/meeting_room/council) +"byP" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"byW" = ( +/obj/effect/spawner/random/trash/graffiti, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"bza" = ( +/obj/machinery/door/airlock/external{ + name = "Mining Dock Airlock" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/mining, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "mining-dock" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/cargo/miningdock) +"bzf" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"bzu" = ( +/obj/machinery/computer/prisoner/management, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/box, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hos) +"bzv" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/power/floodlight, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"bzw" = ( +/turf/open/floor/iron, +/area/station/commons/dorms) +"bzx" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/delivery/white, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/large, +/area/station/commons/vacant_room/commissary) +"bzI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"bAe" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"bAj" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/eva) +"bAk" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + location = "Chemistry" + }, +/obj/machinery/door/window/left/directional/south{ + name = "Chemistry Deliveries"; + req_access = list("pharmacy") + }, +/obj/structure/window/reinforced/spawner/directional/west, +/turf/open/floor/iron/large, +/area/station/medical/pharmacy) +"bAl" = ( +/obj/machinery/telecomms/server/presets/science, +/turf/open/floor/circuit/telecomms/mainframe, +/area/station/tcommsat/server) +"bAK" = ( +/obj/machinery/computer/bank_machine{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/machinery/firealarm/directional/west, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/dark/smooth_large, +/area/station/ai_monitored/command/nuke_storage) +"bAS" = ( +/obj/effect/turf_decal/tile/green/opposingcorners, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/virology) +"bAX" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/vending/cigarette, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"bBe" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/camera/directional/east{ + c_tag = "Upper Central Primary Hallway - Engineering" + }, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"bBr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"bBx" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/item/kirbyplants/synthetic/plant28, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"bBD" = ( +/turf/open/floor/engine, +/area/station/science/ordnance) +"bBM" = ( +/obj/effect/turf_decal/siding/white, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/commons/dorms) +"bBQ" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/checker{ + dir = 1 + }, +/area/station/commons/dorms) +"bBT" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/station/maintenance/department/security/lower) +"bBV" = ( +/obj/machinery/door/airlock/hatch{ + name = "Maintenance Hatch" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"bBX" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8; + name = "Unfiltered to Mix" + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"bCc" = ( +/obj/structure/trash_pile, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"bCe" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/disposalpipe/trunk/multiz, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"bCf" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Dormitories" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/smooth_large, +/area/station/common/cryopods) +"bCk" = ( +/turf/closed/wall, +/area/station/service/library/private) +"bCm" = ( +/obj/structure/table/reinforced, +/obj/item/crowbar/red{ + pixel_y = 12 + }, +/obj/item/wrench{ + pixel_y = 14 + }, +/obj/item/clothing/suit/hazardvest{ + pixel_x = 12 + }, +/obj/item/clothing/gloves/color/black{ + pixel_x = 12 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/glasses/meson/engine/tray, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"bCp" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"bCt" = ( +/obj/machinery/door/window/brigdoor/left/directional/north{ + req_access = list("security"); + name = "Orderly Cell" + }, +/turf/open/floor/catwalk_floor/iron, +/area/station/security/checkpoint/medical) +"bCu" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/science/ordnance/office) +"bCv" = ( +/obj/effect/turf_decal/trimline/dark_red/warning{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark_red{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/security/prison) +"bCw" = ( +/obj/structure/cable, +/obj/machinery/camera/motion/directional/south{ + c_tag = "Engineering - Upper MiniSat Access"; + network = list("ss13","engine") + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/engineering/transit_tube) +"bCy" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/turf_decal/stripes/white/line{ + dir = 10 + }, +/obj/structure/table, +/obj/item/clothing/gloves/fingerless, +/obj/item/reagent_containers/cup/glass/waterbottle{ + pixel_y = 6; + pixel_x = -6 + }, +/obj/item/reagent_containers/cup/rag{ + pixel_y = 12; + pixel_x = 4 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/maintenance/aft/greater) +"bCE" = ( +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/obj/effect/turf_decal/siding/red{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/firealarm/directional/east{ + pixel_x = 33 + }, +/obj/item/radio/intercom, +/obj/structure/table/reinforced, +/obj/structure/cable, +/obj/machinery/light/cold/directional/east, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light_switch/directional/east{ + pixel_y = -13; + pixel_x = 20 + }, +/turf/open/floor/iron/dark, +/area/station/security/warden) +"bCQ" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/hallway/primary/central/aft) +"bCR" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"bDd" = ( +/obj/structure/chair/wood, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/carpet, +/area/station/commons/dorms) +"bDG" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"bDO" = ( +/turf/open/floor/engine/n2, +/area/station/engineering/atmos) +"bEg" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/service/hydroponics) +"bEj" = ( +/obj/structure/girder, +/obj/structure/grille, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"bEF" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/evidence) +"bEJ" = ( +/obj/machinery/atmospherics/components/tank, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/ordnance) +"bEK" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 1 + }, +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/primary/central/aft) +"bEN" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/departure_lounge) +"bEQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/railing, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/lockers) +"bEW" = ( +/obj/effect/turf_decal/tile/dark_blue/half{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_half, +/area/station/security/holding_cell) +"bFc" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/chair/office/light{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"bFh" = ( +/obj/effect/spawner/random/maintenance/three, +/obj/structure/rack/shelf, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"bFq" = ( +/obj/effect/turf_decal/stripes/full, +/turf/open/floor/engine, +/area/station/engineering/main) +"bFy" = ( +/obj/machinery/light/small/directional/east, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/maintenance/port/fore) +"bFE" = ( +/turf/open/floor/iron/small, +/area/station/hallway/secondary/entry) +"bFF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Port Secondary Hallway" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/primary/port) +"bFR" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/primary/central/aft) +"bFS" = ( +/obj/machinery/oven/range, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"bGl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"bGp" = ( +/turf/closed/wall, +/area/station/maintenance/abandon_surgery) +"bGt" = ( +/obj/structure/marker_beacon/burgundy, +/obj/machinery/atmospherics/pipe/smart/simple/yellow{ + dir = 10 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/explab) +"bGw" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/cargo/miningoffice) +"bGz" = ( +/turf/open/floor/glass/reinforced, +/area/station/hallway/primary/port) +"bGA" = ( +/turf/open/floor/iron/white/herringbone, +/area/station/medical/patients_rooms) +"bGE" = ( +/obj/machinery/light/cold/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/iron/white, +/area/station/medical/paramedic) +"bGG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior, +/obj/effect/mapping_helpers/airlock/locked, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/maintenance/disposal/incinerator) +"bGR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/iv_drip, +/turf/open/floor/iron/dark, +/area/station/medical/morgue) +"bHr" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/department/science/xenobiology) +"bHB" = ( +/obj/machinery/light/red/directional/east, +/obj/machinery/byteforge, +/turf/open/floor/catwalk_floor, +/area/station/bitrunning/den) +"bHF" = ( +/obj/structure/curtain/cloth/fancy/mechanical{ + id = "backbarbercurtains" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/service/barber) +"bHM" = ( +/obj/structure/frame/machine, +/obj/item/stack/cable_coil/five, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"bIb" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/hallway/secondary/command) +"bIc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/holopad, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/brig/entrance) +"bIg" = ( +/obj/structure/chair, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/carpet/purple, +/area/station/security/courtroom) +"bIn" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/ai_monitored/security/armory) +"bIr" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/effect/spawner/random/maintenance/three, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"bIy" = ( +/obj/structure/stairs/east, +/turf/open/floor/plating, +/area/station/engineering/atmos/storage) +"bIE" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/wood/end, +/obj/machinery/camera/directional/west{ + c_tag = "Departures - Escape Pod Lounge" + }, +/obj/machinery/status_display/ai/directional/west, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/exit/escape_pod) +"bIG" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/engineering/atmos/storage) +"bIK" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners{ + dir = 1 + }, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/iron/checker, +/area/station/maintenance/abandon_diner) +"bIS" = ( +/obj/machinery/button/door/directional/south{ + id = "qm"; + name = "Privacy Shutters Control"; + req_access = list("qm") + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/qm) +"bIZ" = ( +/obj/machinery/light/cold/directional/west, +/obj/machinery/modular_computer/preset/civilian{ + dir = 4 + }, +/turf/open/floor/glass/reinforced, +/area/station/science/research) +"bJd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/brig/entrance) +"bJf" = ( +/obj/machinery/airalarm/directional/south, +/obj/machinery/light/warm/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"bJk" = ( +/obj/machinery/computer/warrant, +/obj/effect/turf_decal/box, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/brig/entrance) +"bJn" = ( +/mob/living/simple_animal/pet/cat, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"bJq" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/cable, +/turf/open/floor/wood, +/area/station/commons/dorms/room1) +"bJB" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, +/obj/machinery/door/airlock/external{ + name = "Xenobiology External Airlock" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, +/turf/open/floor/plating, +/area/station/maintenance/department/science/xenobiology) +"bKk" = ( +/obj/structure/bodycontainer/morgue{ + dir = 8 + }, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/morgue) +"bKl" = ( +/turf/closed/wall/r_wall, +/area/station/engineering/atmos/office) +"bKq" = ( +/obj/effect/turf_decal/lunar_sand, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"bKE" = ( +/obj/machinery/vending/clothing, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/dark/small, +/area/station/common/cryopods) +"bKL" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/light/directional/west, +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/command) +"bKN" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/openspace, +/area/station/hallway/primary/central) +"bKQ" = ( +/obj/effect/turf_decal/tile/red/real_red{ + dir = 1 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Arrivals - CC Bay" + }, +/obj/machinery/light/directional/east, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/white/corner{ + dir = 4 + }, +/area/station/hallway/secondary/entry) +"bLa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/carpet/green, +/area/station/service/library/lounge) +"bLn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/vending/wardrobe/sec_wardrobe, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/security/lockers) +"bLK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/cafeteria{ + dir = 5 + }, +/area/station/service/kitchen/diner) +"bLL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"bLN" = ( +/obj/machinery/space_heater, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/station/engineering/atmos) +"bLR" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"bMb" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/turf/open/floor/glass/reinforced, +/area/station/hallway/primary/central/fore) +"bMu" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "interrogation"; + name = "Privacy Shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/interrogation) +"bMx" = ( +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"bMy" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/ai_monitored/command/nuke_storage) +"bMB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/box, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/explab) +"bMJ" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"bNc" = ( +/obj/structure/railing, +/turf/open/openspace, +/area/station/maintenance/solars/starboard/fore) +"bNf" = ( +/obj/structure/fluff/paper/stack{ + dir = 5 + }, +/obj/structure/fluff/paper{ + dir = 6 + }, +/obj/item/pen, +/turf/open/floor/wood, +/area/station/maintenance/starboard/fore) +"bNi" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/primary/central/aft) +"bND" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"bNG" = ( +/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/large, +/area/station/hallway/secondary/recreation) +"bNL" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners, +/obj/structure/table, +/obj/item/paper_bin/carbon{ + pixel_y = 4 + }, +/obj/item/pen{ + pixel_y = 4 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/dark, +/area/station/science/robotics/lab) +"bOh" = ( +/obj/structure/lattice/catwalk, +/obj/structure/ladder, +/obj/item/radio/intercom/directional/east, +/turf/open/openspace, +/area/station/security/corrections_officer) +"bOj" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar/fourcorners, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/checker, +/area/station/service/kitchen/diner) +"bOr" = ( +/obj/effect/turf_decal/stripes/box, +/obj/machinery/atmospherics/pipe/multiz/yellow/visible{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"bOs" = ( +/obj/effect/turf_decal/tile/yellow/half{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/engineering/lobby) +"bOz" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/theater) +"bOB" = ( +/obj/structure/industrial_lift, +/turf/open/floor/plating, +/area/station/engineering/supermatter/room) +"bOE" = ( +/obj/effect/turf_decal/lunar_sand/plating, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/science/cytology) +"bPa" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/bluespace_sender{ + initialize_directions = 8; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/engineering/atmos/hfr_room) +"bPi" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"bPr" = ( +/obj/structure/curtain/cloth, +/obj/structure/chair/stool/directional/south, +/obj/structure/closet/secure_closet/wall{ + pixel_y = 24 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/white/small, +/area/station/common/spa) +"bPw" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/primary/central/fore) +"bPF" = ( +/obj/structure/chair/comfy/black, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/security/prison) +"bQj" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/service/theatre, +/obj/machinery/door/airlock/service{ + name = "Entertainer Lounge" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/theater) +"bQr" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"bQz" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/service/hydroponics/upper) +"bQD" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/light/small/directional/north, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"bQQ" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/turf/open/floor/plating, +/area/station/engineering/atmos/hfr_room) +"bQR" = ( +/obj/effect/mob_spawn/corpse/human/skeleton, +/obj/item/mod/module/springlock, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) +"bQV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/white/corner, +/turf/open/floor/iron/white/small, +/area/station/science/genetics) +"bRb" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/security/brig/entrance) +"bRn" = ( +/obj/structure/flora/rock/pile/style_random, +/turf/open/misc/asteroid/moon/airless, +/area/station/asteroid) +"bRp" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"bRq" = ( +/obj/effect/turf_decal/lunar_sand/plating, +/obj/machinery/corral_corner{ + mapping_id = "6" + }, +/turf/open/floor/plating, +/area/station/science/xenobiology) +"bRy" = ( +/obj/structure/closet/secure_closet/atmospherics, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos/storage) +"bRA" = ( +/obj/structure/flora/rock/style_random, +/turf/open/misc/asteroid/moon/airless, +/area/station/asteroid) +"bRP" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"bRV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"bSz" = ( +/obj/structure/table/wood, +/obj/item/radio/intercom/directional/west, +/obj/item/radio/radio_mic{ + density = 0 + }, +/turf/open/floor/cult, +/area/station/service/library/private) +"bSS" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/light/small/directional/north, +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/station/cargo/storage) +"bSU" = ( +/obj/structure/table, +/obj/machinery/light/warm/directional/west, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"bSZ" = ( +/turf/closed/wall/r_wall, +/area/station/command/heads_quarters/hos) +"bTb" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"bTe" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/glass/reinforced, +/area/station/hallway/secondary/command) +"bTk" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/checker, +/area/station/hallway/secondary/command) +"bTz" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 8 + }, +/obj/machinery/light/warm/directional/north, +/turf/open/floor/wood, +/area/station/command/heads_quarters/captain) +"bTB" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "Xtestlab"; + name = "Test Chamber Blast Door" + }, +/turf/open/floor/plating, +/area/station/science/xenobiology) +"bTD" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/ai_monitored/command/nuke_storage) +"bTN" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/external{ + name = "External Solar Access" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/open/floor/iron, +/area/station/maintenance/solars/starboard/aft) +"bUf" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/obj/item/radio/intercom/chapel/directional/west, +/turf/open/floor/wood/tile, +/area/station/service/chapel) +"bUy" = ( +/turf/open/openspace, +/area/station/service/library) +"bUF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/camera/directional/south{ + c_tag = "Chapel - Hallway" + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/recreation) +"bUN" = ( +/obj/structure/window/spawner/directional/north, +/obj/structure/window/spawner/directional/east, +/obj/structure/window/spawner/directional/west, +/obj/structure/window/spawner/directional/south, +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/olive, +/turf/open/openspace, +/area/station/commons/fitness/recreation) +"bVk" = ( +/obj/effect/spawner/random/structure/crate, +/obj/effect/spawner/random/maintenance/eight, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"bVo" = ( +/obj/machinery/camera/directional/east{ + c_tag = "Service - Hall"; + network = list("ss13","bar") + }, +/obj/item/radio/intercom/directional/east, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/service) +"bVw" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/pipe_dispenser, +/obj/item/wrench, +/obj/item/clothing/glasses/meson/engine, +/turf/open/floor/iron/dark, +/area/station/maintenance/disposal/incinerator) +"bVE" = ( +/obj/machinery/newscaster/directional/south, +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos/office) +"bVH" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/chair/office{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/tcommsat/computer) +"bVN" = ( +/turf/closed/wall, +/area/station/medical/medbay/central) +"bVO" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/turf/open/space/basic, +/area/space) +"bVU" = ( +/obj/effect/turf_decal/tile/dark_blue, +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/landmark/start/security_officer, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/security/office) +"bVV" = ( +/obj/machinery/button/door/directional/south{ + id = "psych_bolt"; + name = "Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4; + pixel_x = 6 + }, +/obj/machinery/button/door/directional/south{ + id = "psychology"; + name = "Privacy Shutters Control"; + pixel_x = -6 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/tile, +/area/station/medical/psychology) +"bWq" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"bWH" = ( +/turf/closed/wall, +/area/station/security/holding_cell) +"bWI" = ( +/obj/structure/cable, +/turf/open/floor/iron/dark/diagonal, +/area/station/ai_monitored/security/armory) +"bWK" = ( +/obj/machinery/light/warm/directional/west, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/turf_decal/tile/dark_red/anticorner/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/iron/dark, +/area/station/service/chapel) +"bWO" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/station/maintenance/starboard/lesser) +"bWQ" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/department/electrical) +"bWR" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/station/maintenance/port/fore) +"bWT" = ( +/obj/effect/landmark/start/scientist, +/turf/open/floor/glass/reinforced, +/area/station/science/research) +"bXc" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/chair/sofa/left{ + color = "#DE3A3A"; + dir = 1 + }, +/turf/open/floor/wood/tile, +/area/station/service/bar) +"bXk" = ( +/turf/closed/wall, +/area/station/service/janitor) +"bXo" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/large, +/area/station/cargo/storage) +"bXJ" = ( +/obj/effect/turf_decal/tile/dark_blue/half{ + dir = 1 + }, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/smooth_half, +/area/station/security/office) +"bXW" = ( +/turf/open/openspace, +/area/station/maintenance/aft/upper) +"bXZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 9 + }, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"bYc" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/security/office) +"bYd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"bYl" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/camera/directional/south{ + c_tag = "Command Hallway - Starboard" + }, +/obj/machinery/status_display/ai/directional/south, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) +"bYo" = ( +/obj/effect/landmark/start/cook, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"bYq" = ( +/obj/machinery/firealarm/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/green, +/area/station/command/heads_quarters/nt_rep) +"bYs" = ( +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"bYA" = ( +/obj/item/kirbyplants/synthetic/plant29, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/white/herringbone, +/area/station/medical/patients_rooms) +"bYJ" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/primary/starboard) +"bYM" = ( +/obj/structure/cable, +/obj/item/screwdriver{ + pixel_y = 12; + pixel_x = 6 + }, +/obj/effect/turf_decal/box, +/obj/machinery/power/smes/engineering, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"bYO" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/structure/chair/office/light, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"bYR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/central/aft) +"bYW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) +"bZa" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"bZc" = ( +/obj/machinery/door/window/elevator/left/directional/north{ + elevator_mode = 1; + elevator_linked_id = "arrivals_lift" + }, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"bZh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"bZi" = ( +/obj/structure/hedge/opaque, +/obj/structure/window/fulltile, +/turf/open/floor/iron/dark/smooth_large, +/area/station/common/spa) +"bZr" = ( +/obj/structure/chair/wood, +/turf/open/floor/glass, +/area/station/service/kitchen) +"bZx" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"bZy" = ( +/obj/structure/kitchenspike, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/blood/innards, +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 9 + }, +/turf/open/floor/iron/freezer, +/area/station/maintenance/abandon_diner) +"bZE" = ( +/obj/structure/sink/directional/west, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/service/hydroponics/garden) +"bZZ" = ( +/obj/structure/hedge/opaque, +/obj/structure/window/reinforced/tinted/fulltile, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/chapel/office) +"cac" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"cai" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Gas to Mix" + }, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"caw" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/security/telescreen{ + name = "Cargo Camera Monitor"; + network = list("cargo"); + pixel_y = 3 + }, +/obj/machinery/requests_console/auto_name/directional/north, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/mapping_helpers/requests_console/information, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/security/checkpoint/supply) +"caC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/box/corners, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos/office) +"caG" = ( +/turf/closed/wall, +/area/station/service/lawoffice) +"caJ" = ( +/obj/machinery/computer/atmos_control/nitrous_tank, +/obj/effect/turf_decal/box, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/light/warm/directional/north, +/obj/structure/fireaxecabinet/directional/north, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos/upper) +"caM" = ( +/obj/machinery/computer/atmos_control/plasma_tank, +/obj/effect/turf_decal/box, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos/upper) +"cbx" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/aux_base, +/obj/machinery/door/airlock/external/glass{ + name = "Auxiliary Base External Access" + }, +/turf/open/floor/plating, +/area/station/construction/mining/aux_base) +"cbz" = ( +/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white, +/area/station/ai_monitored/turret_protected/ai_upload) +"cbG" = ( +/obj/effect/turf_decal/tile/blue/full, +/obj/effect/turf_decal/tile/dark_blue/full, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/bridge) +"cbO" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch" + }, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/hallway/secondary/recreation) +"cbZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"cci" = ( +/obj/effect/landmark/observer_start, +/turf/open/floor/glass/reinforced, +/area/station/hallway/primary/central/fore) +"cck" = ( +/obj/machinery/holopad, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"ccK" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Desk" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/medbay/lobby) +"ccQ" = ( +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/button/door/directional/north{ + id = "engsm"; + name = "Radiation Shutters Control"; + req_access = list("engineering") + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"ccZ" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/checker{ + dir = 1 + }, +/area/station/hallway/secondary/command) +"cdd" = ( +/obj/machinery/teleport/station, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/box, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/aisat/teleporter) +"cdg" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/obj/machinery/airalarm/directional/east, +/obj/machinery/light/warm/directional/east, +/turf/open/floor/carpet/purple, +/area/station/service/barber) +"cdi" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + desc = "A door remote control switch for the interior brig doors."; + id = "innerbrig"; + name = "Brig Interior Door Control"; + normaldoorcontrol = 1; + pixel_x = 6; + pixel_y = 7; + req_access = list("security") + }, +/obj/machinery/button/flasher{ + id = "secentranceflasher"; + name = "Brig Entrance Flasher"; + pixel_y = -3; + req_access = list("security") + }, +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/security/warden) +"cdl" = ( +/obj/machinery/door/airlock/engineering{ + name = "Auxiliary Base Construction" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/aux_base, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/smooth_large, +/area/station/cargo/lobby) +"cdt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"cdx" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/effect/turf_decal/loading_area, +/obj/machinery/door/window/elevator/right/directional/north{ + elevator_mode = 1; + elevator_linked_id = "cargo_lobbylift" + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"cdH" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"cdL" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/airalarm/directional/north, +/obj/machinery/light/warm/directional/north, +/obj/structure/closet/secure_closet/detective, +/obj/item/camera/detective, +/obj/item/restraints/handcuffs{ + pixel_y = -7 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/wood/tile, +/area/station/security/detectives_office) +"cdN" = ( +/obj/machinery/air_sensor/ordnance_burn_chamber, +/turf/open/floor/engine/vacuum, +/area/station/science/ordnance/burnchamber) +"cdT" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Cargo - Bitrunner Office" + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/chair/plastic{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/cargo/storage) +"cdV" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/machinery/camera/directional/west{ + c_tag = "Upper Central Primary Hallway - Paramedic Dispatch" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/side{ + dir = 9 + }, +/area/station/hallway/primary/central/fore) +"cdX" = ( +/obj/machinery/door/airlock{ + id_tag = "private_3"; + name = "Private Quarters 3" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms/room3) +"cdY" = ( +/obj/structure/ladder, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"cea" = ( +/obj/effect/turf_decal/tile/dark_red/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/service/chapel) +"cek" = ( +/obj/item/borg/upgrade/rename{ + pixel_y = 14; + pixel_x = -6 + }, +/obj/item/borg/upgrade/rename{ + pixel_y = 12 + }, +/obj/item/storage/toolbox/electrical{ + pixel_x = 7; + pixel_y = 2 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 5; + pixel_y = -8 + }, +/obj/structure/table, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/iron/small, +/area/station/science/robotics/lab) +"ceE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/ai_monitored/command/storage/eva) +"ceI" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral/full, +/obj/machinery/button/door/directional/south{ + id = "z1-maint-crates"; + name = "Abandoned Storage Shutters Control" + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/maintenance/aft/greater) +"ceN" = ( +/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/machinery/newscaster/directional/east, +/obj/machinery/light/warm/directional/east, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/box, +/obj/machinery/disposal/bin, +/turf/open/floor/iron/dark, +/area/station/cargo/lobby) +"ceQ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light/small/directional/west, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"ceW" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/pump, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos) +"ceZ" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 3; + pixel_x = 3 + }, +/obj/item/clothing/head/utility/welding, +/obj/item/multitool, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"cfg" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/iron, +/area/station/engineering/lobby) +"cfo" = ( +/obj/effect/turf_decal/siding/dark_blue{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command/meeting_room/council) +"cfC" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/command/gateway) +"cfF" = ( +/obj/effect/turf_decal/tile/purple/half, +/obj/item/radio/intercom/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/landmark/start/research_director, +/turf/open/floor/iron/white/smooth_edge, +/area/station/command/heads_quarters/rd) +"cfR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/effect/turf_decal/tile/dark/diagonal_edge, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/execution/education) +"cgo" = ( +/obj/machinery/door/airlock/external/glass{ + name = "External Ordinance Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "sci-ordnance" + }, +/turf/open/floor/plating, +/area/station/science/ordnance) +"cgy" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/cup/glass/mug{ + pixel_y = 8 + }, +/obj/item/reagent_containers/cup/glass/mug{ + pixel_x = -6 + }, +/obj/item/reagent_containers/cup/glass/mug{ + pixel_x = 6 + }, +/obj/structure/cable, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/iron/dark, +/area/station/command/meeting_room/council) +"cgP" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/railing{ + dir = 5 + }, +/turf/open/openspace, +/area/station/science/ordnance/office) +"cgQ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/station_map/engineering/directional/east, +/turf/open/floor/iron/white/side{ + dir = 4 + }, +/area/station/hallway/primary/central/fore) +"cgY" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_red/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/service/chapel) +"chn" = ( +/obj/structure/disposalpipe/junction/yjunction, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/white/corner{ + dir = 1 + }, +/area/station/hallway/primary/central/fore) +"chH" = ( +/obj/machinery/pdapainter, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/machinery/requests_console/auto_name/directional/south, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/mapping_helpers/requests_console/announcement, +/obj/effect/mapping_helpers/requests_console/information, +/obj/item/stamp/head/hop{ + pixel_y = 12 + }, +/obj/item/stamp{ + pixel_y = 6; + pixel_x = 6 + }, +/obj/item/stamp/denied{ + pixel_y = 6; + pixel_x = -6 + }, +/turf/open/floor/wood, +/area/station/command/heads_quarters/hop) +"chN" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"cik" = ( +/obj/machinery/conveyor{ + id = "garbage" + }, +/obj/effect/turf_decal/stripes/full, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/disposal) +"cir" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 8 + }, +/mob/living/basic/cockroach, +/obj/structure/cable, +/turf/open/floor/iron/checker, +/area/station/maintenance/abandon_diner) +"civ" = ( +/obj/machinery/growing/tray, +/obj/effect/turf_decal/tile/green/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron, +/area/station/maintenance/abandon_cafeteria/hydro) +"ciK" = ( +/obj/effect/turf_decal/siding/white{ + dir = 10 + }, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/machinery/washing_machine, +/obj/machinery/camera/directional/north{ + c_tag = "Dormitories - Locker Room" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms) +"ciL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/iron/dark/side, +/area/station/engineering/atmos/hfr_room) +"ciS" = ( +/obj/structure/chair/office, +/obj/item/radio/intercom/directional/west, +/obj/machinery/light/warm/directional/west, +/obj/effect/landmark/start/detective, +/turf/open/floor/wood/parquet, +/area/station/security/detectives_office) +"ciW" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"ciZ" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/command/teleporter) +"cja" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/security/processing) +"cjn" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"cju" = ( +/turf/closed/wall/r_wall, +/area/station/science/robotics/augments) +"cjB" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/command/hop, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/obj/machinery/door/airlock/command/glass{ + name = "Customs Post" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/entry) +"cjF" = ( +/obj/structure/cable, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/main) +"cjP" = ( +/obj/structure/lattice/catwalk, +/obj/structure/closet/toolcloset, +/obj/effect/landmark/start/hangover/closet, +/turf/open/openspace, +/area/station/commons/storage/tools) +"cjS" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "pharmacy_shutters_1"; + name = "Pharmacy Shutters"; + dir = 1 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/pharmacy) +"cjZ" = ( +/turf/closed/wall/r_wall, +/area/station/engineering/lobby) +"ckh" = ( +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + color = "#ff0000"; + dir = 4; + name = "Scrubbers multi deck pipe adapter" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"cks" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/station/service/chapel) +"ckT" = ( +/obj/effect/turf_decal/tile/neutral/half{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/medical/morgue) +"clh" = ( +/obj/effect/turf_decal/tile/green/opposingcorners, +/obj/machinery/digital_clock/directional/south, +/turf/open/floor/iron/checker{ + dir = 1 + }, +/area/station/hallway/primary/central/fore) +"clk" = ( +/obj/structure/drain{ + pixel_x = 16; + pixel_y = 16 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron/freezer, +/area/station/security/prison) +"cly" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line, +/obj/structure/cable, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"clW" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/engineering/storage) +"cmc" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/landmark/start/scientist, +/turf/open/floor/iron/dark/small, +/area/station/science/circuits) +"cmi" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/command) +"cmj" = ( +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/white/diagonal, +/area/station/commons/toilet/restrooms) +"cmn" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/rack/shelf, +/obj/structure/railing{ + dir = 8 + }, +/obj/item/screwdriver{ + pixel_y = 5 + }, +/obj/item/crowbar, +/obj/item/mop, +/obj/item/reagent_containers/cup/bucket{ + pixel_x = 6; + pixel_y = -3 + }, +/obj/item/toy/figure/janitor{ + pixel_y = 16; + pixel_x = 7 + }, +/turf/open/floor/iron/dark, +/area/station/service/janitor) +"cmp" = ( +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/security{ + id_tag = "IsolationCell"; + name = "Isolation Cell" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/prison) +"cmu" = ( +/obj/machinery/light/warm/directional/west, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"cmy" = ( +/obj/structure/closet/secure_closet/medical1{ + anchored = 1 + }, +/obj/item/blood_filter, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/white/small, +/area/station/medical/surgery/fore) +"cmB" = ( +/obj/structure/sink/directional/east, +/obj/structure/mirror/directional/west, +/obj/effect/landmark/start/hangover, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/white/small, +/area/station/commons/toilet/restrooms) +"cmF" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space/basic, +/area/space/nearstation) +"cmM" = ( +/obj/effect/turf_decal/tile/green/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/checker, +/area/station/hallway/primary/central/fore) +"cmN" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/ai_monitored/command/nuke_storage) +"cmQ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/obj/structure/table, +/obj/item/storage/briefcase/secure{ + pixel_y = 7 + }, +/obj/item/storage/lockbox/loyalty{ + pixel_y = 2 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/command/heads_quarters/hop) +"cmV" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/kitchen) +"cmX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/engine, +/area/station/security/eva) +"cnc" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/spawner/random/trash/garbage, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"cnj" = ( +/obj/structure/chair/stool/directional/north, +/obj/structure/closet/secure_closet/wall{ + pixel_x = -24 + }, +/obj/machinery/light/small/directional/south, +/obj/item/clothing/under/costume/nova/bathrobe, +/turf/open/floor/iron/small, +/area/station/service/salon) +"cnn" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/cable/layer1, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/cable/layer3, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/ai) +"cnq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"cnw" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/open/floor/engine, +/area/station/engineering/atmos) +"cnx" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/commons/storage/tools) +"cnF" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/glass/reinforced, +/area/station/hallway/secondary/exit) +"cnJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"cnK" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"cnP" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/light/cold/directional/north, +/obj/machinery/component_printer, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"cnQ" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/machinery/button/door/directional/east{ + id = "teleaccess"; + name = "Teleportation Shutters"; + req_access = list("command") + }, +/obj/effect/turf_decal/caution, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"cnT" = ( +/obj/structure/dresser, +/obj/item/toy/plush/nova/ian/small{ + pixel_y = 17; + pixel_x = -3 + }, +/obj/item/toy/plush/nova/ian/lisa{ + pixel_y = 13; + pixel_x = 5 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/wood, +/area/station/command/heads_quarters/hop) +"cnZ" = ( +/obj/effect/turf_decal/tile/bar/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/sorting/mail/flip, +/obj/effect/mapping_helpers/mail_sorting/service/janitor_closet, +/turf/open/floor/iron/checker, +/area/station/service/kitchen/diner) +"cog" = ( +/obj/structure/disposalpipe/broken{ + dir = 4 + }, +/obj/structure/disposalpipe/broken{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"coi" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"con" = ( +/obj/structure/lattice/catwalk, +/obj/structure/sign/warning/cold_temp/directional/south, +/turf/open/space/basic, +/area/space/nearstation) +"cop" = ( +/turf/closed/wall, +/area/station/science/circuits) +"cor" = ( +/obj/structure/table/reinforced, +/obj/effect/spawner/random/food_or_drink/donkpockets{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/storage/fancy/coffee_cart_rack{ + pixel_x = -8; + pixel_y = 6 + }, +/obj/structure/sign/poster/official/random/directional/south, +/turf/open/floor/wood/large, +/area/station/science/breakroom) +"cot" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/door/firedoor/border_only, +/turf/open/openspace, +/area/station/science/xenobiology) +"cou" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/common/wrestling/arena) +"coy" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/blue/line, +/obj/structure/cable, +/obj/structure/cable/layer1, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/structure/cable/layer3, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/ai) +"coA" = ( +/obj/machinery/light/directional/south, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"coH" = ( +/obj/machinery/door/airlock/freezer{ + critical_machine = 1; + name = "Gamer Den" + }, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"coI" = ( +/obj/structure/chair/comfy/teal, +/obj/machinery/button/curtain{ + id = "blueshield"; + pixel_x = 10; + pixel_y = 24 + }, +/turf/open/floor/carpet/cyan, +/area/station/command/heads_quarters/blueshield) +"coK" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/table, +/obj/structure/desk_bell{ + pixel_x = 5 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"coM" = ( +/obj/structure/chair/stool/directional/north, +/turf/open/floor/wood, +/area/station/maintenance/aft/greater) +"coS" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/green/opposingcorners, +/obj/machinery/light/directional/north, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/checker{ + dir = 1 + }, +/area/station/common/wrestling/arena) +"cpm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) +"cpO" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) +"cpZ" = ( +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Holodeck Arcade Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/turf/open/floor/plating, +/area/station/common/arcade) +"cql" = ( +/obj/structure/bed/dogbed{ + anchored = 1; + name = "Poppy's bed" + }, +/mob/living/basic/pet/poppy, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"cqr" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/interrogation) +"cqF" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/hedge, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen_privacy"; + name = "Kitchen Privacy Shutters" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/cafeteria{ + dir = 5 + }, +/area/station/service/kitchen) +"cqO" = ( +/turf/open/openspace, +/area/station/hallway/secondary/exit) +"cqQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/escape) +"crg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/coffin, +/obj/item/toy/figure/chaplain, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"crh" = ( +/obj/effect/turf_decal/siding/dark, +/turf/open/floor/glass, +/area/station/service/barber) +"crm" = ( +/obj/machinery/digital_clock/directional/north, +/obj/effect/landmark/start/warden, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/warden) +"cru" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4 + }, +/obj/effect/mapping_helpers/mail_sorting/service/kitchen, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"crI" = ( +/obj/machinery/telecomms/processor/preset_three, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/station/tcommsat/server) +"crO" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "pharmacy_shutters_1"; + name = "Pharmacy Shutters"; + dir = 1 + }, +/obj/machinery/door/window/right/directional/north{ + name = "Pharmacy Desk"; + req_access = list("pharmacy") + }, +/obj/item/reagent_containers/syringe{ + pixel_y = -5 + }, +/obj/item/reagent_containers/dropper, +/obj/effect/turf_decal/tile/yellow/half, +/obj/item/clothing/glasses/science{ + pixel_y = 4; + pixel_x = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/smooth_edge, +/area/station/medical/pharmacy) +"crS" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/commons/dorms) +"crT" = ( +/obj/structure/bed/double, +/obj/effect/spawner/random/bedsheet/double, +/turf/open/floor/wood, +/area/station/commons/dorms/room2) +"crV" = ( +/turf/closed/wall/r_wall, +/area/station/science/ordnance/testlab) +"crW" = ( +/obj/structure/table, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"csa" = ( +/obj/effect/turf_decal/tile/dark_red/half{ + dir = 1 + }, +/obj/structure/chair/office/light, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/roboticist, +/turf/open/floor/iron/dark/smooth_half, +/area/station/science/robotics/lab) +"cse" = ( +/obj/docking_port/stationary{ + dir = 8; + height = 12; + name = "Auxiliary NT Station Dock"; + shuttle_id = "whiteship_home"; + width = 25; + dwidth = 16 + }, +/turf/open/space/basic, +/area/space) +"csv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"csF" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/light_switch/directional/east, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/commons/dorms/room4) +"csN" = ( +/obj/structure/bodycontainer/morgue{ + dir = 8 + }, +/obj/effect/turf_decal/bot_white, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/chapel/funeral) +"csV" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Cargo Lobby" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/dark/smooth_large, +/area/station/cargo/lobby) +"csW" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/entry) +"ctc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/table/reinforced, +/obj/item/grenade/barrier{ + pixel_y = 10; + pixel_x = 6 + }, +/obj/item/grenade/barrier{ + pixel_y = 9; + pixel_x = -6 + }, +/obj/item/grenade/barrier{ + pixel_y = 5 + }, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/engine, +/area/station/ai_monitored/security/armory) +"ctf" = ( +/turf/closed/wall, +/area/station/commons/toilet/auxiliary) +"ctM" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners, +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/service/chapel/office) +"cub" = ( +/obj/effect/spawner/random/trash/box, +/obj/effect/spawner/random/engineering/vending_restock, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"cui" = ( +/obj/effect/turf_decal/tile/blue/full, +/obj/effect/landmark/start/paramedic, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/paramedic) +"cum" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/camera/directional/east{ + c_tag = "Engineering - HFR Access"; + network = list("ss13","engine") + }, +/obj/structure/cable, +/turf/open/openspace, +/area/station/engineering/main) +"cup" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"cuz" = ( +/obj/docking_port/stationary/public_mining_dock{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/construction/mining/aux_base) +"cuJ" = ( +/obj/item/toy/figure/assistant{ + pixel_y = 17; + pixel_x = -7 + }, +/turf/open/floor/iron/dark/small, +/area/station/commons/dorms/room4) +"cuN" = ( +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/service/chapel/funeral) +"cuV" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central) +"cvs" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/security/prison) +"cvt" = ( +/obj/machinery/airalarm/directional/east, +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/wood/end{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/commons/storage/mining) +"cvG" = ( +/obj/effect/turf_decal/tile/dark_blue, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark/corner, +/area/station/security/processing) +"cvH" = ( +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/service) +"cvO" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/ordnance_freezer_chamber_input, +/turf/open/floor/engine/vacuum, +/area/station/science/ordnance/freezerchamber) +"cwk" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/station/service/library/lounge) +"cwl" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/door/window/left/directional/west{ + name = "Engineering Deliveries"; + req_access = list("engineering") + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + location = "Engineering" + }, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/iron/large, +/area/station/engineering/lobby) +"cwE" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark/corner, +/area/station/commons/dorms) +"cwF" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "kitchen_privacy"; + name = "Kitchen Privacy Shutters" + }, +/turf/open/floor/iron/cafeteria{ + dir = 5 + }, +/area/station/service/kitchen) +"cwY" = ( +/obj/machinery/button/door/directional/south{ + id = "cmoshutter"; + name = "CMO Office Shutters"; + pixel_x = 8; + pixel_y = -26; + req_access = list("cmo") + }, +/obj/machinery/keycard_auth/directional/south{ + pixel_x = -5 + }, +/obj/machinery/modular_computer/preset/id{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/obj/machinery/computer/security/telescreen/cmo{ + pixel_y = -26; + pixel_x = -26; + dir = 1 + }, +/obj/machinery/camera/directional/south{ + c_tag = "Medbay - Chief Medical Officer's Office"; + network = list("ss13","medbay") + }, +/turf/open/floor/carpet/blue, +/area/station/command/heads_quarters/cmo) +"cxa" = ( +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"cxb" = ( +/obj/machinery/status_display/ai/directional/east, +/obj/effect/turf_decal/tile/bar/fourcorners, +/obj/structure/table, +/obj/item/plate, +/turf/open/floor/iron/checker, +/area/station/service/kitchen/diner) +"cxu" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/white/smooth_edge{ + dir = 1 + }, +/area/station/medical/treatment_center) +"cxD" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"cxS" = ( +/obj/structure/lattice, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/window/spawner/directional/west, +/obj/structure/window/spawner/directional/east, +/turf/open/openspace, +/area/station/service/hydroponics/upper) +"cxW" = ( +/obj/structure/closet/crate/trashcart/filled, +/obj/effect/spawner/random/maintenance/two, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"cxY" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/siding/white{ + dir = 6 + }, +/obj/effect/turf_decal/box, +/obj/machinery/firealarm/directional/north, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/light/cold/directional/west, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/toilet/restrooms) +"cyb" = ( +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/command/storage/eva) +"cyr" = ( +/obj/effect/spawner/random/trash/food_packaging, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"cyv" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/table, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/scanning_module, +/obj/item/stock_parts/scanning_module, +/obj/item/stock_parts/micro_laser, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/iron/white/side{ + dir = 1 + }, +/area/station/science/research) +"cyU" = ( +/obj/item/clothing/gloves/color/yellow, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/structure/closet/toolcloset, +/obj/item/storage/belt/utility, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/light/warm/directional/east, +/turf/open/floor/iron, +/area/station/engineering/main) +"cyX" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/maintenance/fore/lesser) +"cyZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"czd" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"czx" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/fueltank/large, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron, +/area/station/engineering/supermatter/room) +"czB" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced/tinted, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "AI Chamber Entrance Shutters"; + name = "AI Chamber Entrance Shutters"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/plating, +/area/station/ai_monitored/turret_protected/ai) +"czI" = ( +/obj/effect/turf_decal/lunar_sand/plating, +/obj/effect/turf_decal/lunar_sand, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"czQ" = ( +/obj/machinery/door/window/left/directional/east{ + name = "Medbay Front Desk"; + req_access = list("medical") + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/white/end, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/item/paper_bin{ + pixel_y = 5 + }, +/obj/item/pen{ + pixel_y = 5 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/medbay/lobby) +"czS" = ( +/obj/effect/turf_decal/tile/green/opposingcorners, +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/hallway/primary/central/fore) +"czU" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/solars/port/fore) +"cAb" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Courtroom Maintenance" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/security/courtroom) +"cAc" = ( +/obj/structure/sign/poster/random/directional/south, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"cAd" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/hallway/primary/central/aft) +"cAj" = ( +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/entry) +"cAo" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"cAp" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/orange/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/open/floor/iron, +/area/station/maintenance/disposal/incinerator) +"cAu" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/machinery/airalarm/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/dark, +/area/station/commons/storage/primary) +"cAv" = ( +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"cAF" = ( +/obj/machinery/telecomms/processor/preset_one, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/station/tcommsat/server) +"cAG" = ( +/obj/structure/chair/sofa/bench/right, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"cAK" = ( +/obj/machinery/atmospherics/pipe/multiz/cyan/visible, +/obj/effect/turf_decal/stripes/end, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/effect/mapping_helpers/apc/cell_10k, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"cAP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"cAZ" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"cBd" = ( +/obj/structure/table/wood, +/obj/machinery/door/window/brigdoor/left/directional/south{ + name = "Captain's Desk"; + req_access = list("captain") + }, +/obj/machinery/firealarm/directional/west, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/item/pizzabox/random{ + pixel_y = 10 + }, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain) +"cBn" = ( +/obj/structure/closet/crate/large{ + name = "doublebeard wine crate" + }, +/obj/item/reagent_containers/cup/glass/bottle/wine{ + pixel_x = 6 + }, +/obj/item/reagent_containers/cup/glass/bottle/wine{ + pixel_x = -6 + }, +/turf/open/floor/stone, +/area/station/maintenance/starboard/fore) +"cBs" = ( +/turf/open/floor/iron/dark, +/area/station/medical/morgue) +"cBI" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/structure/chair/stool/directional/east, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"cBJ" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/openspace, +/area/station/maintenance/solars/port/aft) +"cBK" = ( +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/rods/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/stock_parts/cell/high, +/obj/item/stack/sheet/mineral/plasma{ + amount = 30 + }, +/obj/structure/closet/crate/engineering, +/obj/item/gps/engineering, +/turf/open/floor/plating, +/area/station/engineering/storage_shared) +"cBM" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/processing) +"cBR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/central/fore) +"cBS" = ( +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/medical/morgue) +"cCg" = ( +/obj/machinery/vending/wardrobe/sec_wardrobe, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/checkpoint/customs) +"cCi" = ( +/turf/closed/wall/r_wall, +/area/station/engineering/storage) +"cCu" = ( +/obj/machinery/camera/directional/west{ + c_tag = "Central Primary Hallway - Paramedic Dispatch Access" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"cCG" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/item/storage/box/lights/mixed{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/service/janitor) +"cCY" = ( +/obj/machinery/computer/camera_advanced/base_construction/aux, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/construction/mining/aux_base) +"cDe" = ( +/obj/machinery/button/door/directional/west{ + id = "private_5"; + name = "Privacy Bolts"; + normaldoorcontrol = 1; + pixel_y = 9; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/commons/dorms/room5) +"cDo" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/security/processing) +"cDt" = ( +/obj/effect/turf_decal/tile/yellow/half{ + dir = 1 + }, +/obj/effect/landmark/start/chemist, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/white/smooth_edge{ + dir = 1 + }, +/area/station/medical/pharmacy) +"cDu" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor/left/directional/east{ + req_access = list("captain"); + name = "High-Risk Modules" + }, +/obj/effect/spawner/random/aimodule/harmful, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/north, +/turf/open/floor/circuit/red, +/area/station/ai_monitored/turret_protected/ai_upload) +"cDz" = ( +/turf/closed/wall/r_wall, +/area/station/science/breakroom) +"cDC" = ( +/obj/machinery/shower/directional/south, +/obj/effect/spawner/random/trash/soap, +/turf/open/floor/iron/freezer, +/area/station/security/prison) +"cDG" = ( +/obj/effect/turf_decal/tile/neutral/half{ + dir = 8 + }, +/obj/effect/turf_decal/bot_white, +/obj/structure/bed/roller, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/medical/morgue) +"cDK" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/space/basic, +/area/space/nearstation) +"cDP" = ( +/obj/effect/turf_decal/bot_white, +/obj/structure/closet/crate/hydroponics{ + name = "Beekeeper Starter Kit" + }, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/queen_bee/bought, +/obj/item/melee/flyswatter, +/obj/item/clothing/suit/utility/beekeeper_suit, +/obj/item/clothing/suit/utility/beekeeper_suit, +/obj/item/clothing/head/utility/beekeeper_head, +/obj/item/clothing/head/utility/beekeeper_head, +/obj/structure/railing, +/obj/machinery/camera/directional/east{ + c_tag = "Hydroponics - Office" + }, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/iron/large, +/area/station/service/hydroponics) +"cDY" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/chemical_manufacturer, +/obj/item/integrated_circuit/chemical, +/obj/item/multitool, +/obj/item/stock_parts/cell/high, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"cEh" = ( +/obj/structure/sign/poster/random/directional/north, +/obj/effect/spawner/random/engineering/canister, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"cEk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/dark/visible/layer2, +/obj/machinery/meter/layer2, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/iron/white/side{ + dir = 1 + }, +/area/station/science/ordnance) +"cEn" = ( +/obj/machinery/computer/security{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/half, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/security/corrections_officer) +"cEu" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"cEw" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/light/warm/directional/east, +/obj/machinery/vending/wardrobe/det_wardrobe, +/turf/open/floor/iron/grimy, +/area/station/security/detectives_office) +"cES" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/iron/small, +/area/station/engineering/atmos/office) +"cFf" = ( +/obj/machinery/air_sensor/plasma_tank, +/turf/open/floor/engine/plasma, +/area/station/engineering/atmos/upper) +"cFg" = ( +/obj/effect/spawner/random/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"cFp" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/dark_blue{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/command/meeting_room/council) +"cFv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/quartermaster, +/turf/open/floor/carpet/black, +/area/station/command/heads_quarters/qm) +"cFC" = ( +/obj/effect/turf_decal/tile/red/real_red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"cFP" = ( +/obj/effect/turf_decal/lunar_sand/plating, +/obj/structure/table, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/item/storage/box/petridish{ + pixel_x = -5; + pixel_y = 8 + }, +/obj/item/reagent_containers/cup/beaker{ + pixel_x = 14; + pixel_y = 12 + }, +/obj/item/storage/box/petridish{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/item/reagent_containers/dropper{ + pixel_y = -12 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/science/cytology) +"cFW" = ( +/obj/effect/spawner/random/trash/food_packaging, +/obj/structure/bed/dogbed, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"cGc" = ( +/obj/structure/sign/directions/evac/directional/south{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) +"cGd" = ( +/obj/structure/railing{ + dir = 10 + }, +/turf/open/openspace, +/area/station/hallway/primary/central) +"cGo" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"cGv" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"cGz" = ( +/turf/closed/wall, +/area/station/service/kitchen/coldroom) +"cGF" = ( +/obj/effect/spawner/random/structure/steam_vent, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"cGH" = ( +/turf/open/openspace, +/area/station/maintenance/solars/starboard/fore) +"cGK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/three, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"cGS" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/openspace, +/area/station/maintenance/starboard/fore) +"cHr" = ( +/obj/structure/railing, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/departure_lounge) +"cHA" = ( +/obj/item/poster/random_official, +/obj/effect/spawner/random/maintenance, +/obj/effect/spawner/random/structure/table_or_rack, +/obj/item/wrench, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"cHI" = ( +/obj/machinery/door/airlock/hatch{ + name = "Maintenance Hatch" + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"cHK" = ( +/obj/docking_port/stationary{ + dir = 1; + dwidth = 2; + height = 13; + name = "port bay 2"; + shuttle_id = "ferry_home"; + width = 5 + }, +/turf/open/space/openspace, +/area/space) +"cHO" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/security/sec, +/turf/open/floor/engine, +/area/station/security/lockers) +"cIj" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/station/engineering/lobby) +"cIz" = ( +/obj/item/rack_parts, +/obj/effect/spawner/random/engineering/tool, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"cIH" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"cIJ" = ( +/obj/machinery/computer/shuttle/mining{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/box, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"cIQ" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/hallway/primary/central) +"cIZ" = ( +/obj/structure/chair/office/light, +/turf/open/floor/glass/reinforced, +/area/station/science/research) +"cJh" = ( +/obj/structure/hedge, +/obj/structure/window/reinforced/tinted/fulltile, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/courtroom) +"cJj" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/machinery/door/airlock/security/glass{ + name = "Equipment Room" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/lockers) +"cJs" = ( +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"cJt" = ( +/obj/structure/closet/crate/freezer/blood, +/obj/effect/turf_decal/bot_red, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/iron/showroomfloor, +/area/station/medical/coldroom) +"cJC" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/turf_decal/tile/dark_red{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/science/robotics/augments) +"cJD" = ( +/obj/structure/ore_box, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/large, +/area/station/commons/storage/mining) +"cJE" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"cJI" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/cargo/drone_bay) +"cJP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"cJS" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/bot, +/obj/machinery/space_heater, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/storage/mining) +"cJW" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_half, +/area/station/ai_monitored/turret_protected/aisat_interior) +"cKv" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light/small/directional/east, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"cKx" = ( +/obj/effect/spawner/random/maintenance, +/obj/structure/disposalpipe/segment, +/obj/machinery/light/small/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/maintenance/port/fore) +"cKA" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/fluff/paper/corner, +/obj/structure/table/wood, +/obj/item/paper/secretrecipe{ + pixel_y = 6; + pixel_x = -2 + }, +/obj/item/flashlight/lamp/green{ + pixel_y = 16; + pixel_x = -5 + }, +/obj/item/paper{ + default_raw_text = "buy more donk pockets"; + name = "To-Do List"; + pixel_x = 2 + }, +/turf/open/floor/wood, +/area/station/maintenance/starboard/fore) +"cKF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/departure_lounge) +"cKI" = ( +/obj/effect/turf_decal/bot, +/obj/structure/railing, +/obj/structure/rack/shelf, +/obj/structure/cable, +/obj/item/mod/module/plasma_stabilizer, +/obj/item/mod/module/signlang_radio, +/obj/item/mod/module/thermal_regulator, +/turf/open/floor/iron, +/area/station/engineering/supermatter/room) +"cKN" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/bronze, +/turf/open/space/openspace, +/area/space/nearstation) +"cKO" = ( +/obj/structure/railing, +/obj/structure/marker_beacon/burgundy, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/gateway) +"cLc" = ( +/obj/structure/lattice, +/obj/structure/window/spawner/directional/south, +/obj/structure/window/spawner/directional/north, +/turf/open/openspace, +/area/station/cargo/drone_bay) +"cLg" = ( +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"cLl" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/grass, +/area/station/service/hydroponics/upper) +"cLm" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/side, +/area/station/hallway/primary/starboard) +"cLx" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/conveyor_switch/oneway{ + id = "cargodisposals"; + name = "Deliveries Conveyor"; + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/cargo/sorting) +"cLC" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"cLF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden, +/obj/structure/reagent_dispensers/plumbed{ + name = "medbay water reservoir" + }, +/obj/machinery/firealarm/directional/south, +/obj/machinery/camera/directional/south{ + c_tag = "Medbay - Cryogenics"; + network = list("ss13","medbay") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/medical/treatment_center) +"cLH" = ( +/obj/structure/stairs/west, +/turf/open/floor/plating, +/area/station/service/salon) +"cLK" = ( +/obj/effect/decal/cleanable/glass, +/obj/effect/decal/cleanable/generic, +/obj/item/shard, +/turf/open/floor/engine, +/area/station/medical/chemistry) +"cLL" = ( +/obj/effect/turf_decal/stripes/blue/line, +/obj/machinery/button/door/directional/west{ + id = "armory"; + name = "Armory Shutters Control"; + req_access = list("security") + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/ai_monitored/security/armory) +"cLT" = ( +/obj/effect/turf_decal/tile/dark_blue, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/iron/dark/smooth_corner, +/area/station/security/brig) +"cLU" = ( +/obj/structure/cable/multilayer/multiz, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/obj/machinery/light/small/directional/north, +/obj/structure/railing{ + dir = 10 + }, +/obj/structure/lattice, +/turf/open/openspace, +/area/station/engineering/atmos/upper) +"cLW" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/o2{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos) +"cMb" = ( +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Waste Input" + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/hfr_room) +"cMr" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/corner, +/obj/structure/cable, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"cMt" = ( +/obj/machinery/computer/robotics{ + dir = 1 + }, +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/tile/blue/half/contrasted, +/obj/effect/turf_decal/tile/purple/half/contrasted, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/iron/white/corner{ + dir = 1 + }, +/area/station/security/checkpoint/science/research) +"cMv" = ( +/obj/structure/cable, +/obj/effect/landmark/start/head_of_personnel, +/turf/open/floor/carpet/executive, +/area/station/command/heads_quarters/hop) +"cMH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/small/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"cMM" = ( +/obj/structure/lattice/catwalk, +/obj/structure/transit_tube/station/dispenser/reverse{ + dir = 4 + }, +/turf/open/openspace, +/area/station/construction/mining/aux_base) +"cMN" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/dark_blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_corner, +/area/station/command/bridge) +"cMO" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 8 + }, +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central/aft) +"cNa" = ( +/obj/structure/disposalpipe/sorting/mail/flip, +/obj/effect/mapping_helpers/mail_sorting/service/library, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"cNz" = ( +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ + color = "#0000ff"; + name = "Supply multi deck pipe adapter"; + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"cNA" = ( +/obj/structure/table, +/obj/item/reagent_containers/cup/bottle/toxin{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/item/reagent_containers/cup/bottle/facid{ + name = "fluorosulfuric acid bottle"; + pixel_x = -3; + pixel_y = 6 + }, +/obj/item/reagent_containers/cup/bottle/morphine{ + pixel_x = 5; + pixel_y = 1 + }, +/obj/item/reagent_containers/cup/bottle/chloralhydrate{ + pixel_x = -12; + pixel_y = 6 + }, +/obj/item/reagent_containers/cup/bottle/morphine{ + pixel_x = -4; + pixel_y = 1 + }, +/obj/effect/turf_decal/tile/dark/diagonal_edge, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/execution/education) +"cNC" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/service) +"cNF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/departure_lounge) +"cNG" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/dark, +/area/station/commons/storage/primary) +"cNL" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/rnd/production/protolathe/department/science, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/research) +"cNS" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/camera/directional/west{ + c_tag = "Medbay Virology Wing Access"; + network = list("ss13","medbay") + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"cOl" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron, +/area/station/maintenance/starboard/lesser) +"cOP" = ( +/turf/open/floor/glass/reinforced, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"cOQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/structure/sign/poster/random/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"cOR" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/landmark/start/atmospheric_technician, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"cPa" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/ai_monitored/command/storage/eva) +"cPc" = ( +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"cPl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"cPr" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/simple/supply/visible{ + dir = 10 + }, +/turf/open/space/basic, +/area/space) +"cPt" = ( +/obj/effect/spawner/random/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/small/directional/north, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"cPA" = ( +/obj/effect/spawner/random/maintenance/two, +/obj/structure/rack/shelf, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"cPQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"cPY" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light/warm/directional/east, +/turf/open/floor/iron, +/area/station/commons/dorms) +"cQc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ + dir = 8 + }, +/obj/machinery/camera/directional/south{ + c_tag = "Atmospherics - Incinerator Chamber"; + network = list("ss13","engine") + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/engine, +/area/station/maintenance/disposal/incinerator) +"cQl" = ( +/obj/machinery/teleport/hub, +/obj/machinery/camera/directional/east{ + c_tag = "MiniSat Lower Service Bay"; + network = list("minisat") + }, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plating, +/area/station/ai_monitored/turret_protected/aisat/teleporter) +"cQp" = ( +/obj/effect/turf_decal/lunar_sand, +/obj/effect/turf_decal/lunar_sand/plating, +/obj/machinery/airalarm/directional/west, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"cQI" = ( +/obj/structure/rack/shelf, +/obj/item/transfer_valve, +/obj/item/transfer_valve{ + pixel_x = -5 + }, +/obj/item/transfer_valve{ + pixel_x = 5 + }, +/obj/item/transfer_valve, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/station/science/ordnance/testlab) +"cQN" = ( +/obj/structure/table/wood, +/obj/item/modular_computer/laptop/preset/civilian{ + pixel_y = 15 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/station/command/heads_quarters/nt_rep) +"cQQ" = ( +/obj/machinery/mech_bay_recharge_port{ + dir = 2 + }, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/station/science/research/abandoned) +"cRf" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/obj/machinery/light/warm/directional/west, +/turf/open/floor/iron, +/area/station/construction/mining/aux_base) +"cRA" = ( +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/hydroponics) +"cRJ" = ( +/obj/machinery/telecomms/server/presets/service, +/turf/open/floor/circuit/telecomms/mainframe, +/area/station/tcommsat/server) +"cRV" = ( +/obj/structure/stairs/south, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/hallway/primary/starboard) +"cSd" = ( +/turf/closed/wall/r_wall, +/area/station/security/corrections_officer) +"cSh" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/effect/spawner/random/maintenance/three, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"cSk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/visible{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"cSo" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/machinery/camera/directional/east{ + c_tag = "Engineering - Gravity Generator"; + network = list("ss13","engine") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/engineering/gravity_generator) +"cSp" = ( +/obj/item/kirbyplants/synthetic/plant29, +/obj/machinery/light/cold/directional/west, +/obj/effect/turf_decal/tile/green/opposingcorners, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/virology) +"cSr" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"cSw" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/department/security/upper) +"cSE" = ( +/obj/machinery/door/airlock/maintenance/external/glass{ + name = "Taj Emporium Diner" + }, +/obj/effect/turf_decal/tile/dark_red/opposingcorners{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/checker, +/area/station/maintenance/abandon_diner) +"cTc" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/commons/vacant_room/commissary) +"cTl" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/grimy, +/area/station/security/detectives_office) +"cTt" = ( +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/iron/dark/side, +/area/station/common/wrestling/arena) +"cTz" = ( +/obj/structure/transit_tube/crossing, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"cTL" = ( +/obj/effect/turf_decal/tile/dark_red/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark_red{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/common/laser_tag) +"cTP" = ( +/obj/structure/closet/secure_closet/freezer/cream_pie, +/turf/open/floor/iron/freezer, +/area/station/maintenance/port/greater) +"cUi" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/primary/starboard) +"cUt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/security/range) +"cUE" = ( +/obj/machinery/light/directional/east, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"cVb" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/patients_rooms) +"cVd" = ( +/obj/structure/chair/pew/right{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/floor/iron/diagonal, +/area/station/security/courtroom) +"cVI" = ( +/obj/effect/turf_decal/stripes/end, +/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible, +/turf/open/floor/engine, +/area/station/engineering/main) +"cVJ" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/station/maintenance/starboard/fore) +"cVV" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/light/directional/west, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"cVY" = ( +/obj/machinery/power/terminal, +/obj/structure/cable, +/obj/machinery/power/port_gen/pacman/pre_loaded, +/turf/open/floor/plating, +/area/station/construction/mining/aux_base) +"cWa" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/corporate/glass{ + name = "Command Breakroom" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) +"cWb" = ( +/obj/machinery/computer/libraryconsole/bookmanagement{ + pixel_y = 2 + }, +/obj/structure/table, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/wood/large, +/area/station/security/prison) +"cWo" = ( +/turf/open/openspace, +/area/station/maintenance/solars/starboard/aft) +"cWu" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall14"; + location = "hall13" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"cWP" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"cWR" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/service/chapel/funeral) +"cWY" = ( +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/diagonal, +/area/station/security/courtroom) +"cXt" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/iron/white/side{ + dir = 8 + }, +/area/station/science/research) +"cXL" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted, +/obj/effect/turf_decal/tile/blue/half/contrasted, +/obj/effect/turf_decal/tile/purple/half/contrasted, +/obj/machinery/computer/arcade/orion_trail{ + desc = "For gamers only. Casuals need not apply."; + icon_screen = "library"; + icon_state = "oldcomp"; + name = "Gamer Computer"; + pixel_y = 2; + dir = 1 + }, +/obj/structure/table, +/obj/structure/railing, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/common/arcade) +"cXQ" = ( +/obj/machinery/conveyor{ + id = "garbage"; + dir = 8 + }, +/obj/effect/turf_decal/stripes/full, +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/plating, +/area/station/maintenance/disposal) +"cXS" = ( +/obj/machinery/recharge_station, +/obj/effect/turf_decal/box, +/turf/open/floor/plating, +/area/station/science/research/abandoned) +"cXW" = ( +/obj/structure/table/wood, +/turf/open/floor/wood/tile, +/area/station/commons/lounge) +"cYo" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/obj/structure/cable, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/primary/starboard) +"cYx" = ( +/obj/structure/table/glass, +/obj/machinery/newscaster/directional/north, +/obj/structure/cable, +/turf/open/floor/iron/white/herringbone, +/area/station/medical/patients_rooms) +"cYI" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"cYP" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/turf/open/floor/iron/white/smooth_large, +/area/station/security/medical) +"cYR" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/airalarm/directional/west, +/obj/structure/tank_holder/oxygen, +/turf/open/floor/iron/dark, +/area/station/engineering/transit_tube) +"cZr" = ( +/obj/machinery/exodrone_launcher, +/obj/item/exodrone, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/cargo/drone_bay) +"cZA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/spawner/random/engineering/tracking_beacon, +/turf/open/floor/iron/white, +/area/station/medical/pharmacy) +"cZE" = ( +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/blueshield) +"cZO" = ( +/obj/machinery/light/directional/east, +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/command) +"dac" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/blue/line{ + dir = 8 + }, +/obj/item/kirbyplants/synthetic/plant29, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/range) +"dap" = ( +/obj/structure/fluff/paper/stack{ + dir = 8 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"daz" = ( +/turf/open/floor/iron/dark, +/area/station/security/office) +"daP" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/item/radio/intercom/directional/west, +/obj/machinery/camera/directional/west{ + c_tag = "Atmospherics - Upper Deck Port"; + network = list("ss13","engine") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"daS" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/escape) +"daV" = ( +/obj/effect/spawner/random/trash/moisture_trap, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"daZ" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/item/gps/mining{ + pixel_x = -8; + pixel_y = 6 + }, +/obj/item/mining_voucher, +/obj/item/mining_scanner, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/greater) +"dba" = ( +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"dbc" = ( +/obj/effect/landmark/start/assistant, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/cargo/lobby) +"dbe" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/checker, +/area/station/maintenance/abandon_diner) +"dbh" = ( +/obj/structure/railing, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"dbo" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/exit/departure_lounge) +"dbw" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/reagent_dispensers/wall/peppertank/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/emergency{ + pixel_y = 11 + }, +/obj/item/radio/off{ + pixel_y = 3 + }, +/obj/item/restraints/handcuffs, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/escape) +"dbx" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/table/wood, +/obj/item/lighter{ + pixel_y = 6; + pixel_x = 5 + }, +/turf/open/floor/carpet, +/area/station/commons/dorms) +"dbA" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/security/office) +"dbH" = ( +/turf/closed/wall, +/area/station/medical/surgery/aft) +"dbO" = ( +/obj/structure/lattice, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/window/spawner/directional/south, +/obj/structure/window/spawner/directional/north, +/turf/open/openspace, +/area/station/security/brig/upper) +"dbR" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/item/kirbyplants/synthetic/plant28, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/security/office) +"dbV" = ( +/obj/machinery/cryopod, +/obj/effect/turf_decal/siding/white, +/obj/effect/turf_decal/box/white{ + color = "#9FED58" + }, +/obj/structure/closet/secure_closet/wall{ + pixel_y = 24 + }, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron/dark/smooth_large, +/area/station/common/cryopods) +"dci" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/obj/structure/table, +/obj/machinery/computer/records/medical/laptop, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/command/heads_quarters/hop) +"dcv" = ( +/obj/structure/chair/pew/left{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/diagonal, +/area/station/security/courtroom) +"dcw" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"dcx" = ( +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/science/robotics/mechbay) +"dcy" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/iron/white/side{ + dir = 1 + }, +/area/station/science/ordnance) +"dcC" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/machinery/atmospherics/pipe/smart/simple/supply/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/engineering/atmos) +"dcD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"dcH" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "brigdeskz2"; + name = "Security Desk Shutters" + }, +/turf/open/floor/plating, +/area/station/security/brig/entrance) +"dcJ" = ( +/obj/effect/turf_decal/stripes/full, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"dcU" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/hallway/primary/central/aft) +"dda" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Departures Checkpoint Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/checkpoint/escape) +"dde" = ( +/obj/machinery/chem_dispenser, +/obj/effect/turf_decal/tile/yellow/half, +/turf/open/floor/iron/white, +/area/station/medical/pharmacy) +"ddi" = ( +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/white/diagonal, +/area/station/commons/toilet/auxiliary) +"ddo" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/machinery/light/cold/directional/east, +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/security/holding_cell) +"ddu" = ( +/mob/living/carbon/human/species/monkey, +/obj/machinery/camera/directional/north{ + c_tag = "Virology - Test Subject Chamber"; + network = list("ss13","medbay") + }, +/turf/open/floor/grass, +/area/station/medical/virology) +"ddv" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"ddB" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=lowhall7"; + location = "lowhall6" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"ddL" = ( +/obj/machinery/computer/records/security{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"ddQ" = ( +/obj/effect/landmark/start/cyborg, +/obj/machinery/recharge_station, +/obj/effect/turf_decal/stripes/white/line{ + dir = 9 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/aisat/equipment) +"ddX" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external/glass{ + name = "External Access"; + space_dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"ddY" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/openspace, +/area/station/engineering/main) +"def" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/siding/dark_blue, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"den" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/primary/central/aft) +"des" = ( +/obj/effect/spawner/random/structure/crate, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"dex" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"deE" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Garden" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/hydroponics/garden) +"deK" = ( +/obj/structure/plasticflaps/opaque{ + name = "Engineering Deliveries" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/large, +/area/station/science/robotics/lab) +"deL" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/structure/chair/sofa/bench, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"deV" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/item/clothing/head/fedora/carpskin{ + pixel_y = 7; + pixel_x = 5 + }, +/obj/item/reagent_containers/cup/glass/bottle/beer/light{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/item/toy/plush/carpplushie, +/turf/open/floor/wood, +/area/station/common/carpshop) +"deX" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/white/side{ + dir = 6 + }, +/area/station/common/cryopods) +"dfo" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/engineering/atmos/upper) +"dft" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/caution/stand_clear{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"dfQ" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/red/full, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/small, +/area/station/security/execution/education) +"dfU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/holopad, +/turf/open/floor/iron, +/area/station/engineering/main) +"dgf" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/visible{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/science/ordnance) +"dgg" = ( +/obj/effect/turf_decal/weather/snow, +/obj/machinery/gibber, +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 8 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Canteen - Coldroom" + }, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/service/kitchen/coldroom) +"dgI" = ( +/obj/machinery/newscaster/directional/east, +/obj/machinery/light/small/directional/east, +/obj/machinery/vending/autodrobe, +/turf/open/floor/wood/tile, +/area/station/service/theater) +"dgL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/cargo/sorting) +"dgR" = ( +/obj/structure/lattice/catwalk, +/obj/structure/window/spawner/directional/east, +/obj/structure/window/spawner/directional/west, +/obj/structure/window/spawner/directional/north, +/obj/structure/window/spawner/directional/south, +/obj/structure/marker_beacon/bronze, +/turf/open/openspace, +/area/station/cargo/drone_bay) +"dgS" = ( +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/airlock/engineering{ + name = "Port Quarter Solar Access" + }, +/obj/effect/mapping_helpers/airlock/unres, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/solars/port/aft) +"dgU" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/chair, +/turf/open/floor/catwalk_floor/iron, +/area/station/security/checkpoint/engineering) +"dha" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/medical/paramedic) +"dhb" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"dhE" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/wood/tile, +/area/station/commons/lounge) +"dhH" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/tile, +/area/station/commons/lounge) +"dhY" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/window/reinforced/plasma/spawner/directional/east, +/turf/open/openspace, +/area/station/engineering/atmos/upper) +"die" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/machinery/computer/warrant{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/hallway/primary/central/aft) +"dio" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/table, +/obj/structure/desk_bell{ + pixel_x = -8 + }, +/obj/item/folder/yellow{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"diq" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/medical/morgue, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/machinery/door/airlock/grunge{ + name = "Morgue" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/morgue) +"dis" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/machinery/button/flasher{ + id = "brigflashdoorz2"; + name = "Flash Control"; + pixel_x = 30; + pixel_y = -25; + req_access = list("security") + }, +/obj/machinery/button/door/directional/east{ + id = "briggatez2"; + name = "Gate Shutters Control"; + pixel_x = 36; + pixel_y = -34; + req_access = list("security") + }, +/obj/machinery/button/door/directional/east{ + id = "brigdeskz2"; + name = "Desk Shutters Control"; + pixel_y = -34; + req_access = list("security") + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/security/brig/entrance) +"dit" = ( +/obj/effect/turf_decal/lunar_sand/plating, +/obj/machinery/door/firedoor/border_only, +/obj/effect/turf_decal/siding/white, +/obj/machinery/duct, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"dix" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/white/corner{ + dir = 1 + }, +/area/station/commons/storage/mining) +"diD" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"diF" = ( +/obj/effect/turf_decal/siding/white{ + dir = 9 + }, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"diI" = ( +/obj/effect/turf_decal/tile/green/opposingcorners{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/checker, +/area/station/hallway/primary/central/fore) +"djg" = ( +/obj/machinery/atmospherics/pipe/smart/simple/violet/visible{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"djh" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"djk" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/ladder, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/solars/port/aft) +"djl" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/item/radio/intercom/directional/west, +/obj/structure/cable, +/obj/machinery/light/warm/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood, +/area/station/common/carpshop) +"djm" = ( +/obj/item/circuitboard/machine/chem_master, +/obj/structure/rack/shelf, +/turf/open/floor/iron, +/area/station/maintenance/fore/lesser) +"djv" = ( +/obj/structure/drain/big{ + pixel_x = -16; + pixel_y = -16 + }, +/obj/effect/turf_decal/siding/white{ + dir = 5 + }, +/obj/machinery/light/small/directional/north, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/white/small, +/area/station/commons/toilet/restrooms) +"djx" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/department/security/lower) +"djD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hos{ + id_tag = "HoSdoor"; + name = "Head Of Security's Office" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/hos, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/hos) +"djJ" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos/office) +"djM" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plating, +/area/station/security/processing) +"djS" = ( +/obj/machinery/space_heater, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/station/maintenance/central) +"djV" = ( +/obj/structure/table, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/qm) +"dkh" = ( +/obj/effect/turf_decal/tile/bar/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/checker, +/area/station/service/kitchen/diner) +"dki" = ( +/obj/effect/spawner/random/trash/caution_sign, +/obj/machinery/light/small/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"dkq" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"dkt" = ( +/obj/structure/chair/pew/right, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/chapel{ + dir = 4 + }, +/area/station/service/chapel) +"dkw" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/structure/closet/secure_closet/evidence, +/obj/machinery/camera/directional/north{ + c_tag = "Security - Evidence Storage" + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/security/evidence) +"dkA" = ( +/obj/structure/table, +/obj/item/storage/toolbox/electrical{ + pixel_x = -3; + pixel_y = 9 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 3 + }, +/obj/item/multitool, +/obj/machinery/camera/directional/west{ + c_tag = "MiniSat Upper Service Bay"; + network = list("minisat") + }, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/aisat/equipment) +"dkB" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible/layer5{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/visible{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible/layer1{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/science/ordnance) +"dkH" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/pickles_jar{ + pixel_y = 12 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/station/command/heads_quarters/nt_rep) +"dkR" = ( +/obj/effect/turf_decal/lunar_sand, +/obj/machinery/computer/security/telescreen{ + dir = 1; + network = list("xeno"); + pixel_y = -26 + }, +/obj/machinery/holopad, +/obj/machinery/camera/directional/south{ + c_tag = "Xenobiology Lab - Secure Cell Exterior"; + network = list("ss13","xeno","rd") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"dlf" = ( +/obj/structure/stairs/east, +/turf/open/floor/plating, +/area/station/hallway/primary/port) +"dli" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/station/engineering/main) +"dlG" = ( +/obj/effect/turf_decal/siding/white/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/medical/medbay/central) +"dlK" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/station/medical/psychology) +"dlL" = ( +/turf/closed/wall/r_wall, +/area/station/ai_monitored/turret_protected/aisat/teleporter) +"dlO" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"dlQ" = ( +/obj/machinery/door/window/elevator/left/directional/south{ + elevator_mode = 1; + elevator_linked_id = "cargo_lobbylift" + }, +/obj/machinery/door/firedoor/border_only, +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/obj/effect/turf_decal/caution/stand_clear{ + pixel_x = 16; + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/lobby) +"dlY" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/hallway/primary/central/fore) +"dmf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/caution/stand_clear{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"dmJ" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible, +/turf/open/openspace, +/area/station/engineering/atmos/upper) +"dmM" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/effect/spawner/random/bureaucracy/stamp{ + pixel_x = -10; + pixel_y = 8 + }, +/obj/effect/spawner/random/bureaucracy/pen{ + pixel_x = 3; + pixel_y = 4 + }, +/turf/open/floor/carpet, +/area/station/commons/vacant_room/office) +"dnj" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"dno" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "hosprivacy"; + name = "Privacy Shutters" + }, +/turf/open/floor/plating, +/area/station/command/heads_quarters/hos) +"dnu" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"dnz" = ( +/obj/machinery/conveyor{ + id = "QMLoad2" + }, +/obj/structure/plasticflaps, +/turf/open/floor/plating, +/area/station/cargo/storage) +"dnB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/general/visible{ + dir = 8 + }, +/obj/machinery/meter, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"dnN" = ( +/obj/machinery/light/warm/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/engineering/main) +"dnY" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) +"dol" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_x = 7; + pixel_y = 4 + }, +/obj/item/screwdriver{ + pixel_y = 14 + }, +/obj/item/radio/off{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/machinery/airalarm/directional/south, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/camera/directional/east{ + c_tag = "Guard Post - Service" + }, +/obj/machinery/light/warm/directional/south, +/obj/effect/turf_decal/tile/green/anticorner/contrasted, +/turf/open/floor/iron, +/area/station/security/checkpoint/service) +"dow" = ( +/obj/machinery/netpod, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/bitrunning/den) +"doz" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"doQ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/machinery/computer/shuttle/mining{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/wood, +/area/station/command/heads_quarters/qm) +"dpd" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/light/cold/no_nightlight/directional/west, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"dpr" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/chair/office{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/quartermaster, +/turf/open/floor/wood, +/area/station/command/heads_quarters/qm) +"dpt" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/tank_holder/extinguisher, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"dpv" = ( +/obj/effect/spawner/random/structure/steam_vent, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"dpE" = ( +/obj/effect/turf_decal/tile/green/opposingcorners, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/hallway/primary/central/fore) +"dpH" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/red/directional/east, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"dpN" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"dqe" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/wood/tile, +/area/station/medical/psychology) +"dqq" = ( +/obj/effect/turf_decal/lunar_sand, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"dqM" = ( +/turf/open/floor/iron/dark, +/area/station/cargo/office) +"dqO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"dqU" = ( +/obj/machinery/computer/telecomms/server{ + network = "tcommsat" + }, +/obj/effect/turf_decal/box, +/obj/machinery/light/cold/directional/north, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/dark/small, +/area/station/tcommsat/computer) +"dqV" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"dqX" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"drm" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/transit_tube, +/turf/open/floor/plating, +/area/station/construction/mining/aux_base) +"drn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/service/library) +"drx" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/maintenance/aft/greater) +"drD" = ( +/obj/machinery/atmospherics/pipe/smart/simple/violet/visible{ + dir = 4 + }, +/obj/machinery/light/warm/directional/north, +/turf/open/floor/engine, +/area/station/engineering/atmos) +"drN" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/medical/chemistry) +"drO" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/storage/toolbox/electrical, +/obj/effect/mapping_helpers/broken_floor, +/obj/item/clothing/gloves/color/fyellow, +/obj/structure/sign/poster/random/directional/north, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/small, +/area/station/maintenance/port/aft) +"dsd" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/station_map/engineering/directional/east, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/entry) +"dse" = ( +/obj/structure/bookcase/random/nonfiction, +/obj/machinery/light/warm/directional/south, +/turf/open/floor/wood, +/area/station/service/library/lounge) +"dsg" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/red/line, +/obj/effect/turf_decal/siding/dark_red, +/obj/machinery/light/warm/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/status_display/door_timer{ + id = "IsolationCell"; + name = "Isolation Cell"; + pixel_y = 32 + }, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"dsm" = ( +/obj/machinery/light/warm/directional/east, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/wood, +/area/station/service/chapel) +"dst" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/entry) +"dsw" = ( +/obj/machinery/door/poddoor{ + id = "JusticeChamber"; + name = "Justice Vent" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/security/execution/education) +"dsD" = ( +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"dsE" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/hallway/primary/central/aft) +"dsF" = ( +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/mid_joiner{ + dir = 1 + }, +/obj/machinery/iv_drip, +/obj/machinery/camera/directional/north{ + c_tag = "Security - Infirmary" + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/white/smooth_large, +/area/station/security/medical) +"dsI" = ( +/obj/structure/closet, +/obj/effect/spawner/random/clothing/gloves, +/obj/effect/spawner/random/trash/janitor_supplies, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"dsU" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/item/kirbyplants/synthetic/plant29, +/obj/machinery/vending/wallmed/directional/east, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"dsX" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"dtf" = ( +/obj/effect/landmark/start/roboticist, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/robotics/lab) +"dtg" = ( +/obj/structure/closet/crate/goldcrate, +/obj/item/stack/spacecash/c500, +/obj/item/stack/spacecash/c500, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/smooth_large, +/area/station/ai_monitored/command/nuke_storage) +"dtq" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrogen_output{ + dir = 4 + }, +/turf/open/floor/engine/n2, +/area/station/engineering/atmos) +"dtr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"dtt" = ( +/obj/machinery/conveyor{ + id = "QMLoad2"; + dir = 8 + }, +/obj/machinery/conveyor_switch/oneway{ + id = "QMLoad2"; + name = "Unloading Conveyor"; + pixel_x = -10; + pixel_y = -4; + dir = 1 + }, +/obj/effect/turf_decal/stripes/full, +/turf/open/floor/plating, +/area/station/cargo/storage) +"dtw" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/ladder, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"dtA" = ( +/obj/structure/hedge, +/obj/structure/window/fulltile, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/exit/departure_lounge) +"dtO" = ( +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"dtP" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/yellow/visible, +/turf/open/floor/engine, +/area/station/engineering/atmos) +"dui" = ( +/obj/effect/spawner/random/engineering/atmospherics_portable, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"duu" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/effect/turf_decal/lunar_sand, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"duv" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch" + }, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"duI" = ( +/obj/structure/tank_holder/emergency_oxygen, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"duY" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/dark{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/frame/machine{ + anchored = 1 + }, +/obj/machinery/airalarm/directional/north, +/obj/machinery/camera/directional/east{ + c_tag = "Vacant Commissary - Store" + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/item/stack/cable_coil/five, +/turf/open/floor/iron, +/area/station/commons/vacant_room/commissary) +"duZ" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark_red{ + dir = 1 + }, +/obj/effect/turf_decal/siding/white/corner{ + dir = 4 + }, +/obj/structure/window/fulltile, +/turf/open/floor/iron/dark/smooth_large, +/area/station/common/laser_tag) +"dvg" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/engineering/atmos/hfr_room) +"dvh" = ( +/obj/structure/transit_tube/horizontal, +/obj/structure/lattice, +/turf/open/space/openspace, +/area/space/nearstation) +"dvl" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet, +/area/station/command/heads_quarters/hos) +"dvo" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/white/smooth_edge{ + dir = 8 + }, +/area/station/medical/treatment_center) +"dvt" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/camera/directional/west{ + c_tag = "Solar Maintenance - Fore Port" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/solars/port/fore) +"dvB" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/structure/railing, +/turf/open/space/basic, +/area/space/nearstation) +"dvC" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) +"dvI" = ( +/obj/effect/spawner/random/engineering/material, +/obj/effect/spawner/random/engineering/material{ + pixel_y = 6; + pixel_x = 2 + }, +/obj/effect/spawner/random/engineering/material{ + pixel_y = -3; + pixel_x = 3 + }, +/obj/structure/rack/shelf, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"dvO" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/solars/starboard/aft) +"dvQ" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners{ + dir = 1 + }, +/obj/effect/mapping_helpers/broken_floor, +/mob/living/basic/cockroach, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/checker, +/area/station/maintenance/abandon_diner) +"dwe" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"dwk" = ( +/turf/closed/wall, +/area/station/science/ordnance/freezerchamber) +"dwo" = ( +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/railing, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/station/maintenance/department/science/xenobiology) +"dwu" = ( +/obj/structure/table, +/obj/item/storage/toolbox/electrical{ + pixel_x = -2; + pixel_y = 10 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron, +/area/station/ai_monitored/command/storage/eva) +"dwz" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall6"; + location = "hall5" + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"dwI" = ( +/obj/machinery/computer/message_monitor, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/small, +/area/station/tcommsat/computer) +"dwK" = ( +/obj/structure/table, +/obj/effect/spawner/random/maintenance/four, +/turf/open/floor/plating, +/area/station/maintenance/starboard/lesser) +"dwQ" = ( +/obj/effect/turf_decal/lunar_sand, +/turf/open/floor/glass/reinforced, +/area/station/science/cytology) +"dxe" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"dxg" = ( +/obj/structure/stairs/east, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"dxl" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/machinery/holopad, +/turf/open/floor/iron/white, +/area/station/medical/storage) +"dxm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/command) +"dxo" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 10 + }, +/mob/living/carbon/human/species/monkey{ + dir = 1 + }, +/obj/structure/flora/bush/jungle/a/style_random, +/obj/machinery/light/warm/directional/south, +/turf/open/floor/grass, +/area/station/science/genetics) +"dxz" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/glass, +/area/station/ai_monitored/turret_protected/ai) +"dxF" = ( +/obj/effect/turf_decal/siding/white{ + dir = 6 + }, +/obj/structure/closet/l3closet/virology, +/obj/machinery/camera/directional/east{ + c_tag = "Virology - Airlock"; + network = list("ss13","medbay") + }, +/obj/effect/turf_decal/tile/green/anticorner/contrasted, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"dxO" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/brig/upper) +"dyd" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/station/hallway/primary/central) +"dyi" = ( +/obj/item/food/bun{ + pixel_x = -4 + }, +/obj/structure/closet/secure_closet/freezer/empty, +/obj/item/food/bun{ + pixel_y = 6 + }, +/obj/item/food/bun{ + pixel_x = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen/diagonal, +/area/station/maintenance/abandon_diner) +"dyp" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/iron, +/area/station/security/checkpoint/medical) +"dyr" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"dyv" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/station/command/heads_quarters/qm) +"dyw" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/bar) +"dyJ" = ( +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + color = "#ff0000"; + dir = 4; + name = "Scrubbers multi deck pipe adapter" + }, +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/openspace, +/area/station/engineering/atmos/upper) +"dyS" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"dyW" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/red/line, +/obj/effect/turf_decal/siding/dark_red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"dzb" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/entry) +"dzd" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"dzf" = ( +/obj/effect/turf_decal/tile/green/opposingcorners, +/obj/machinery/station_map/engineering/directional/west, +/turf/open/floor/iron/checker{ + dir = 1 + }, +/area/station/hallway/primary/central) +"dzj" = ( +/obj/item/storage/box/pinpointer_pairs, +/obj/structure/rack, +/obj/effect/spawner/random/medical/surgery_tool, +/obj/effect/spawner/random/medical/surgery_tool, +/obj/effect/spawner/random/medical/surgery_tool, +/obj/effect/mapping_helpers/broken_floor, +/obj/item/reagent_containers/syringe, +/obj/effect/spawner/random/medical/surgery_tool, +/turf/open/floor/plating, +/area/station/maintenance/abandon_surgery) +"dzG" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/central/aft) +"dzP" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"dzR" = ( +/obj/effect/turf_decal/bot, +/obj/structure/ore_box, +/turf/open/floor/iron/large, +/area/station/cargo/storage) +"dzV" = ( +/obj/machinery/prisongate{ + name = "brig gate scanner" + }, +/obj/machinery/door/firedoor, +/obj/structure/railing, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/warning, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/security/brig/entrance) +"dAc" = ( +/obj/structure/stairs/east, +/turf/open/floor/plating, +/area/station/science/circuits) +"dAi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"dAp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"dAv" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/primary/central/aft) +"dAx" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/light/warm/directional/east, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron, +/area/station/construction/mining/aux_base) +"dAA" = ( +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/diagonal, +/area/station/security/courtroom) +"dAD" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central) +"dAH" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"dAI" = ( +/obj/structure/cable, +/turf/open/floor/iron/white/diagonal, +/area/station/common/spa) +"dAY" = ( +/obj/effect/spawner/random/trash/garbage, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/light/small/directional/east, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"dBb" = ( +/obj/effect/turf_decal/tile/red/real_red, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/secondary/entry) +"dBh" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/cable/layer1, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/cable/layer3, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/ai) +"dBk" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"dBF" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/blue/line{ + dir = 1 + }, +/obj/machinery/light/cold/directional/east, +/obj/effect/turf_decal/loading_area/white{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/security/office) +"dCi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"dCr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plastic, +/area/station/common/carpshop) +"dDd" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/solars/starboard/aft) +"dDk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet, +/area/station/service/abandoned_gambling_den) +"dDn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/machinery/suit_storage_unit/security, +/turf/open/floor/engine, +/area/station/security/eva) +"dDF" = ( +/obj/machinery/holopad, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"dDZ" = ( +/obj/machinery/computer/security/hos, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/box, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/machinery/light/warm/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hos) +"dEd" = ( +/obj/item/radio/intercom/directional/north, +/obj/machinery/growing/soil, +/turf/open/floor/grass, +/area/station/service/hydroponics/garden) +"dEg" = ( +/obj/machinery/plumbing/ooze_sucker{ + mapping_id = "2"; + dir = 1 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"dEm" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/obj/structure/table/optable, +/obj/item/storage/box/bodybags{ + pixel_x = -3; + pixel_y = 2 + }, +/turf/open/floor/iron/dark, +/area/station/medical/morgue) +"dEH" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"dEM" = ( +/turf/closed/wall, +/area/station/common/carpshop) +"dEO" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"dEQ" = ( +/turf/open/openspace, +/area/station/service/barber) +"dEW" = ( +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"dFd" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate/secure/loot, +/obj/effect/spawner/random/exotic/syndie, +/obj/effect/spawner/random/entertainment/money, +/turf/open/floor/iron/large, +/area/station/cargo/storage) +"dFi" = ( +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"dFl" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/chair, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"dFq" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/shieldgen, +/turf/open/floor/plating, +/area/station/maintenance/starboard/lesser) +"dFs" = ( +/turf/closed/wall, +/area/station/cargo/storage) +"dFw" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/exit/departure_lounge) +"dFy" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/firealarm/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/maintenance/disposal) +"dFM" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/primary/starboard) +"dFV" = ( +/turf/closed/wall/r_wall, +/area/station/security/execution/education) +"dGc" = ( +/obj/structure/chair/pew/right, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/chapel{ + dir = 4 + }, +/area/station/service/chapel) +"dGf" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/white, +/area/station/science/explab) +"dGl" = ( +/obj/machinery/atmospherics/pipe/multiz/violet/visible{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"dGr" = ( +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/effect/turf_decal/lunar_sand/plating, +/obj/effect/turf_decal/lunar_sand, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"dGw" = ( +/obj/effect/turf_decal/tile/blue, +/turf/closed/wall, +/area/station/medical/psychology) +"dGG" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/wood/tile, +/area/station/service/bar) +"dGO" = ( +/obj/effect/turf_decal/tile/purple, +/obj/structure/chair/plastic{ + dir = 4 + }, +/obj/machinery/airalarm/directional/south, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/service/janitor) +"dGR" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/checker{ + dir = 1 + }, +/area/station/hallway/secondary/command) +"dHf" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 8 + }, +/turf/open/floor/carpet/green, +/area/station/hallway/secondary/exit/departure_lounge) +"dHo" = ( +/obj/machinery/growing/soil, +/turf/open/floor/grass, +/area/station/service/hydroponics/garden) +"dHr" = ( +/obj/structure/sign/poster/random/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"dHt" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 10 + }, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"dHu" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"dHx" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/cargo/miningdock) +"dHH" = ( +/obj/effect/turf_decal/tile/purple/half{ + dir = 1 + }, +/obj/machinery/light/cold/directional/west, +/obj/machinery/slime_market_pad, +/turf/open/floor/iron/dark/smooth_half, +/area/station/science/xenobiology) +"dHU" = ( +/obj/structure/closet/crate, +/obj/item/tank/internals/oxygen, +/obj/item/tank/internals/oxygen, +/obj/item/stack/cable_coil, +/obj/item/crowbar, +/obj/effect/spawner/random/engineering/flashlight, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/command/gateway) +"dIb" = ( +/turf/closed/wall, +/area/station/service/hydroponics) +"dIl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/landmark/start/atmospheric_technician, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"dIo" = ( +/obj/effect/turf_decal/box/white, +/obj/machinery/light/floor/has_bulb, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"dIz" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/bitrunning/den) +"dIE" = ( +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"dII" = ( +/obj/item/stack/sheet/cardboard{ + amount = 14 + }, +/obj/structure/sign/poster/contraband/mothic_rations/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"dIR" = ( +/obj/machinery/shieldgen, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating, +/area/station/engineering/storage_shared) +"dIX" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/turf_decal/box/corners, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/engine, +/area/station/science/ordnance) +"dIY" = ( +/obj/structure/lattice, +/obj/structure/transit_tube/curved{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"dJd" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/landmark/start/hangover/closet, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/escape_pod) +"dJe" = ( +/obj/machinery/mech_bay_recharge_port{ + dir = 2 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/station/science/robotics/mechbay) +"dJf" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/white/side{ + dir = 10 + }, +/area/station/common/cryopods) +"dJi" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/hydroponics) +"dJp" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/smooth_large, +/area/station/maintenance/port/aft) +"dJA" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 9 + }, +/obj/structure/flora/bush/jungle/c/style_random, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/grass, +/area/station/science/genetics) +"dJB" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 9 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"dJC" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"dJH" = ( +/obj/effect/turf_decal/tile/dark_blue, +/obj/item/kirbyplants/synthetic/plant29, +/obj/structure/cable, +/turf/open/floor/iron/dark/corner, +/area/station/security/processing) +"dJJ" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/glass/reinforced, +/area/station/hallway/secondary/command) +"dKg" = ( +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"dKl" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/status_display/evac/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/dark/corner, +/area/station/commons/dorms) +"dKn" = ( +/obj/structure/railing{ + dir = 6 + }, +/turf/open/openspace, +/area/station/maintenance/starboard/fore) +"dKu" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/engineering/atmos) +"dKC" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/science/circuits) +"dKG" = ( +/obj/effect/mapping_helpers/airlock/access/any/service/general, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/service{ + name = "Service Hall" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/service) +"dKH" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/nitrous_input, +/turf/open/floor/engine/n2o, +/area/station/engineering/atmos/upper) +"dKP" = ( +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Auxiliary Toilets Maintenance" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/commons/toilet/auxiliary) +"dLe" = ( +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/medical/morgue) +"dLl" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Recreation - Holodeck Fore" + }, +/turf/open/floor/engine{ + name = "Holodeck Projector Floor" + }, +/area/station/holodeck/rec_center) +"dLo" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/item/stack/package_wrap{ + pixel_y = 8 + }, +/obj/item/stack/package_wrap{ + pixel_y = 5 + }, +/obj/item/stack/package_wrap{ + pixel_y = 2 + }, +/obj/item/hand_labeler_refill{ + pixel_y = -3; + pixel_x = 4 + }, +/obj/item/hand_labeler_refill{ + pixel_y = -4 + }, +/obj/machinery/firealarm/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/rack/shelf, +/turf/open/floor/iron/dark, +/area/station/cargo/sorting) +"dLE" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Secure Holding Area" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/checkpoint/escape) +"dLI" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/machinery/light/warm/directional/east, +/obj/effect/spawner/random/entertainment/arcade{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"dLU" = ( +/obj/effect/turf_decal/tile/dark_blue/half, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/security/brig) +"dLY" = ( +/obj/machinery/computer/station_alert{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/lobby) +"dMe" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/engineering/main) +"dMh" = ( +/obj/effect/mapping_helpers/burnt_floor, +/obj/effect/decal/cleanable/dirt, +/obj/item/restraints/legcuffs/beartrap/prearmed, +/obj/effect/spawner/random/trash/garbage, +/obj/effect/spawner/random/trash/grime, +/obj/effect/spawner/random/trash/botanical_waste, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/central) +"dMi" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"dMn" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/machinery/chem_master/condimaster{ + desc = "Used to separate out liquids - useful for purifying botanical extracts. Also dispenses condiments."; + name = "SapMaster XP" + }, +/obj/effect/turf_decal/bot_white, +/obj/machinery/splicer{ + pixel_y = 13; + pixel_x = -3 + }, +/turf/open/floor/iron/large, +/area/station/service/hydroponics) +"dMD" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/chair/plastic{ + dir = 1 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/wood, +/area/station/maintenance/starboard/fore) +"dMM" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"dMN" = ( +/obj/structure/table/wood, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/item/hand_tele, +/obj/item/kitchen/fork{ + pixel_x = -12; + pixel_y = 4 + }, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain) +"dMR" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/directional/south, +/turf/open/floor/iron, +/area/station/hallway/secondary/recreation) +"dNe" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/station/maintenance/aft/greater) +"dNi" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"dNm" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/burgundy, +/turf/open/space/openspace, +/area/space/nearstation) +"dNK" = ( +/obj/structure/sign/poster/random/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"dNP" = ( +/obj/structure/chair/sofa/right{ + dir = 4; + color = "#DE3A3A" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/wood/tile, +/area/station/commons/lounge) +"dNZ" = ( +/turf/open/floor/iron/dark/diagonal, +/area/station/security/lockers) +"dOg" = ( +/obj/machinery/door/airlock/hatch{ + name = "Maintenance Hatch" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/all/command/captain, +/turf/open/floor/plating, +/area/station/maintenance/central) +"dOj" = ( +/obj/structure/destructible/cult/item_dispenser/archives/library, +/obj/item/book/codex_gigas, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/newscaster/directional/north, +/obj/machinery/light/small/red/dim/directional/north, +/turf/open/floor/cult, +/area/station/service/library/private) +"dOm" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/table/wood/fancy/green, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/wood, +/area/station/command/heads_quarters/nt_rep) +"dOw" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/holopad, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/engineering/lobby) +"dOz" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"dOC" = ( +/obj/item/shard/plasma{ + pixel_x = -7; + pixel_y = 4 + }, +/obj/item/weldingtool{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/stack/sheet/mineral/plasma/five, +/obj/item/clothing/glasses/welding, +/obj/structure/table, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"dOZ" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "External Gas to Loop"; + dir = 4 + }, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/effect/turf_decal/box/corners, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"dPq" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/hallway/secondary/command) +"dPs" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/obj/machinery/computer/records/security, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/escape) +"dPD" = ( +/obj/structure/table, +/obj/item/toy/gun{ + pixel_y = 4 + }, +/obj/item/toy/cards/deck, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) +"dPG" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/engine, +/area/station/science/ordnance) +"dPH" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/supply/qm, +/obj/machinery/door/airlock/qm{ + name = "Quartermaster's Office" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/qm) +"dPN" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/science/xenobiology) +"dPO" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Gravity Generator Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/gravity_generator) +"dPW" = ( +/obj/effect/turf_decal/siding/white/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/light/warm/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/commons/dorms) +"dQe" = ( +/obj/machinery/photocopier, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/office) +"dQq" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron, +/area/station/hallway/secondary/recreation) +"dQs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) +"dQx" = ( +/obj/effect/turf_decal/lunar_sand/plating, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark, +/area/station/science/cytology) +"dQz" = ( +/obj/structure/lattice, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/window/spawner/directional/north, +/obj/structure/window/spawner/directional/south, +/obj/structure/window/spawner/directional/west, +/turf/open/openspace, +/area/station/security/brig/upper) +"dQA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/engineering/main) +"dQW" = ( +/obj/machinery/chem_master, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"dRb" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/corner, +/area/station/hallway/secondary/recreation) +"dRf" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/openspace, +/area/station/service/janitor) +"dRl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/warm/dim/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/abandon_diner) +"dRo" = ( +/obj/machinery/requests_console/auto_name/directional/east, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/mapping_helpers/requests_console/ore_update, +/obj/machinery/light/warm/directional/east, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/rnd/production/protolathe/department/engineering, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/lobby) +"dRq" = ( +/obj/machinery/door/airlock{ + id_tag = "Toilet3"; + name = "Toilet Unit 3" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/toilet/restrooms) +"dRs" = ( +/obj/machinery/requests_console/auto_name/directional/north, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/mapping_helpers/requests_console/announcement, +/obj/effect/mapping_helpers/requests_console/information, +/obj/machinery/pdapainter/research, +/obj/item/toy/figure/rd{ + pixel_y = 9; + pixel_x = -7 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/camera/directional/east{ + c_tag = "Science - Research Director's Office"; + network = list("ss13","rd") + }, +/turf/open/floor/iron/dark/small, +/area/station/command/heads_quarters/rd) +"dRv" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/blobstart, +/turf/open/floor/iron/checker, +/area/station/maintenance/abandon_diner) +"dRD" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/multiz/violet/visible, +/turf/open/floor/engine, +/area/station/engineering/main) +"dRH" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"dRJ" = ( +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"dRL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/engineering/atmos/upper) +"dRQ" = ( +/obj/effect/turf_decal/tile/bar/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction/flip, +/turf/open/floor/iron/checker, +/area/station/service/kitchen/diner) +"dRT" = ( +/obj/machinery/shieldgen, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"dSd" = ( +/obj/effect/turf_decal/lunar_sand, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/science/cytology) +"dSf" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/science/xenobiology) +"dSj" = ( +/obj/effect/turf_decal/siding/white, +/obj/item/storage/box/hug/medical{ + pixel_y = 10 + }, +/obj/item/storage/box/bodybags{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment, +/obj/structure/table/glass, +/turf/open/floor/iron/dark, +/area/station/medical/treatment_center) +"dSn" = ( +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/engineering/atmos/storage) +"dSt" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"dSx" = ( +/turf/open/floor/glass/reinforced, +/area/station/science/xenobiology) +"dSB" = ( +/obj/structure/chair/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/green, +/area/station/service/library) +"dSC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/medical) +"dSD" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/cargo/storage) +"dSK" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/command/heads_quarters/hos) +"dSS" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/ore_box, +/obj/effect/turf_decal/delivery, +/obj/machinery/light/warm/directional/west, +/obj/machinery/airalarm/directional/south, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/cargo/miningdock) +"dTg" = ( +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/hfr_room) +"dTj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/engineering/lobby) +"dTp" = ( +/obj/effect/turf_decal/tile/brown/opposingcorners, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/iron/dark, +/area/station/cargo/drone_bay) +"dTz" = ( +/obj/machinery/computer/records/security/laptop, +/obj/structure/table/reinforced, +/obj/structure/cable, +/obj/machinery/computer/security/telescreen{ + name = "Prisoner Telescreen"; + network = list("prison"); + pixel_x = -32 + }, +/obj/machinery/camera/directional/west{ + c_tag = "Security - Corrections Officer Watch" + }, +/turf/open/floor/iron/dark, +/area/station/security/corrections_officer) +"dTU" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation) +"dTX" = ( +/obj/machinery/telecomms/receiver/preset_right, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/station/tcommsat/server) +"dUh" = ( +/obj/structure/table/reinforced, +/obj/machinery/fax{ + fax_name = "Security Office"; + name = "Security Office Fax Machine"; + pixel_y = 3 + }, +/obj/item/phone{ + desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; + pixel_x = -12; + pixel_y = -12 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/security/office) +"dUs" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/central/aft) +"dUw" = ( +/obj/effect/turf_decal/siding/dark_blue{ + dir = 8 + }, +/obj/item/kirbyplants/organic/plant22, +/obj/machinery/light/warm/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/command/meeting_room/council) +"dUK" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/space, +/area/station/solars/aisat) +"dUT" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/hallway/primary/central) +"dUW" = ( +/obj/structure/railing, +/obj/effect/turf_decal/lunar_sand, +/turf/open/floor/glass/reinforced, +/area/station/science/xenobiology) +"dVa" = ( +/obj/structure/window/spawner/directional/west, +/obj/structure/chair/plastic{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 8 + }, +/turf/open/floor/iron/white/small, +/area/station/service/salon) +"dVb" = ( +/obj/structure/table/glass, +/obj/machinery/firealarm/directional/west, +/obj/machinery/light/cold/no_nightlight/directional/west, +/obj/item/surgery_tray, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/item/reagent_containers/syringe{ + pixel_x = 7 + }, +/obj/item/reagent_containers/medigel/sterilizine, +/obj/item/stack/medical/bone_gel{ + pixel_x = -9 + }, +/turf/open/floor/iron/dark/small, +/area/station/medical/surgery/theatre) +"dVi" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/structure/cable, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/central/aft) +"dVt" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central) +"dVE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/engine, +/area/station/engineering/atmos) +"dVF" = ( +/obj/effect/turf_decal/tile/blue/full, +/obj/effect/turf_decal/tile/dark_blue/full, +/obj/structure/chair/comfy{ + color = "#596479"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) +"dVM" = ( +/obj/item/storage/medkit/regular{ + empty = 1; + pixel_y = 4 + }, +/obj/item/storage/medkit/regular{ + empty = 1; + pixel_y = 10 + }, +/obj/item/healthanalyzer{ + pixel_x = -6 + }, +/obj/item/assembly/prox_sensor{ + pixel_y = -2; + pixel_x = 10 + }, +/obj/item/healthanalyzer{ + pixel_x = -3; + pixel_y = -4 + }, +/obj/item/assembly/prox_sensor{ + pixel_y = -6; + pixel_x = 6 + }, +/obj/structure/table, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/mapping_helpers/requests_console/ore_update, +/obj/machinery/requests_console/auto_name/directional/east, +/turf/open/floor/iron/small, +/area/station/science/robotics/lab) +"dVV" = ( +/obj/effect/spawner/random/trash/mess, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/plating, +/area/station/maintenance/central) +"dWl" = ( +/obj/effect/mapping_helpers/airlock/access/all/science/robotics, +/obj/machinery/door/airlock/research{ + name = "Mech Bay" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/robotics/mechbay) +"dWq" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 4 + }, +/obj/effect/mapping_helpers/mail_sorting/security/detectives_office, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/grimy, +/area/station/security/detectives_office) +"dWG" = ( +/obj/item/radio/intercom/directional/east, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/iron/small, +/area/station/science/robotics/lab) +"dWY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/smooth_half, +/area/station/science/xenobiology) +"dXc" = ( +/turf/open/floor/iron/white/corner{ + dir = 8 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"dXk" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/dark/end, +/obj/structure/sign/directions/evac/directional/north{ + dir = 4 + }, +/obj/machinery/light/cold/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central) +"dXm" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/genetics) +"dXr" = ( +/obj/effect/turf_decal/tile/green/opposingcorners{ + dir = 1 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/dark/corner, +/area/station/hallway/primary/central/fore) +"dXv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/departure_lounge) +"dXB" = ( +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/geneticist, +/turf/open/floor/iron/white/small, +/area/station/science/genetics) +"dXF" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/lounge) +"dXK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/caution/stand_clear{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/exit/departure_lounge) +"dXQ" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/checker, +/area/station/maintenance/abandon_diner) +"dYa" = ( +/obj/machinery/button/door/directional/north{ + id = "justicechamber"; + name = "Justice Chamber Control"; + pixel_x = -6; + req_access = list("security"); + pixel_y = 28 + }, +/obj/machinery/button/ignition{ + id = "justicespark"; + pixel_x = 7; + pixel_y = 24; + req_access = list("security") + }, +/obj/machinery/button/flasher{ + id = "justiceflash"; + pixel_x = 7; + pixel_y = 34; + req_access = list("security") + }, +/obj/structure/table, +/obj/item/flashlight/lamp{ + pixel_y = 8 + }, +/obj/item/clothing/mask/balaclava, +/obj/item/storage/backpack/duffelbag/sec/surgery, +/obj/item/reagent_containers/syringe{ + pixel_y = -5 + }, +/obj/item/reagent_containers/dropper, +/obj/structure/reagent_dispensers/wall/peppertank/directional/east, +/obj/effect/turf_decal/tile/dark/diagonal_edge, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/execution/education) +"dYf" = ( +/turf/open/floor/iron/dark/small, +/area/station/command/gateway) +"dYh" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/white/smooth_half, +/area/station/science/xenobiology) +"dYi" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/holopad/secure, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/command/heads_quarters/hos) +"dYj" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/oxygen_output{ + dir = 4 + }, +/turf/open/floor/engine/o2, +/area/station/engineering/atmos) +"dYD" = ( +/obj/machinery/conveyor{ + dir = 6; + id = "garbage" + }, +/obj/effect/turf_decal/stripes/full, +/turf/open/floor/plating, +/area/station/maintenance/disposal) +"dYM" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/secondary/recreation) +"dYN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ + dir = 1 + }, +/obj/structure/lattice, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/openspace, +/area/station/maintenance/department/science/xenobiology) +"dYP" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/machinery/growing/tray, +/obj/item/radio/intercom/prison/directional/west, +/turf/open/misc/dirt/planet, +/area/station/security/prison) +"dYV" = ( +/turf/open/openspace, +/area/station/maintenance/starboard/fore) +"dYZ" = ( +/obj/machinery/power/emitter{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/engineering/main) +"dZb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/engineering_chief, +/obj/item/rcl/pre_loaded, +/obj/item/clothing/glasses/meson/gar, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/ce) +"dZt" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/science/ordnance, +/obj/machinery/door/airlock/science{ + name = "Ordnance Launch Site" + }, +/obj/structure/sign/warning/test_chamber/directional/east, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/ordnance/testlab) +"dZz" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"dZR" = ( +/obj/item/restraints/legcuffs/beartrap/prearmed, +/obj/item/bot_assembly/medbot{ + pixel_y = -6 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"dZU" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 9 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"eac" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/table/wood, +/obj/item/toner{ + pixel_y = 6 + }, +/obj/item/toner, +/obj/item/toner{ + pixel_y = 3 + }, +/obj/structure/railing, +/turf/open/floor/wood/large, +/area/station/service/library) +"eal" = ( +/obj/effect/spawner/random/trash/botanical_waste, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"ean" = ( +/obj/effect/decal/cleanable/glass, +/obj/item/shard{ + icon_state = "medium" + }, +/obj/structure/sign/poster/random/directional/east, +/obj/effect/mapping_helpers/burnt_floor, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"eaw" = ( +/obj/structure/table, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/reagent_containers/blood{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/showroomfloor, +/area/station/maintenance/port/aft) +"eax" = ( +/obj/structure/table, +/obj/item/reagent_containers/cup/beaker{ + pixel_x = 5; + pixel_y = 12 + }, +/obj/item/reagent_containers/cup/mortar, +/obj/item/pestle, +/obj/item/reagent_containers/cup/bottle/thermite{ + pixel_x = -7; + pixel_y = 14 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron, +/area/station/maintenance/fore/lesser) +"eay" = ( +/obj/effect/turf_decal/tile/dark_blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/security/office) +"eaM" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"eaO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/corporate/glass{ + name = "Command Hallway" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/command) +"eaQ" = ( +/obj/structure/chair/pew/left, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/chapel{ + dir = 1 + }, +/area/station/service/chapel) +"eaR" = ( +/obj/machinery/vending/snack, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/holding_cell) +"eaT" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"eaU" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/cable/layer1, +/obj/structure/cable/layer3, +/turf/open/floor/glass, +/area/station/ai_monitored/turret_protected/ai) +"ebd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"ebj" = ( +/obj/machinery/flasher/directional/south{ + id = "brigflashdoorz1"; + pixel_x = -24 + }, +/obj/effect/turf_decal/trimline/red/filled/warning, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/security/brig/entrance) +"ebv" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/commons/dorms) +"ebx" = ( +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/obj/effect/turf_decal/siding/red{ + dir = 4 + }, +/obj/machinery/requests_console/auto_name/directional/west, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/mapping_helpers/requests_console/information, +/obj/effect/mapping_helpers/requests_console/announcement, +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_x = -7; + pixel_y = 3 + }, +/obj/item/paper_bin{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/structure/cable, +/obj/machinery/light/cold/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/security/warden) +"ebD" = ( +/turf/open/floor/iron, +/area/station/science/robotics/mechbay) +"ebM" = ( +/obj/effect/turf_decal/lunar_sand/plating, +/obj/machinery/duct, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"ebQ" = ( +/obj/machinery/atmospherics/components/tank/oxygen{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/ordnance) +"ebR" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/layer1, +/turf/open/openspace, +/area/station/ai_monitored/turret_protected/aisat/maint) +"ebZ" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/spawner/random/structure/closet_private, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/commons/dorms/room2) +"ecl" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/layer1, +/obj/structure/cable/layer3, +/turf/open/openspace, +/area/station/ai_monitored/turret_protected/aisat/maint) +"ecz" = ( +/obj/effect/turf_decal/tile/dark_red{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/service/chapel/funeral) +"ecD" = ( +/obj/effect/spawner/random/structure/crate, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"ecH" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Atmospherics - Storage"; + network = list("ss13","engine") + }, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/engineering/atmos/storage) +"ecI" = ( +/obj/structure/rack, +/obj/item/wrench, +/obj/item/wirecutters, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"ecQ" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/maintenance/port/aft) +"ecZ" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall16"; + location = "hall15" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"edb" = ( +/turf/open/floor/iron/edge, +/area/station/maintenance/starboard/greater) +"edc" = ( +/obj/structure/railing{ + dir = 6 + }, +/turf/open/openspace, +/area/station/science/genetics) +"edi" = ( +/obj/structure/railing{ + dir = 10 + }, +/turf/open/openspace, +/area/station/maintenance/starboard/fore) +"edv" = ( +/obj/structure/reagent_dispensers/cooking_oil, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/service/kitchen/coldroom) +"edK" = ( +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/office) +"edV" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/caution/stand_clear{ + pixel_x = 16; + dir = 1 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"eeb" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/eva) +"eet" = ( +/obj/structure/table/glass, +/obj/effect/spawner/random/medical/minor_healing, +/obj/effect/spawner/random/medical/minor_healing, +/turf/open/floor/iron/dark/small, +/area/station/medical/surgery/theatre) +"eeA" = ( +/obj/item/reagent_containers/cup/glass/bottle/amaretto{ + pixel_x = -5; + pixel_y = 10 + }, +/obj/item/reagent_containers/cup/glass/bottle/fernet{ + pixel_x = 7; + pixel_y = 16 + }, +/obj/item/reagent_containers/cup/soda_cans/sol_dry, +/obj/structure/table/wood, +/obj/item/reagent_containers/cup/glass/bottle/juice/orangejuice{ + pixel_x = 15 + }, +/obj/item/reagent_containers/cup/glass/bottle/vodka{ + pixel_x = -11; + pixel_y = 8 + }, +/turf/open/floor/iron/dark, +/area/station/service/abandoned_gambling_den) +"eeE" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/security/holding_cell) +"eeI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/robotics/lab) +"eeP" = ( +/obj/structure/railing{ + dir = 4 + }, +/mob/living/basic/chicken{ + forced_gender = "male" + }, +/turf/open/floor/grass, +/area/station/service/hydroponics/upper) +"efi" = ( +/obj/structure/table, +/obj/effect/spawner/random/trash/soap, +/obj/machinery/light/small/directional/north, +/obj/effect/spawner/random/trash/janitor_supplies, +/turf/open/floor/plating, +/area/station/maintenance/department/security/upper) +"efG" = ( +/obj/structure/rack, +/obj/item/stack/cable_coil{ + pixel_x = -1; + pixel_y = -3 + }, +/obj/item/wrench, +/obj/item/flashlight/seclite, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"efQ" = ( +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white/corner{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/commons/dorms) +"egf" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/medical/psychology, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/psych{ + name = "Private Psych Room" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/psychology) +"egi" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch" + }, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"egq" = ( +/obj/structure/table/wood, +/obj/machinery/coffeemaker/impressa{ + pixel_y = 5; + pixel_x = 2 + }, +/obj/machinery/digital_clock/directional/north, +/turf/open/floor/carpet, +/area/station/security/detectives_office) +"egv" = ( +/obj/structure/bed/double, +/obj/item/bedsheet/hos/double, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/carpet, +/area/station/command/heads_quarters/hos) +"egC" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"egF" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/construction/mining/aux_base) +"egQ" = ( +/obj/structure/closet/emcloset, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"egS" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + location = "Security" + }, +/obj/machinery/door/window/brigdoor/right/directional/east{ + name = "Security Deliveries"; + req_access = list("security") + }, +/turf/open/floor/iron/large, +/area/station/security/brig/entrance) +"ehm" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/item/folder{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/machinery/door/window/left/directional/north{ + name = "Robotics Desk"; + req_access = list("robotics") + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics_shutters"; + name = "Robotics Privacy Shutters"; + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/robotics/lab) +"ehu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"ehw" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/camera/directional/west{ + c_tag = "Xenobiology Pens - Upper Port"; + network = list("ss13","xeno","rd") + }, +/turf/open/openspace, +/area/station/science/xenobiology) +"ehA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/half, +/area/station/science/ordnance) +"eij" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 6 + }, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"eik" = ( +/obj/effect/turf_decal/siding/white{ + dir = 10 + }, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/obj/effect/turf_decal/tile/purple/diagonal_centre, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/diagonal, +/area/station/science/breakroom) +"eil" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/mineral/stacking_machine{ + input_dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/maintenance/disposal) +"eio" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/bot, +/obj/machinery/camera/directional/south{ + c_tag = "Tool Storage - Lower Auxiliary" + }, +/turf/open/floor/iron/dark, +/area/station/commons/storage/tools) +"eis" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/sign/warning/deathsposal/directional/south, +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/medical1, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/virology) +"eiv" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/item/stack/package_wrap{ + pixel_y = 2 + }, +/obj/item/stack/package_wrap{ + pixel_y = 5 + }, +/obj/item/stack/package_wrap{ + pixel_y = 8 + }, +/obj/structure/rack/shelf, +/obj/item/sales_tagger{ + pixel_x = -3 + }, +/obj/item/sales_tagger{ + pixel_x = 9 + }, +/obj/item/hand_labeler, +/obj/item/hand_labeler_refill, +/turf/open/floor/iron/dark, +/area/station/commons/storage/primary) +"eiA" = ( +/obj/machinery/suit_storage_unit/engine, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/machinery/camera/directional/north{ + c_tag = "Engineering - Storage"; + network = list("ss13","engine") + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/storage) +"eiB" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/small/directional/north, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"eiS" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/hfr_room) +"ejg" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/small, +/area/station/medical/paramedic) +"eji" = ( +/obj/effect/turf_decal/tile/brown/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/camera/directional/east{ + c_tag = "Arrivals - Public Mining Dock" + }, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/commons/storage/mining) +"ejl" = ( +/obj/structure/stairs/south, +/turf/open/floor/plating, +/area/station/construction/mining/aux_base) +"ejr" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/machinery/digital_clock/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/closet/wardrobe/miner, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) +"ejy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/red/real_red/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/cafeteria, +/area/station/commons/storage/mining) +"ejA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"ejB" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/openspace, +/area/station/maintenance/aft/greater) +"ejG" = ( +/obj/structure/stairs/east, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red/real_red{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/exit/departure_lounge) +"ejP" = ( +/obj/machinery/door/window/left/directional/west{ + name = "Hydroponics Desk"; + req_access = list("hydroponics") + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "hydroponics_counter"; + name = "Hydroponics Counter Shutters" + }, +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics/upper) +"ejR" = ( +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white/small, +/area/station/science/genetics) +"ekq" = ( +/obj/effect/turf_decal/siding/wideplating_new{ + dir = 4 + }, +/obj/structure/fans/tiny/invisible, +/turf/open/floor/iron/white/diagonal, +/area/station/common/spa) +"eku" = ( +/obj/machinery/light_switch/directional/north, +/turf/open/floor/iron/white/side{ + dir = 4 + }, +/area/station/command/heads_quarters/rd) +"ekw" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/ai_monitored/command/nuke_storage) +"ekC" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/folder/white, +/obj/item/stamp/head/cmo{ + pixel_y = 7; + pixel_x = 8 + }, +/obj/item/flashlight/pen, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/carpet/blue, +/area/station/command/heads_quarters/cmo) +"ekD" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"ekI" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/service/hydroponics) +"ekL" = ( +/obj/effect/turf_decal/tile/dark/diagonal_edge, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/kitchen/diagonal, +/area/station/security/prison) +"ekV" = ( +/obj/machinery/door/window/right/directional/south{ + name = "Fitness Ring" + }, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron/dark/smooth_half, +/area/station/common/wrestling/arena) +"ekZ" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/maintenance/port/aft) +"elc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/aisat/equipment) +"elh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/recreation) +"elk" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/ai_monitored/turret_protected/aisat/maint) +"elo" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/coffee_condi_display{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/reagent_containers/cup/glass/ice{ + pixel_x = 10; + pixel_y = 3 + }, +/turf/open/floor/wood/tile, +/area/station/hallway/secondary/exit/departure_lounge) +"elz" = ( +/obj/effect/turf_decal/vg_decals/atmos/plasma, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos/upper) +"elA" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/light/cold/directional/north, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/vending/coffee, +/turf/open/floor/iron/small, +/area/station/commons/storage/mining) +"elC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"elD" = ( +/obj/effect/turf_decal/tile/dark_blue, +/obj/structure/chair/office, +/obj/effect/landmark/start/security_officer, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/security/office) +"elF" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/science/rd, +/obj/machinery/door/airlock/rd{ + name = "Research Director's Office" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/rd) +"emn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple/half{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/bitrunning/den) +"emu" = ( +/obj/machinery/button/door/directional/east{ + id = "private_2"; + name = "Privacy Bolts"; + normaldoorcontrol = 1; + specialfunctions = 4; + pixel_y = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/commons/dorms/room2) +"emv" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch" + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/turf/open/floor/plating, +/area/station/hallway/secondary/exit/departure_lounge) +"emw" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/command/bridge) +"emB" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/camera/directional/north{ + c_tag = "Medbay - Paramedic Dispatch"; + network = list("ss13","medical") + }, +/obj/effect/turf_decal/tile/blue/full, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/item/kirbyplants/synthetic/plant27, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/paramedic) +"emG" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/requests_console/auto_name/directional/south, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/mapping_helpers/requests_console/ore_update, +/obj/effect/mapping_helpers/requests_console/information, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"emH" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"emI" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "AI Chamber Entrance Shutters"; + name = "AI Chamber Entrance Shutters" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/ai_monitored/turret_protected/ai) +"emJ" = ( +/obj/machinery/computer/teleporter{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/plating, +/area/station/command/teleporter) +"emO" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/machinery/button/door/directional/east{ + id = "rdoffice"; + name = "Privacy Control"; + req_access = list("rd") + }, +/obj/structure/fireaxecabinet/mechremoval/directional/south, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/rd) +"emS" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/machinery/door/airlock/external{ + name = "Escape Pod" + }, +/obj/effect/mapping_helpers/airlock/unres, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"end" = ( +/obj/effect/turf_decal/siding/dark_red{ + dir = 4 + }, +/obj/effect/turf_decal/siding/white, +/obj/structure/railing, +/obj/structure/girder/reinforced, +/turf/open/floor/iron/dark/smooth_large, +/area/station/common/laser_tag) +"enA" = ( +/obj/machinery/vending/autodrobe, +/obj/effect/turf_decal/siding/white{ + dir = 9 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/small, +/area/station/common/cryopods) +"enI" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/department/bridge) +"enL" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"enO" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/stool/bar/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/abandon_diner) +"enX" = ( +/obj/effect/turf_decal/trimline/red/filled/warning, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 1 + }, +/obj/structure/railing, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/machinery/door/poddoor/shutters/window/preopen{ + dir = 8; + id = "briggatez2"; + name = "Brig Gate Shutters" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/security/brig/entrance) +"eob" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/bot, +/obj/machinery/light/warm/directional/west, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos/office) +"eoe" = ( +/obj/effect/turf_decal/siding/white{ + dir = 10 + }, +/obj/structure/window/reinforced/tinted/frosted/spawner/directional/west, +/obj/structure/closet/secure_closet/personal/patient, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/turf/open/floor/wood/parquet, +/area/station/medical/patients_rooms) +"eof" = ( +/obj/effect/turf_decal/trimline/dark_red/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/security/prison) +"eog" = ( +/obj/structure/sign/painting/library{ + pixel_y = 32 + }, +/obj/structure/chair/wood, +/turf/open/floor/carpet/green, +/area/station/service/library) +"eoj" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/command/teleporter) +"eot" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"eoK" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"epk" = ( +/obj/item/stack/rods/fifty, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"epw" = ( +/obj/machinery/teleport/station, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/station/command/teleporter) +"epE" = ( +/obj/effect/turf_decal/tile/dark_red/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/common/wrestling/arena) +"epH" = ( +/obj/machinery/computer/records/security, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/requests_console/auto_name/directional/north, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/mapping_helpers/requests_console/announcement, +/obj/effect/mapping_helpers/requests_console/information, +/obj/effect/turf_decal/box, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hos) +"epI" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Secure Tech Storage" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/tech_storage, +/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/storage/tech) +"epO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/engineering/lobby) +"epS" = ( +/obj/structure/sign/clock/directional/west, +/obj/structure/chair/sofa/right{ + color = "2c2c2c" + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/carpet, +/area/station/commons/dorms) +"epT" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/mid_joiner, +/obj/effect/turf_decal/trimline/green/line, +/obj/effect/turf_decal/trimline/green/filled/mid_joiner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_half, +/area/station/service/hydroponics) +"eqe" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral/full, +/obj/structure/closet/crate, +/obj/effect/spawner/random/maintenance/two, +/obj/effect/spawner/random/entertainment/wallet_storage, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/cargo/lobby) +"eqi" = ( +/obj/effect/turf_decal/tile/dark_red{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/science/robotics/augments) +"eqn" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + name = "Primary Common Mining Dock Airlock" + }, +/turf/open/floor/plating, +/area/station/commons/storage/mining) +"eqq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"eqr" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/silver/glass{ + name = "Kitchen" + }, +/obj/effect/mapping_helpers/airlock/access/any/service/kitchen, +/obj/effect/landmark/navigate_destination, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/kitchen) +"eqv" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/engine, +/area/station/science/ordnance/testlab) +"eqy" = ( +/turf/closed/wall/r_wall, +/area/station/command/heads_quarters/hop) +"eqz" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"eqF" = ( +/obj/effect/turf_decal/tile/dark_red{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/central) +"eqL" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/red/directional/west, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"erd" = ( +/turf/open/floor/iron/white, +/area/station/medical/pharmacy) +"erg" = ( +/obj/effect/spawner/random/structure/crate, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron, +/area/station/maintenance/disposal) +"erl" = ( +/obj/effect/spawner/random/structure/table_or_rack, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"ern" = ( +/obj/structure/lattice, +/obj/structure/window/spawner/directional/west, +/obj/structure/window/spawner/directional/east, +/turf/open/openspace, +/area/station/service/hydroponics/upper) +"ero" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/secure_area{ + desc = "A warning sign which reads 'BOMB RANGE"; + name = "BOMB RANGE" + }, +/turf/open/floor/plating/reinforced{ + initial_gas_mix = "TEMP=2.7" + }, +/area/station/science/ordnance/bomb) +"erw" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"erH" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/command) +"erS" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics Foyer" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos/office) +"erW" = ( +/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/commons/storage/mining) +"erX" = ( +/obj/effect/spawner/random/engineering/atmospherics_portable, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"erZ" = ( +/obj/machinery/vending/imported, +/obj/machinery/light/warm/directional/north, +/turf/open/floor/iron/white/herringbone, +/area/station/medical/patients_rooms) +"esc" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/machinery/light/directional/west, +/obj/structure/cable, +/obj/effect/landmark/start/hangover/closet, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"esj" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/light/directional/north, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/hallway/primary/central/aft) +"esk" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer4{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/science/ordnance) +"eso" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/grille/broken, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"esD" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "justice gas pump" + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted, +/obj/effect/turf_decal/box/white, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/security/execution/education) +"esH" = ( +/obj/structure/railing, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"esM" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"esT" = ( +/obj/machinery/firealarm/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/station/security/courtroom) +"esW" = ( +/obj/structure/cable, +/turf/open/floor/carpet/executive, +/area/station/command/heads_quarters/hop) +"esZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/commons/storage/mining) +"eth" = ( +/obj/structure/hedge/opaque, +/obj/structure/window/fulltile, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) +"etm" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/spray/barbers_aid{ + pixel_x = -6 + }, +/obj/item/reagent_containers/spray/quantum_hair_dye{ + pixel_x = 6 + }, +/obj/effect/turf_decal/tile/purple/opposingcorners, +/obj/machinery/digital_clock/directional/west, +/obj/machinery/light/warm/directional/west, +/turf/open/floor/iron/dark, +/area/station/service/barber) +"etu" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/item/kirbyplants/organic/plant22, +/obj/structure/cable, +/obj/machinery/light/warm/directional/west, +/turf/open/floor/carpet/green, +/area/station/command/heads_quarters/nt_rep) +"etE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"etF" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"etP" = ( +/obj/structure/disposalpipe/trunk/multiz{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"etY" = ( +/obj/item/kirbyplants/organic/plant7{ + pixel_x = 4 + }, +/obj/machinery/light/small/blacklight/directional/east, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/commons/dorms/room4) +"eug" = ( +/obj/structure/stairs/north, +/turf/open/floor/plating, +/area/station/science/explab) +"euo" = ( +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/brig/entrance) +"euz" = ( +/turf/open/floor/iron/dark/small, +/area/station/commons/storage/tools) +"euD" = ( +/obj/effect/spawner/random/trash/garbage{ + spawn_scatter_radius = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"euG" = ( +/obj/machinery/modular_computer/preset/command{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/effect/turf_decal/box, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/wood, +/area/station/command/heads_quarters/nt_rep) +"euH" = ( +/obj/structure/chair/pew/left, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/iron/chapel{ + dir = 1 + }, +/area/station/service/chapel) +"euL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/security/checkpoint/escape) +"euQ" = ( +/obj/effect/mapping_helpers/burnt_floor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"evf" = ( +/obj/effect/turf_decal/box, +/obj/structure/reagent_dispensers/wall/virusfood/directional/north, +/obj/machinery/disease2/centrifuge, +/obj/item/reagent_containers/cup/tube, +/obj/item/reagent_containers/cup/tube, +/obj/item/reagent_containers/cup/tube, +/obj/item/reagent_containers/cup/tube, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"evp" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/table/glass, +/obj/machinery/airalarm/directional/west, +/obj/machinery/light/warm/directional/south, +/turf/open/floor/wood/large, +/area/station/service/barber) +"evF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"evI" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/machinery/vending/sustenance, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"evU" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/structure/chair/stool/bar/directional/north, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"evW" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"ewg" = ( +/turf/open/floor/iron, +/area/station/commons/storage/mining) +"ewl" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/ash/large, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"ewo" = ( +/turf/closed/wall, +/area/station/cargo/lobby) +"ewz" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"ewG" = ( +/obj/machinery/light/warm/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/item/radio/intercom/directional/south, +/obj/machinery/computer/department_orders/science{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/science/breakroom) +"ewL" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/command/bridge) +"ewX" = ( +/obj/machinery/power/solar{ + id = "aisolar"; + name = "AI Minisat Solar Array" + }, +/obj/structure/cable, +/turf/open/floor/iron/solarpanel/airless, +/area/station/solars/aisat) +"exl" = ( +/obj/machinery/light/small/directional/south, +/obj/machinery/corral_corner{ + mapping_id = "1" + }, +/obj/machinery/corral_corner{ + mapping_id = "3" + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"exC" = ( +/obj/structure/sink/directional/east, +/obj/structure/mirror/directional/west, +/obj/effect/turf_decal/siding/white{ + dir = 9 + }, +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/obj/machinery/dryer{ + pixel_y = 14 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/white/diagonal, +/area/station/commons/toilet/auxiliary) +"exJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/window/left/directional/west{ + name = "Cargo Desk"; + req_access = list("cargo") + }, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/cargo/sorting) +"exS" = ( +/obj/effect/turf_decal/bot_white, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/machinery/vending/wardrobe/science_wardrobe, +/turf/open/floor/wood/large, +/area/station/science/breakroom) +"eyo" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"eyw" = ( +/obj/structure/disposaloutlet{ + dir = 8 + }, +/obj/effect/turf_decal/box/red, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"eyy" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering Foyer" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/navigate_destination, +/obj/effect/mapping_helpers/airlock/access/any/command/ai_upload, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/lobby) +"eyD" = ( +/obj/structure/stairs/west, +/turf/open/floor/plating, +/area/station/ai_monitored/turret_protected/aisat/teleporter) +"eyE" = ( +/obj/effect/turf_decal/box/corners, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"eyF" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/item/radio/intercom/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/security/execution/education) +"eyJ" = ( +/obj/effect/turf_decal/tile/green/opposingcorners, +/turf/open/floor/iron/checker{ + dir = 1 + }, +/area/station/hallway/primary/central) +"eyM" = ( +/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/effect/landmark/start/librarian, +/turf/open/floor/wood/large, +/area/station/service/library) +"eyS" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, +/obj/machinery/door/airlock/science/glass{ + name = "Xenobiology Lab" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/xenobiology) +"eyY" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/vending/clothing, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/entry) +"ezd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/window/spawner/directional/south, +/obj/effect/spawner/structure/electrified_grille, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"ezq" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"ezr" = ( +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"ezx" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/side{ + dir = 9 + }, +/area/station/hallway/primary/central/fore) +"ezG" = ( +/obj/structure/table, +/obj/item/clothing/suit/apron/chef, +/obj/item/book/manual/wiki/cooking_to_serve_man, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"ezI" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar/fourcorners, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/iron/checker, +/area/station/service/kitchen/diner) +"ezK" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"eAd" = ( +/obj/structure/ore_vein/diamond, +/turf/open/misc/asteroid/moon/airless, +/area/station/asteroid) +"eAg" = ( +/obj/structure/sign/painting/library{ + pixel_y = 32 + }, +/obj/machinery/light/warm/directional/north, +/obj/structure/chair/wood, +/turf/open/floor/carpet/green, +/area/station/service/library) +"eAx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/security/prison) +"eAA" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"eAO" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"eAP" = ( +/obj/machinery/power/supermatter_crystal/engine, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"eBc" = ( +/obj/effect/turf_decal/tile/red/real_red{ + dir = 4 + }, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/exit/escape_pod) +"eBi" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/table/reinforced, +/obj/item/clothing/head/helmet/alt{ + pixel_y = 9; + pixel_x = -9 + }, +/obj/item/clothing/head/helmet/alt{ + pixel_y = 9; + pixel_x = -1 + }, +/obj/item/clothing/head/helmet/alt{ + pixel_y = 9; + pixel_x = 7 + }, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = -8 + }, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/engine, +/area/station/ai_monitored/security/armory) +"eBo" = ( +/turf/closed/wall/r_wall, +/area/station/service/library) +"eBr" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"eBt" = ( +/obj/structure/bookcase/random/adult, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/station/security/prison) +"eBw" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"eBy" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/light/small/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"eBG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/maintenance/port/greater) +"eBM" = ( +/obj/machinery/atmospherics/pipe/bridge_pipe/general/visible, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"eBO" = ( +/obj/effect/turf_decal/arrows{ + dir = 8; + pixel_x = 16 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/cargo/storage) +"eBQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/brig/entrance) +"eBU" = ( +/obj/item/radio/intercom/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/maintenance/disposal/incinerator) +"eCg" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"eCx" = ( +/obj/item/kirbyplants/organic/plant21, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/aisat/teleporter) +"eCE" = ( +/obj/effect/turf_decal/tile/blue/full, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/treatment_center) +"eCF" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"eCM" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/spawner/random/structure/closet_private, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/commons/dorms/room5) +"eCN" = ( +/obj/effect/turf_decal/tile/green/opposingcorners, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/virology) +"eCT" = ( +/obj/machinery/computer/atmos_control/nitrous_tank, +/obj/effect/turf_decal/box, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"eCU" = ( +/obj/effect/turf_decal/tile/dark_blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/security/office) +"eDb" = ( +/obj/machinery/nuclearbomb/selfdestruct, +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 1 + }, +/turf/open/floor/circuit/green, +/area/station/ai_monitored/command/nuke_storage) +"eDd" = ( +/obj/structure/sign/poster/random/directional/west, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"eDh" = ( +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/structure/chair/sofa/corp/left, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/wood/large, +/area/station/medical/break_room) +"eDt" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/item/storage/cans/sixbeer, +/obj/structure/closet/cabinet{ + name = "\proper bouncer's cabinet" + }, +/obj/machinery/requests_console/auto_name/directional/south, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/mapping_helpers/requests_console/information, +/obj/structure/reagent_dispensers/wall/peppertank/directional/west, +/obj/item/storage/belt/utility, +/obj/item/clothing/under/misc/bouncer, +/obj/item/clothing/mask/whistle, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/security/checkpoint/service) +"eDD" = ( +/obj/structure/table, +/obj/item/stack/sheet/iron/five{ + pixel_y = 6; + pixel_x = 3 + }, +/obj/item/stack/cable_coil/five, +/obj/item/hand_labeler{ + pixel_x = -16; + pixel_y = 5 + }, +/obj/item/stack/package_wrap{ + pixel_x = -16 + }, +/obj/structure/window/spawner/directional/east, +/obj/machinery/door/poddoor/shutters/window{ + dir = 1; + id = "commissary"; + name = "Vacant Commissary Shutters" + }, +/turf/open/floor/plating, +/area/station/commons/vacant_room/commissary) +"eDH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/generic_maintenance_landmark, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"eDT" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/structure/sign/warning/docking, +/turf/open/floor/plating, +/area/station/security/checkpoint/escape) +"eDZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark/side, +/area/station/engineering/atmos/hfr_room) +"eEd" = ( +/obj/machinery/light/warm/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/stairs/left, +/area/station/cargo/storage) +"eEh" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/machinery/firealarm/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/security/brig/entrance) +"eEy" = ( +/obj/structure/trash_pile, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"eEE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"eEQ" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Tech Storage Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/tech_storage, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/engineering/storage/tech) +"eEX" = ( +/obj/structure/plasticflaps/opaque{ + name = "Science Deliveries" + }, +/turf/open/floor/iron/large, +/area/station/maintenance/port/fore) +"eFl" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners{ + dir = 1 + }, +/obj/structure/chair/stool/bar/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/checker, +/area/station/maintenance/abandon_diner) +"eFo" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/commons/storage/primary) +"eFq" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch" + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/medical/pharmacy) +"eFI" = ( +/obj/structure/chair/wood{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/carpet, +/area/station/commons/dorms) +"eGe" = ( +/obj/structure/chair/sofa/bench/left, +/obj/effect/turf_decal/box/corners, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/turf/open/floor/iron/small, +/area/station/security/checkpoint/escape) +"eGf" = ( +/obj/effect/spawner/random/engineering/atmospherics_portable, +/turf/open/floor/iron, +/area/station/maintenance/port/fore) +"eGn" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible/layer4{ + dir = 9 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos) +"eGr" = ( +/turf/open/openspace, +/area/station/commons/storage/primary) +"eGs" = ( +/turf/closed/wall, +/area/station/commons/storage/tools) +"eGH" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/commons/storage/mining) +"eGW" = ( +/obj/structure/rack, +/obj/item/reagent_containers/cup/bottle/acidic_buffer{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/reagent_containers/cup/bottle/basic_buffer{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/reagent_containers/cup/bottle/formaldehyde{ + pixel_x = -5; + pixel_y = -2 + }, +/obj/item/reagent_containers/cup/bottle/mercury{ + pixel_x = 7; + pixel_y = -2 + }, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/pharmacy) +"eGZ" = ( +/obj/machinery/fax{ + fax_name = "Psychology Office"; + name = "Psychology Office Fax Machine"; + pixel_y = 3 + }, +/obj/structure/table/wood, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/requests_console/auto_name/directional/east, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/machinery/light/warm/directional/east, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/psychology) +"eHa" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/holopad, +/turf/open/floor/iron, +/area/station/engineering/main) +"eHi" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 1 + }, +/obj/effect/mapping_helpers/mail_sorting/science/genetics, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"eHr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/computer/accounting{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/hop) +"eHt" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/airalarm/directional/south, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"eHA" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/hallway/primary/central) +"eHL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/station/engineering/main) +"eHT" = ( +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/obj/effect/turf_decal/siding/red{ + dir = 8 + }, +/obj/machinery/computer/warrant{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/security/warden) +"eHV" = ( +/obj/machinery/power/port_gen/pacman/pre_loaded, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"eIb" = ( +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Holodeck Arcade Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/common/arcade) +"eIc" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners{ + dir = 1 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron/checker, +/area/station/maintenance/abandon_diner) +"eIv" = ( +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"eIz" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/white, +/area/station/medical/pharmacy) +"eIA" = ( +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"eIP" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "kitchen_privacy"; + name = "Kitchen Privacy Shutters" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/cafeteria{ + dir = 5 + }, +/area/station/service/kitchen) +"eIY" = ( +/obj/machinery/corral_corner{ + mapping_id = "4" + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"eJb" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/turf/open/floor/iron/white/smooth_edge{ + dir = 1 + }, +/area/station/medical/treatment_center) +"eJn" = ( +/obj/machinery/light/blacklight/directional/west, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"eJo" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "hop"; + name = "Privacy Shutters" + }, +/turf/open/floor/plating, +/area/station/command/heads_quarters/hop) +"eJC" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/pump, +/obj/machinery/camera/directional/east{ + c_tag = "Atmospherics - Upper Deck Starboard"; + network = list("ss13","engine") + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos/upper) +"eJG" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible/layer1, +/turf/open/floor/engine, +/area/station/science/ordnance) +"eJU" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/computer/pod/old/mass_driver_controller/chapelgun{ + pixel_y = 3 + }, +/turf/open/floor/wood/large, +/area/station/service/chapel/funeral) +"eKb" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/cargo/storage) +"eKg" = ( +/obj/item/radio/intercom{ + broadcasting = 1; + listening = 0; + name = "Station Intercom (Court)"; + pixel_x = -16 + }, +/obj/item/clipboard{ + pixel_y = 4 + }, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/security_space_law{ + pixel_y = 3; + pixel_x = 6 + }, +/turf/open/floor/iron/diagonal, +/area/station/security/courtroom) +"eKl" = ( +/obj/effect/spawner/random/trash/moisture_trap, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"eKm" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/iron/dark, +/area/station/medical/break_room) +"eKI" = ( +/obj/machinery/button/elevator/directional/north{ + id = "arrivals_lift" + }, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"eKV" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/station/security/lockers) +"eLf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/engine, +/area/station/engineering/main) +"eLp" = ( +/obj/effect/spawner/random/trash/garbage, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"eLq" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/station/service/library/lounge) +"eLr" = ( +/obj/structure/railing, +/obj/machinery/light/warm/directional/west, +/turf/open/openspace, +/area/station/engineering/atmos/upper) +"eLt" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/lattice, +/turf/open/openspace, +/area/station/hallway/primary/central) +"eLu" = ( +/obj/effect/turf_decal/tile/red/real_red, +/obj/machinery/camera/directional/south{ + c_tag = "Arrivals - Lower Hallway" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/corner{ + dir = 8 + }, +/area/station/hallway/secondary/entry) +"eLy" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/structure/closet{ + name = "brig officer's locker" + }, +/obj/machinery/airalarm/directional/north, +/obj/machinery/light/small/blacklight/directional/north, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/security/evidence) +"eLF" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Bridge" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "bridge-right" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/bridge) +"eLT" = ( +/turf/closed/wall, +/area/station/commons/dorms/room3) +"eMd" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"eMq" = ( +/turf/open/floor/iron, +/area/station/construction/mining/aux_base) +"eMT" = ( +/obj/effect/turf_decal/tile/green/opposingcorners, +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/white, +/area/station/medical/virology) +"eNf" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/table/wood/poker, +/obj/effect/spawner/random/entertainment/gambling, +/turf/open/floor/wood/tile, +/area/station/commons/lounge) +"eNh" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/vending/games, +/turf/open/floor/wood/large, +/area/station/service/library) +"eNl" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/damaged_window, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"eNq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/command/meeting_room/council) +"eND" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 8 + }, +/area/station/command/bridge) +"eNE" = ( +/obj/structure/sink/kitchen/directional/east, +/obj/machinery/airalarm/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/effect/turf_decal/tile/dark/diagonal_edge, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/execution/education) +"eOc" = ( +/turf/open/openspace, +/area/station/medical/chemistry) +"eOk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Arrivals Hallway" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/entry) +"eOC" = ( +/turf/open/floor/iron/dark/diagonal, +/area/station/hallway/primary/central/fore) +"eOW" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"ePd" = ( +/turf/closed/wall, +/area/station/maintenance/aft/greater) +"ePj" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/machinery/light/small/directional/north, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 4 + }, +/area/station/security/interrogation) +"ePk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"ePt" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"ePv" = ( +/obj/structure/cable, +/obj/structure/ladder, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"ePD" = ( +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/maintenance/aft/upper) +"ePE" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/service/chapel) +"ePI" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/trunk/multiz/down{ + dir = 8 + }, +/obj/structure/railing, +/turf/open/openspace, +/area/station/maintenance/port/greater) +"ePJ" = ( +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/mapping_helpers/burnt_floor, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/plastic, +/turf/open/floor/plating, +/area/station/maintenance/central) +"ePT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"eQf" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark/smooth_half, +/area/station/cargo/storage) +"eQi" = ( +/obj/effect/turf_decal/tile/dark_blue, +/obj/machinery/status_display/door_timer{ + id = "Cell 2"; + name = "Cell 2"; + pixel_y = -32 + }, +/obj/machinery/camera/directional/south{ + c_tag = "Security - Holding Cells"; + network = list("ss13","prison") + }, +/obj/machinery/light/cold/directional/east, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/security/holding_cell) +"eQr" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"eQs" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"eQv" = ( +/obj/structure/lattice, +/obj/structure/railing, +/obj/structure/window/spawner/directional/south, +/obj/structure/window/spawner/directional/north, +/turf/open/openspace, +/area/station/service/hydroponics/upper) +"eQx" = ( +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/item/kirbyplants/organic/plant21, +/turf/open/floor/iron/diagonal, +/area/station/security/courtroom) +"eQz" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/item/clothing/glasses/sunglasses, +/obj/effect/spawner/random/maintenance/three, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"eQD" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/digital_clock/directional/east, +/turf/open/floor/plating, +/area/station/hallway/primary/central) +"eQE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/closet/l3closet/janitor, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/janitor) +"eQK" = ( +/obj/structure/lattice, +/obj/structure/window/spawner/directional/south, +/obj/structure/window/spawner/directional/north, +/turf/open/openspace, +/area/station/cargo/office) +"eQN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/diagonal, +/area/station/commons/fitness/recreation) +"eQQ" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"eQW" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/obj/machinery/door/poddoor/preopen{ + id = "Xtestlab"; + name = "Test Chamber Blast Door" + }, +/turf/open/floor/plating, +/area/station/science/xenobiology) +"eQX" = ( +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"eRd" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/security/detective, +/obj/machinery/door/airlock/wood{ + name = "Detective's Office" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/detectives_office) +"eRf" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/white/smooth_half, +/area/station/science/xenobiology) +"eRh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/security/range) +"eRr" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/command) +"eRz" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/light/cold/directional/south, +/obj/machinery/status_display/ai/directional/south, +/obj/item/kirbyplants/organic/plant21, +/turf/open/floor/wood/large, +/area/station/tcommsat/computer) +"eRG" = ( +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"eRI" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood/tile, +/area/station/commons/lounge) +"eRQ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"eRV" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/l3closet/scientist, +/obj/machinery/vending/wallmed/directional/east, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/iron, +/area/station/command/gateway) +"eRW" = ( +/obj/structure/sign/departments/aisat/directional/south, +/obj/structure/sign/warning/secure_area/directional/west, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/tcommsat/computer) +"eRX" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) +"eSl" = ( +/obj/structure/fluff/paper/stack, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/sign/poster/random/directional/east, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) +"eSp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark/telecomms, +/area/station/science/server) +"eSq" = ( +/obj/item/clothing/under/color/red, +/obj/item/clothing/ears/earmuffs, +/obj/structure/closet/lasertag/red, +/obj/item/clothing/under/color/red, +/obj/effect/turf_decal/tile/dark_red/half/contrasted{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/rebels_unite/directional/east, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/common/laser_tag) +"eSv" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/space/basic, +/area/space/nearstation) +"eSA" = ( +/obj/machinery/space_heater/improvised_chem_heater, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron/showroomfloor, +/area/station/maintenance/port/aft) +"eSE" = ( +/obj/machinery/computer/crew{ + dir = 1 + }, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/paramedic) +"eSF" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/item/kirbyplants/synthetic/plant27, +/obj/machinery/duct, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"eSG" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/o_plus{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/reagent_containers/blood/o_minus, +/obj/item/reagent_containers/blood/b_plus, +/obj/item/reagent_containers/blood/b_minus, +/obj/item/reagent_containers/blood/a_plus, +/obj/item/reagent_containers/blood/a_minus, +/obj/item/reagent_containers/blood/lizard, +/obj/item/reagent_containers/blood/lizard, +/obj/item/reagent_containers/blood/ethereal, +/obj/item/reagent_containers/blood, +/obj/item/reagent_containers/blood, +/obj/item/reagent_containers/blood, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/virology) +"eSH" = ( +/turf/open/floor/iron, +/area/station/maintenance/port/fore) +"eTh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/medical/treatment_center) +"eTj" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced/tinted, +/obj/structure/cable/layer1, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/structure/cable/layer3, +/turf/open/floor/plating, +/area/station/ai_monitored/turret_protected/ai) +"eTq" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8; + name = "Air to Distro" + }, +/turf/open/floor/engine, +/area/station/engineering/atmos) +"eTr" = ( +/obj/structure/disposalpipe/junction, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"eTG" = ( +/obj/effect/turf_decal/tile/green/opposingcorners, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/checker{ + dir = 1 + }, +/area/station/hallway/secondary/recreation) +"eTJ" = ( +/obj/machinery/computer/libraryconsole/bookmanagement{ + dir = 1; + pixel_y = 5 + }, +/obj/structure/table/wood, +/obj/structure/window/spawner/directional/south, +/turf/open/floor/carpet/green, +/area/station/service/library/lounge) +"eUe" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"eUt" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood, +/area/station/service/library/lounge) +"eUE" = ( +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/service/library/lounge) +"eUG" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/cargo/miningdock) +"eUI" = ( +/turf/open/floor/iron/small, +/area/station/science/robotics/lab) +"eUJ" = ( +/obj/effect/spawner/random/maintenance, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"eUK" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/exit/departure_lounge) +"eUL" = ( +/turf/closed/wall/r_wall, +/area/space/nearstation) +"eUQ" = ( +/turf/open/floor/plating, +/area/station/maintenance/department/security/lower) +"eUZ" = ( +/obj/structure/transit_tube/station/dispenser/reverse/flipped{ + dir = 4 + }, +/turf/open/floor/glass/reinforced, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"eVe" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/turf/open/floor/plating, +/area/station/engineering/supermatter/room) +"eVg" = ( +/obj/effect/spawner/random/techstorage/rnd_all, +/obj/structure/table/glass, +/turf/open/floor/iron/dark/small, +/area/station/engineering/storage/tech) +"eVx" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/bed/dogbed/ian, +/obj/machinery/keycard_auth/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/mapping_helpers/iannewyear, +/obj/effect/mapping_helpers/ianbirthday, +/mob/living/basic/pet/dog/corgi/ian, +/turf/open/floor/wood, +/area/station/command/heads_quarters/hop) +"eVy" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/obj/machinery/vending/cart, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/command/heads_quarters/hop) +"eVK" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/machinery/growing/tray, +/turf/open/misc/dirt/planet, +/area/station/security/prison) +"eVN" = ( +/obj/machinery/grill, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/bot, +/obj/machinery/light/small/directional/east, +/turf/open/floor/iron/dark/smooth_large, +/area/station/maintenance/port/aft) +"eVS" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/spawner/random/structure/closet_private, +/obj/effect/spawner/random/maintenance/six, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/herringbone, +/area/station/maintenance/port/fore) +"eVX" = ( +/obj/effect/turf_decal/siding/dark_blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/holding_cell) +"eWc" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"eWs" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/airalarm/directional/east, +/obj/item/kirbyplants/organic/plant22, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/dark/corner, +/area/station/hallway/secondary/recreation) +"eWu" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/small, +/area/station/science/xenobiology) +"eWy" = ( +/obj/effect/turf_decal/lunar_sand/plating, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"eWz" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/box, +/obj/machinery/power/smes/full, +/turf/open/floor/plating, +/area/station/engineering/gravity_generator) +"eWT" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"eWV" = ( +/obj/structure/railing{ + dir = 5 + }, +/turf/open/openspace, +/area/station/maintenance/aft/greater) +"eXf" = ( +/obj/structure/grille, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"eXh" = ( +/obj/structure/dresser, +/obj/machinery/light/small/directional/south, +/turf/open/floor/carpet/black, +/area/station/command/heads_quarters/qm) +"eXz" = ( +/obj/structure/table/wood, +/obj/item/storage/lockbox/medal{ + pixel_y = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain) +"eXC" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/machinery/light/directional/west, +/obj/structure/cable, +/obj/effect/turf_decal/bot_white, +/obj/machinery/composters, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/service/hydroponics) +"eXI" = ( +/obj/machinery/photocopier, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/iron/dark/small, +/area/station/command/heads_quarters/rd) +"eXJ" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack/shelf, +/obj/item/stack/sheet/iron/fifty{ + pixel_x = 4 + }, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = -4 + }, +/obj/item/stack/rods/fifty, +/obj/machinery/firealarm/directional/south, +/obj/machinery/light/warm/directional/south, +/obj/structure/cable, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_y = 3; + pixel_x = -6 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_y = 3; + pixel_x = 6 + }, +/turf/open/floor/iron, +/area/station/engineering/supermatter/room) +"eXO" = ( +/obj/structure/rack/shelf, +/obj/item/crowbar, +/obj/item/wrench, +/obj/effect/spawner/random/engineering/tool, +/obj/effect/turf_decal/trimline/yellow/end{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/mid_joiner, +/obj/effect/spawner/random/engineering/toolbox{ + pixel_y = -6 + }, +/turf/open/floor/iron/dark/small, +/area/station/hallway/primary/central/aft) +"eXR" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/white, +/area/station/science/xenobiology) +"eXY" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/turf/open/openspace, +/area/station/engineering/atmos/upper) +"eYb" = ( +/obj/effect/turf_decal/trimline/neutral/mid_joiner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/medical/morgue) +"eYd" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/security/entrance, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/warning, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/security/glass{ + id_tag = "outerbrig"; + name = "Brig Entrance" + }, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/security/brig/entrance) +"eYk" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 8 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"eYo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/scientist, +/turf/open/floor/iron/white, +/area/station/science/explab) +"eYs" = ( +/obj/structure/table/wood, +/obj/item/paper_bin/carbon{ + pixel_y = 4 + }, +/obj/item/pen{ + pixel_y = 4 + }, +/obj/item/storage/pill_bottle/psicodine{ + pixel_x = 12; + pixel_y = 12 + }, +/obj/machinery/firealarm/directional/north, +/obj/machinery/light/warm/directional/west, +/turf/open/floor/carpet, +/area/station/medical/psychology) +"eYM" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/machinery/atmospherics/pipe/smart/simple/brown/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/engineering/atmos/upper) +"eYU" = ( +/turf/open/floor/plating, +/area/station/construction/mining/aux_base) +"eYZ" = ( +/obj/effect/turf_decal/trimline/red/filled/warning, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 1 + }, +/obj/structure/railing, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/machinery/door/poddoor/shutters/window/preopen{ + dir = 8; + id = "briggatez1"; + name = "Brig Gate Shutters" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/security/brig/entrance) +"eZe" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/railing, +/turf/open/floor/iron/edge, +/area/station/hallway/primary/central/fore) +"eZf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/violet/visible{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"eZA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/robotics/lab) +"eZH" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"eZM" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/lunar_sand/plating, +/turf/open/floor/engine/hull, +/area/station/asteroid) +"eZV" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/cargo/storage) +"fac" = ( +/turf/open/space/openspace, +/area/space) +"fah" = ( +/obj/effect/turf_decal/siding/white, +/obj/effect/turf_decal/tile/dark_green/half/contrasted, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/science/circuits) +"fak" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"faA" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/stripes/blue/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/aisat_interior) +"faJ" = ( +/obj/effect/turf_decal/tile/dark_blue/half, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_half, +/area/station/security/office) +"faT" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"faW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"fbg" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"fbu" = ( +/obj/effect/spawner/random/trash/garbage, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"fbL" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/siding/green{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/siding/green{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/vending/hydroseeds, +/turf/open/floor/iron/dark/smooth_half, +/area/station/service/hydroponics) +"fbN" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/lesser) +"fbS" = ( +/obj/structure/closet, +/obj/item/reagent_containers/cup/glass/bottle/beer{ + desc = "Takes you to a whole new level of thinking."; + name = "Meta-Cider" + }, +/obj/effect/spawner/random/maintenance, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"fca" = ( +/obj/machinery/computer/station_alert{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/aisat/teleporter) +"fcd" = ( +/obj/structure/sign/poster/random/directional/east, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/maintenance/starboard/greater) +"fce" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/landmark/start/janitor, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/service/janitor) +"fcB" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/machinery/vending/boozeomat, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/wood/parquet, +/area/station/command/heads_quarters/captain) +"fcQ" = ( +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + name = "CO2 to Pure" + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"fdc" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/station/engineering/atmos/upper) +"fdC" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/science/robotics, +/obj/machinery/door/airlock/research{ + name = "Robotics Lab" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/robotics/lab) +"fdH" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 9 + }, +/turf/open/floor/iron/dark/small, +/area/station/security/execution/education) +"fdJ" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/science/ordnance) +"fdV" = ( +/obj/machinery/modular_computer/preset/id{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/obj/machinery/light/warm/directional/west, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hos) +"feh" = ( +/obj/structure/ladder, +/obj/effect/turf_decal/lunar_sand, +/obj/machinery/firealarm/directional/east, +/obj/machinery/camera/directional/east{ + c_tag = "Xenobiology Pens - Starboard"; + network = list("ss13","xeno","rd") + }, +/turf/open/floor/plating, +/area/station/science/xenobiology) +"fet" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/lattice, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/station/maintenance/department/science/xenobiology) +"feC" = ( +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"feJ" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/entry) +"feP" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"ffd" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/tile, +/area/station/commons/lounge) +"fff" = ( +/obj/structure/chair/office, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/landmark/start/cargo_technician, +/turf/open/floor/iron/dark/small, +/area/station/cargo/drone_bay) +"ffg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/medical/medbay/central) +"ffm" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/psychology) +"ffp" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/stairs, +/area/station/engineering/storage) +"ffw" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/blueshield) +"ffC" = ( +/obj/effect/turf_decal/trimline/red/filled/warning, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 1 + }, +/obj/machinery/flasher/directional/south{ + id = "brigflashdoorz2" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/security/brig/entrance) +"ffK" = ( +/obj/item/kirbyplants/synthetic/plant28, +/obj/machinery/camera/directional/north{ + c_tag = "Science - Research & Development"; + network = list("ss13","rd") + }, +/turf/open/floor/glass/reinforced, +/area/station/science/research) +"ffR" = ( +/obj/effect/spawner/random/structure/steam_vent, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"ffS" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"ffU" = ( +/turf/closed/wall/r_wall, +/area/station/bitrunning/den) +"fgl" = ( +/obj/effect/spawner/random/maintenance/three, +/obj/structure/closet/crate/bin, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/wood, +/area/station/service/abandoned_gambling_den) +"fgm" = ( +/obj/machinery/camera/directional/south{ + c_tag = "Medbay - Chemistry Lower South"; + network = list("ss13","medbay") + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"fgt" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/machinery/status_display/ai/directional/east, +/obj/structure/railing, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/ai) +"fgw" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"fgJ" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/light/warm/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/engineering/storage) +"fgR" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/science/explab) +"fgU" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/maintenance/starboard/fore) +"fgY" = ( +/obj/structure/closet, +/obj/effect/spawner/random/maintenance/three, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"fhg" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/robotics/mechbay) +"fhk" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/transit_tube/horizontal, +/turf/open/floor/plating, +/area/station/science/xenobiology/hallway) +"fht" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/exit/departure_lounge) +"fhw" = ( +/obj/machinery/door/window/left/directional/west{ + name = "Hydroponics Desk"; + req_access = list("hydroponics") + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "hydroponics_counter"; + name = "Hydroponics Counter Shutters" + }, +/obj/machinery/door/firedoor, +/obj/machinery/biogenerator, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics/upper) +"fhU" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/transit_tube, +/turf/open/floor/plating, +/area/station/engineering/transit_tube) +"fhY" = ( +/turf/closed/wall, +/area/station/maintenance/central/lesser) +"fid" = ( +/obj/machinery/fax{ + fax_name = "Law Office"; + name = "Law Office Fax Machine"; + pixel_y = 3 + }, +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/station/service/lawoffice) +"fii" = ( +/obj/structure/table, +/obj/item/storage/medkit/regular{ + pixel_y = 4 + }, +/obj/item/paper/fluff/holodeck/disclaimer, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/recreation) +"fiu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/pharmacy) +"fiw" = ( +/obj/machinery/door/firedoor, +/obj/structure/railing, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/medbay/lobby) +"fiG" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/machinery/atmospherics/pipe/smart/simple/supply/visible, +/turf/open/floor/plating, +/area/station/engineering/atmos) +"fiP" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/command/gateway) +"fiQ" = ( +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 5 + }, +/obj/machinery/camera/directional/west{ + c_tag = "Atmospherics - Lower Deck Port"; + network = list("ss13","engine") + }, +/turf/open/floor/engine, +/area/station/engineering/atmos) +"fiR" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/box, +/obj/machinery/power/smes/full, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"fiT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/obj/machinery/meter, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"fja" = ( +/obj/effect/turf_decal/lunar_sand/plating, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/glass/reinforced, +/area/station/science/xenobiology) +"fjc" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/construction/mining/aux_base) +"fjf" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/herringbone, +/area/station/medical/patients_rooms) +"fju" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/table/wood, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/item/flashlight/lamp{ + pixel_y = 14; + pixel_x = -4 + }, +/obj/item/storage/crayons, +/obj/item/toy/crayon/spraycan{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/toy/crayon/spraycan, +/turf/open/floor/wood/large, +/area/station/service/library) +"fjB" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"fjD" = ( +/obj/machinery/computer/monitor{ + dir = 1; + name = "backup power monitoring console" + }, +/obj/effect/mapping_helpers/burnt_floor, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/maintenance/aft/greater) +"fjL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"fjN" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/security/brig/upper) +"fjZ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"fkd" = ( +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"fkm" = ( +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"fko" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron/white/corner, +/area/station/science/research) +"fkp" = ( +/obj/effect/turf_decal/siding/dark_blue{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/command/meeting_room/council) +"fks" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"fku" = ( +/obj/effect/turf_decal/tile/green/half/contrasted, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/table, +/obj/machinery/fax{ + fax_name = "Service Hallway"; + name = "Service Fax Machine"; + pixel_y = 3 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/service) +"fkK" = ( +/obj/structure/lattice/catwalk, +/obj/effect/landmark/start/botanist, +/turf/open/openspace, +/area/station/service/hydroponics/upper) +"fkP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/hidden, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"fli" = ( +/obj/structure/chair/pew/right{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/obj/machinery/airalarm/directional/west, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/diagonal, +/area/station/security/courtroom) +"flp" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/turf/closed/wall, +/area/station/security/holding_cell) +"flq" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/dark_blue{ + dir = 5 + }, +/obj/machinery/light/cold/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/command/meeting_room/council) +"flB" = ( +/obj/machinery/vending/security, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/engine, +/area/station/security/office) +"flR" = ( +/obj/structure/flora/rock/pile/jungle/style_random, +/turf/open/misc/dirt/planet, +/area/station/medical/virology) +"flY" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/box, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/break_room) +"flZ" = ( +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/machinery/medical_kiosk, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/iron/white, +/area/station/medical/pharmacy) +"fmd" = ( +/obj/structure/closet/crate/trashcart/filled, +/obj/effect/spawner/random/trash/botanical_waste, +/obj/effect/spawner/random/trash/food_packaging, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"fmf" = ( +/obj/machinery/suit_storage_unit/medical, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/storage) +"fmm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/white/corner, +/area/station/hallway/primary/central/fore) +"fms" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/structure/rack/shelf, +/obj/effect/spawner/random/medical/minor_healing, +/obj/item/radio/intercom/directional/west, +/obj/machinery/camera/directional/west{ + c_tag = "Chemistry - Public Pharmacy"; + network = list("ss13","medbay") + }, +/turf/open/floor/iron/white, +/area/station/medical/pharmacy) +"fmv" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/light/small/directional/south, +/obj/structure/cable, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/openspace, +/area/station/maintenance/port/lesser) +"fmz" = ( +/obj/machinery/status_display/ai/directional/south, +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/neutral/anticorner{ + dir = 8 + }, +/turf/open/floor/iron/corner{ + dir = 4 + }, +/area/station/commons/storage/mining) +"fmL" = ( +/obj/effect/turf_decal/box/blue, +/obj/item/aquarium_kit{ + pixel_x = 1 + }, +/obj/item/aquarium_kit{ + pixel_y = -8; + pixel_x = -1 + }, +/obj/structure/rack/shelf, +/turf/open/floor/plastic, +/area/station/common/carpshop) +"fmW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/brig/entrance) +"fmY" = ( +/obj/effect/turf_decal/tile/dark_blue, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/security/office) +"fnf" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"fnh" = ( +/obj/structure/railing{ + dir = 9 + }, +/turf/open/openspace, +/area/station/engineering/main) +"fni" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/engineering/supermatter/room) +"fnz" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron/white/side{ + dir = 4 + }, +/area/station/science/research) +"fnJ" = ( +/obj/effect/spawner/liquids_spawner, +/obj/machinery/light/floor/has_bulb, +/turf/open/floor/lowered/iron/pool/cobble, +/area/station/service/salon) +"fnL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/window/left/directional/south{ + name = "Desk Access"; + req_access = list("bar") + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/bar) +"fnP" = ( +/obj/structure/fluff/paper/stack{ + dir = 6 + }, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/fluff/paper, +/obj/item/paper_bin{ + pixel_x = 14; + pixel_y = -4 + }, +/obj/item/pen/red{ + pixel_y = 9; + pixel_x = -2 + }, +/turf/open/floor/wood, +/area/station/maintenance/starboard/fore) +"fnU" = ( +/obj/effect/spawner/random/engineering/atmospherics_portable, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/starboard/lesser) +"foo" = ( +/obj/structure/table/reinforced, +/obj/machinery/coffeemaker, +/turf/open/floor/wood/large, +/area/station/science/breakroom) +"foq" = ( +/turf/closed/wall, +/area/station/medical/paramedic) +"fou" = ( +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/iron/dark/side, +/area/station/common/wrestling/arena) +"foO" = ( +/obj/effect/turf_decal/tile/bar/fourcorners, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/checker, +/area/station/service/kitchen/diner) +"foR" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/bookbinder, +/turf/open/floor/wood/large, +/area/station/service/library) +"foU" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/security/holding_cell) +"foX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/station/service/chapel) +"foY" = ( +/obj/effect/turf_decal/siding/white, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/commons/dorms) +"foZ" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/service/bar) +"fpg" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/station/engineering/main) +"fpA" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/hallway/primary/central/aft) +"fpG" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"fpI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"fpR" = ( +/obj/effect/turf_decal/trimline/green/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/mid_joiner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/service/hydroponics) +"fqd" = ( +/obj/effect/spawner/random/engineering/material, +/obj/effect/spawner/random/engineering/flashlight, +/obj/structure/closet/crate/trashcart, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"fqf" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) +"fqi" = ( +/obj/structure/table, +/obj/item/storage/box/lights/mixed{ + pixel_x = -12 + }, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"fqv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/computer/records/security{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/obj/machinery/camera/directional/east{ + c_tag = "Bridge - Head of Personnel's Office" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/hop) +"fqI" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/wood/large, +/area/station/service/bar) +"fqN" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"frc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/light/warm/directional/west, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"fre" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"fri" = ( +/obj/effect/turf_decal/vg_decals/atmos/air, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos/upper) +"frl" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing, +/turf/open/openspace, +/area/station/science/xenobiology) +"frm" = ( +/obj/machinery/requests_console/auto_name/directional/south, +/obj/effect/mapping_helpers/requests_console/ore_update, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/mapping_helpers/requests_console/information, +/obj/machinery/camera/directional/south{ + c_tag = "Science - Research Desk"; + network = list("ss13","rd") + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/research) +"frA" = ( +/turf/closed/wall, +/area/station/service/theater) +"frB" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/command) +"frF" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "AI Chamber Entrance Shutters"; + name = "AI Chamber Entrance Shutters" + }, +/obj/structure/cable, +/obj/structure/sign/warning/secure_area/directional/west, +/turf/open/floor/plating, +/area/station/ai_monitored/turret_protected/ai) +"frZ" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/station/service/kitchen/diner) +"fsd" = ( +/obj/item/food/meat/slab/chicken{ + pixel_x = -4; + pixel_y = 1 + }, +/obj/item/food/meat/slab/chicken{ + pixel_y = -6 + }, +/obj/item/food/meat/slab/chicken{ + pixel_y = 3; + pixel_x = 6 + }, +/obj/effect/turf_decal/weather/snow/corner, +/obj/item/food/meat/slab/chicken, +/obj/structure/closet/secure_closet/freezer/empty, +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/food/meat/slab/chicken{ + pixel_y = 2; + pixel_x = -6 + }, +/obj/item/food/meat/slab/chicken{ + pixel_x = 3; + pixel_y = 1 + }, +/obj/item/food/meat/slab/chicken{ + pixel_y = -6; + pixel_x = -3 + }, +/obj/item/food/meat/slab/chicken{ + pixel_y = -1 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron/freezer, +/area/station/maintenance/abandon_diner) +"fsi" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 5 + }, +/obj/machinery/airalarm/directional/south, +/obj/structure/sign/poster/contraband/punch_shit/directional/west, +/obj/structure/punching_bag, +/turf/open/floor/iron/dark/diagonal, +/area/station/maintenance/aft/greater) +"fsk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"fsm" = ( +/turf/closed/wall, +/area/station/maintenance/port/central) +"fsq" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/components/binary/pump/layer2{ + name = "Exfiltrate to Waste" + }, +/obj/machinery/atmospherics/components/binary/pump/layer4{ + name = "Exfiltrate to Port" + }, +/turf/open/openspace, +/area/station/engineering/atmos/hfr_room) +"fsz" = ( +/obj/effect/turf_decal/siding/white, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"fsB" = ( +/obj/machinery/airalarm/directional/west, +/turf/open/floor/iron/dark, +/area/station/medical/treatment_center) +"fsR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/large, +/area/station/service/library) +"fsY" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/security/brig/entrance) +"ftM" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"ftR" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/turf/open/floor/iron/small, +/area/station/hallway/primary/port) +"ftU" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Barbershop Maintenance" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/service/salon) +"ftX" = ( +/obj/effect/turf_decal/tile/neutral/half{ + dir = 4 + }, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/commons/storage/mining) +"fuf" = ( +/obj/machinery/atmospherics/components/tank/oxygen{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/construction/mining/aux_base) +"fuh" = ( +/obj/effect/turf_decal/box/corners, +/obj/machinery/atmospherics/pipe/smart/simple/supply/visible, +/obj/machinery/atmospherics/pipe/bridge_pipe/dark/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos) +"fuj" = ( +/obj/structure/table, +/obj/machinery/fax{ + fax_name = "Paramedic Dispatch"; + name = "Paramedic Dispatch Fax Machine" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/paramedic) +"fuo" = ( +/obj/effect/mapping_helpers/airlock/access/any/medical/surgery, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Secondary Surgical Theatre B" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/surgery/aft) +"fup" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"fur" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"fuu" = ( +/obj/effect/turf_decal/tile/brown/half{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_half, +/area/station/cargo/lobby) +"fuG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/caution/stand_clear{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"fuQ" = ( +/obj/structure/trash_pile, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"fva" = ( +/obj/machinery/atmospherics/components/tank, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/department/science/xenobiology) +"fvc" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/item/flashlight/flare/candle{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/flashlight/flare/candle{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/service/chapel) +"fvj" = ( +/obj/machinery/plumbing/ooze_sucker{ + mapping_id = "1"; + dir = 1 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"fvo" = ( +/obj/machinery/computer/records/medical/laptop, +/obj/effect/turf_decal/siding/wood, +/obj/structure/table/wood, +/obj/machinery/requests_console/auto_name/directional/north, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/mapping_helpers/requests_console/announcement, +/obj/effect/mapping_helpers/requests_console/information, +/obj/machinery/light/warm/directional/east, +/obj/machinery/camera/directional/north{ + c_tag = "Bridge - Blueshield's Office" + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/blueshield) +"fvz" = ( +/obj/effect/turf_decal/stripes/red/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark_red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"fvP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/requests_console/auto_name/directional/east, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/mapping_helpers/requests_console/information, +/obj/machinery/light/cold/directional/east, +/obj/structure/closet{ + name = "brig officer's locker" + }, +/obj/item/storage/belt/security/full, +/turf/open/floor/engine, +/area/station/security/corrections_officer) +"fvY" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/engineering/atmos/upper) +"fvZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"fwe" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"fwn" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/station/command/heads_quarters/captain) +"fwq" = ( +/obj/effect/spawner/random/entertainment/arcade, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/turf/open/floor/eighties, +/area/station/common/arcade) +"fwA" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) +"fwB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Orderly's Office" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/obj/effect/mapping_helpers/airlock/access/any/medical/cmo, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/checkpoint/medical) +"fwH" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/main) +"fwT" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/requests_console/auto_name/directional/east, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/mapping_helpers/requests_console/information, +/obj/machinery/camera/directional/east{ + c_tag = "Atmospherics - Lower Deck Aft"; + network = list("ss13","engine") + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"fxj" = ( +/turf/open/floor/wood, +/area/station/service/chapel) +"fxl" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/marker_beacon/teal, +/turf/open/floor/glass/reinforced, +/area/station/ai_monitored/turret_protected/ai) +"fxu" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/turf/open/floor/glass, +/area/station/service/barber) +"fxO" = ( +/obj/machinery/computer/communications{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"fxU" = ( +/obj/structure/railing, +/obj/machinery/light/cold/directional/north, +/turf/open/openspace, +/area/station/science/genetics) +"fxV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, +/obj/machinery/meter/monitored/distro_loop, +/turf/open/floor/engine, +/area/station/engineering/atmos) +"fyd" = ( +/turf/open/floor/glass/reinforced, +/area/station/hallway/secondary/command) +"fyn" = ( +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/maintenance/department/security/upper) +"fyA" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/security/brig/entrance) +"fyO" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/white, +/area/station/science/ordnance/testlab) +"fyS" = ( +/obj/machinery/duct, +/turf/open/misc/asteroid/moon, +/area/station/science/xenobiology) +"fyU" = ( +/obj/machinery/status_display/evac/directional/west, +/obj/structure/closet/secure_closet/captains, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/captain) +"fzb" = ( +/obj/machinery/suit_storage_unit/cmo, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/cmo) +"fzu" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/table/wood, +/obj/item/food/grown/harebell{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/food/grown/harebell{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/food/grown/harebell, +/obj/machinery/light/warm/directional/north, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/wood/large, +/area/station/service/chapel/funeral) +"fzI" = ( +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/item/kirbyplants/synthetic/plant28, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/paramedic) +"fzQ" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/science/general, +/obj/machinery/door/airlock/science/glass{ + name = "Science Division Access" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/explab) +"fAm" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/structure/bed/dogbed{ + anchored = 1; + name = "Walter's bed" + }, +/mob/living/basic/pet/dog/dobermann/walter, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/blueshield) +"fAx" = ( +/obj/structure/chair/stool/bar/directional/north, +/turf/open/floor/glass/reinforced, +/area/station/science/xenobiology) +"fAH" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/obj/item/radio/intercom/chapel/directional/west, +/turf/open/floor/wood/tile, +/area/station/service/chapel/office) +"fAT" = ( +/obj/effect/turf_decal/arrows{ + dir = 8; + pixel_x = 16 + }, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/cargo/storage) +"fAU" = ( +/obj/structure/railing, +/obj/effect/turf_decal/lunar_sand/plating, +/turf/open/floor/glass/reinforced, +/area/station/science/xenobiology) +"fBo" = ( +/obj/structure/lattice/catwalk, +/obj/effect/landmark/event_spawn, +/turf/open/openspace, +/area/station/service/hydroponics/upper) +"fBt" = ( +/turf/open/openspace, +/area/station/science/cytology) +"fCe" = ( +/turf/closed/wall/r_wall, +/area/station/security/checkpoint/service) +"fCs" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/white/small, +/area/station/medical/surgery/theatre) +"fCI" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/security/checkpoint/customs) +"fCJ" = ( +/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/common/cryopods) +"fCW" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/iron/dark, +/area/station/medical/treatment_center) +"fCX" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Chapel Office Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/service/chapel_office, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/service/chapel/office) +"fDb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/common/cryopods) +"fDo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/two, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"fDp" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/railing{ + dir = 9 + }, +/turf/open/openspace, +/area/station/science/xenobiology) +"fDs" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/iron/grimy, +/area/station/security/detectives_office) +"fDt" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/light/warm/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"fDD" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/turf/open/floor/glass, +/area/station/service/kitchen) +"fDK" = ( +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/virology) +"fDL" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/hallway/secondary/command) +"fDQ" = ( +/obj/machinery/portable_atmospherics/scrubber/huge, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/engineering/atmos/upper) +"fDT" = ( +/obj/effect/turf_decal/trimline/dark_red/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark_red/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/security/prison) +"fEb" = ( +/obj/structure/cable/multilayer/multiz, +/obj/effect/turf_decal/stripes/full, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/station/engineering/main) +"fEc" = ( +/obj/effect/turf_decal/tile/dark_red{ + dir = 4 + }, +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark, +/area/station/science/robotics/augments) +"fEd" = ( +/turf/open/floor/engine/hull/reinforced, +/area/station/asteroid) +"fEg" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"fEs" = ( +/obj/structure/railing, +/turf/open/floor/grass, +/area/station/service/hydroponics/upper) +"fFb" = ( +/obj/structure/tank_holder/anesthetic, +/obj/effect/turf_decal/tile/dark_red, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/showroomfloor, +/area/station/science/robotics/augments) +"fFd" = ( +/obj/effect/spawner/random/engineering/canister, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"fFh" = ( +/obj/machinery/light/cold/directional/south, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plating, +/area/station/engineering/main) +"fFk" = ( +/obj/machinery/button/door/directional/east{ + id = "private_1"; + name = "Privacy Bolts"; + normaldoorcontrol = 1; + specialfunctions = 4; + pixel_y = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/commons/dorms/room1) +"fFv" = ( +/obj/machinery/photocopier, +/obj/effect/turf_decal/bot, +/obj/machinery/light/warm/directional/north, +/turf/open/floor/wood/tile, +/area/station/security/detectives_office) +"fFD" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron/edge, +/area/station/maintenance/port/lesser) +"fFH" = ( +/obj/machinery/camera/directional/west{ + c_tag = "Chapel - Center" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/effect/turf_decal/tile/dark_red/anticorner/contrasted, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/service/chapel) +"fFT" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/end{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/exit/escape_pod) +"fFY" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/primary/central/fore) +"fGe" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/departure_lounge) +"fGg" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/trash_pile, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"fGq" = ( +/obj/machinery/digital_clock/directional/north, +/turf/open/openspace, +/area/station/engineering/atmos/office) +"fGw" = ( +/obj/structure/dresser, +/obj/item/phone{ + pixel_x = 7; + pixel_y = 9 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/blueshield) +"fGB" = ( +/obj/machinery/computer/records/medical{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/obj/effect/mapping_helpers/requests_console/information, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/machinery/requests_console/auto_name/directional/east, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/security/checkpoint/medical) +"fGS" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/side{ + dir = 6 + }, +/area/station/hallway/primary/central) +"fGV" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/machinery/light/cold/directional/south, +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/engineering/gravity_generator) +"fHk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/corporate{ + name = "Consultant's Office" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/command/captain, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/nt_rep) +"fHm" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/external{ + name = "External Solar Access" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/open/floor/iron, +/area/station/maintenance/solars/port/aft) +"fHz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"fHB" = ( +/turf/open/floor/engine, +/area/station/engineering/atmos/hfr_room) +"fHP" = ( +/obj/structure/cable, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/maintenance/port/lesser) +"fHR" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"fHW" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner/directional/west, +/turf/open/floor/glass, +/area/station/ai_monitored/turret_protected/ai) +"fHZ" = ( +/obj/effect/turf_decal/arrows{ + dir = 8; + pixel_x = 16 + }, +/obj/effect/turf_decal/arrows{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/cargo/storage) +"fId" = ( +/obj/item/shard, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"fIn" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/primary/central) +"fIw" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/service) +"fIz" = ( +/obj/item/assembly/flash/handheld{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/assembly/flash/handheld{ + pixel_y = 7 + }, +/obj/item/assembly/flash/handheld{ + pixel_y = 6; + pixel_x = 6 + }, +/obj/item/stack/cable_coil{ + pixel_x = 14 + }, +/obj/item/multitool{ + pixel_x = 6 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = -6 + }, +/obj/item/assembly/prox_sensor{ + pixel_y = -2; + pixel_x = -2 + }, +/obj/structure/table, +/turf/open/floor/iron/small, +/area/station/science/robotics/lab) +"fIC" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/spawner/random/mod/maint, +/obj/effect/spawner/random/mod/maint{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/bot_assembly/floorbot{ + pixel_y = -6; + pixel_x = -4 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/science/research/abandoned) +"fIH" = ( +/obj/item/storage/box{ + pixel_y = 6; + pixel_x = -6 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"fIN" = ( +/obj/machinery/computer/security{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/customs) +"fIV" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"fJk" = ( +/obj/machinery/power/emitter{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/engineering/main) +"fJo" = ( +/obj/structure/lattice, +/obj/structure/railing{ + dir = 9 + }, +/turf/open/openspace, +/area/station/hallway/primary/central) +"fJp" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/hallway/primary/central) +"fJw" = ( +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/entry) +"fJx" = ( +/obj/machinery/computer/security/telescreen/bar{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/storage/fancy/pickles_jar, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/security/checkpoint/service) +"fJy" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/item/clothing/head/costume/festive, +/obj/effect/spawner/random/maintenance/two, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"fJD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/brig/entrance) +"fJF" = ( +/obj/structure/trash_pile, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/department/eva) +"fJT" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/starboard/fore) +"fJX" = ( +/obj/structure/window/spawner/directional/south, +/obj/structure/window/spawner/directional/east, +/obj/structure/window/spawner/directional/north, +/obj/structure/window/spawner/directional/west, +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/olive, +/turf/open/openspace, +/area/station/commons/fitness/recreation) +"fKf" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/computer/order_console/mining, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/smooth_large, +/area/station/cargo/miningoffice) +"fKj" = ( +/obj/machinery/vending/wardrobe/medi_wardrobe, +/obj/effect/turf_decal/bot, +/obj/machinery/digital_clock/directional/north, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/storage) +"fKs" = ( +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"fKz" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/box/red, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"fKB" = ( +/obj/structure/table/reinforced, +/obj/item/seeds/cannabis{ + pixel_y = 3; + pixel_x = -4 + }, +/obj/item/seeds/cannabis, +/obj/item/seeds/cannabis{ + pixel_y = 3; + pixel_x = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/abandon_cafeteria/hydro) +"fKE" = ( +/obj/structure/window/fulltile, +/obj/structure/hedge, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) +"fKK" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall13"; + location = "hall12" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"fKM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/station/engineering/supermatter) +"fKR" = ( +/turf/open/floor/iron/dark/small, +/area/station/science/xenobiology) +"fKX" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"fLb" = ( +/obj/structure/chair/pew/left, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/chapel{ + dir = 1 + }, +/area/station/service/chapel) +"fLd" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/warm/directional/west, +/turf/open/floor/wood/large, +/area/station/service/chapel/office) +"fLg" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/structure/table, +/obj/machinery/reagentgrinder{ + pixel_y = 7 + }, +/obj/item/reagent_containers/cup/beaker{ + pixel_x = -12; + pixel_y = 2 + }, +/obj/effect/turf_decal/lunar_sand, +/turf/open/floor/iron/dark, +/area/station/science/cytology) +"fMa" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/item/radio/intercom/directional/east, +/obj/machinery/corral_corner{ + mapping_id = "4" + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"fMf" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/lockers) +"fMC" = ( +/obj/machinery/growing/soil, +/obj/item/cultivator{ + pixel_y = -12 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/grass, +/area/station/service/hydroponics/garden) +"fMJ" = ( +/obj/structure/table/glass, +/obj/item/lipstick/random, +/obj/item/razor{ + pixel_x = -6; + pixel_y = -6 + }, +/obj/structure/mirror/directional/west, +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/effect/turf_decal/tile/purple/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/service/barber) +"fMP" = ( +/obj/effect/turf_decal/tile/dark/diagonal_edge, +/obj/item/storage/box/drinkingglasses{ + pixel_y = 12; + pixel_x = 6 + }, +/obj/structure/table, +/obj/item/reagent_containers/condiment/peppermill{ + desc = "Often used to flavor food or make people sneeze. Fashionably moved to the left side of the table."; + pixel_x = -8; + pixel_y = 6 + }, +/obj/item/reagent_containers/condiment/rice{ + pixel_x = 8; + pixel_y = 5 + }, +/obj/item/reagent_containers/condiment/flour{ + pixel_x = 8 + }, +/obj/item/reagent_containers/condiment/saltshaker{ + pixel_x = -9 + }, +/obj/item/storage/fancy/egg_box{ + pixel_y = -7 + }, +/obj/structure/cable, +/turf/open/floor/iron/kitchen/diagonal, +/area/station/security/prison) +"fMR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/escape) +"fNm" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/commons/dorms) +"fNt" = ( +/turf/closed/wall, +/area/station/cargo/office) +"fNu" = ( +/obj/structure/chair/pew/left, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/chapel{ + dir = 8 + }, +/area/station/service/chapel) +"fNx" = ( +/obj/machinery/mechpad, +/turf/open/floor/iron, +/area/station/science/robotics/mechbay) +"fNN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/aisat/teleporter) +"fNV" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/effect/spawner/random/maintenance, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/department/eva) +"fNX" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/structure/railing, +/obj/item/clothing/shoes/wheelys/rollerskates{ + pixel_y = 5 + }, +/obj/item/clothing/shoes/wheelys/rollerskates, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"fOd" = ( +/turf/closed/wall, +/area/station/service/chapel/office) +"fOg" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"fOj" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"fOn" = ( +/obj/effect/spawner/random/trash/garbage, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"fOo" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/candle_box{ + pixel_y = 5 + }, +/obj/item/storage/fancy/candle_box{ + pixel_x = 4 + }, +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_red/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/service/chapel) +"fOv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Canteen Lounge" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/lounge) +"fOR" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/holopad, +/turf/open/floor/iron/white, +/area/station/science/ordnance/testlab) +"fOU" = ( +/obj/structure/rack/shelf, +/obj/item/storage/fish_case/random/saltwater{ + pixel_y = -5 + }, +/obj/item/storage/fish_case/random/saltwater{ + pixel_y = 1; + pixel_x = 1 + }, +/obj/item/storage/fish_case/random/saltwater{ + pixel_y = 7 + }, +/obj/effect/turf_decal/box/blue, +/obj/machinery/airalarm/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plastic, +/area/station/common/carpshop) +"fPp" = ( +/obj/machinery/door/airlock/hatch{ + name = "Maintenance Hatch" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"fPr" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/chapel) +"fPs" = ( +/turf/open/openspace, +/area/station/science/research) +"fPu" = ( +/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/visible{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible/layer1{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible/layer5{ + dir = 4 + }, +/obj/machinery/door/airlock/external/glass{ + name = "External Ordinance Access" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "sci-ordnance" + }, +/turf/open/floor/plating, +/area/station/science/ordnance) +"fPw" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"fPA" = ( +/turf/closed/wall, +/area/station/maintenance/port/lesser) +"fPC" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"fPE" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/carpet/blue, +/area/station/command/heads_quarters/cmo) +"fPG" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable, +/obj/item/papercutter, +/obj/item/assembly/flash/handheld{ + pixel_y = 2 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"fPH" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral/full, +/obj/effect/spawner/random/maintenance, +/obj/structure/rack/shelf, +/obj/structure/light_construct/directional/north, +/turf/open/floor/iron/dark/smooth_large, +/area/station/maintenance/aft/greater) +"fPK" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/general/visible/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side, +/area/station/engineering/atmos/hfr_room) +"fPO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"fPQ" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/library) +"fPZ" = ( +/obj/structure/disposalpipe/trunk/multiz{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"fQf" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/landmark/event_spawn, +/obj/effect/landmark/generic_maintenance_landmark, +/turf/open/floor/plating, +/area/station/maintenance/solars/port/fore) +"fRf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/cargo/storage) +"fRn" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/tile, +/area/station/service/lawoffice) +"fRv" = ( +/obj/effect/spawner/random/structure/furniture_parts, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"fRA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"fRK" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/railing, +/turf/open/floor/wood/large, +/area/station/service/library) +"fRP" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/chair/wood, +/obj/structure/sign/flag/nanotrasen/directional/north, +/turf/open/floor/wood/parquet, +/area/station/command/heads_quarters/captain) +"fRX" = ( +/obj/machinery/light_switch/directional/west, +/obj/structure/table, +/turf/open/floor/catwalk_floor, +/area/station/cargo/storage) +"fSn" = ( +/obj/machinery/vending/imported, +/obj/effect/turf_decal/tile/bar/fourcorners, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/checker, +/area/station/service/kitchen/diner) +"fSB" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "viroview"; + name = "Viewport Shutters" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/medical/virology) +"fSG" = ( +/obj/effect/turf_decal/box, +/obj/machinery/computer/atmos_alert{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos/office) +"fSM" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/iron/dark/corner, +/area/station/hallway/primary/central) +"fSZ" = ( +/obj/effect/turf_decal/siding/white{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/item/reagent_containers/cup/glass/waterbottle{ + pixel_y = 6; + pixel_x = -6 + }, +/obj/structure/table, +/obj/item/radio/intercom/directional/east, +/obj/machinery/light/warm/directional/east, +/turf/open/floor/wood/parquet, +/area/station/medical/patients_rooms) +"fTa" = ( +/obj/structure/chair/comfy{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/wood, +/area/station/commons/dorms/room5) +"fTt" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "Escape Pod" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/exit/escape_pod) +"fTy" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 9 + }, +/obj/machinery/space_heater, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/station/engineering/atmos) +"fTF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plastic, +/area/station/common/carpshop) +"fTU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"fUh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/interrogation) +"fUp" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/iron, +/area/station/engineering/supermatter/room) +"fUu" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/engineering/lobby) +"fUI" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"fUK" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Holodeck Arcade" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/smooth_large, +/area/station/common/arcade) +"fUN" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Engineering Guard's Office" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/checkpoint/engineering) +"fUR" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/red/line, +/obj/effect/turf_decal/siding/dark_red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"fUZ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/computer/security{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/escape) +"fVA" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "Mix to Port" + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"fVB" = ( +/obj/machinery/button/door/directional/east{ + id = "private_3"; + name = "Privacy Bolts"; + normaldoorcontrol = 1; + specialfunctions = 4; + pixel_y = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/commons/dorms/room3) +"fVC" = ( +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Chapel Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/service/chapel) +"fVJ" = ( +/obj/effect/spawner/random/techstorage/security_all, +/obj/structure/table/glass, +/turf/open/floor/iron/dark/small, +/area/station/engineering/storage/tech) +"fVR" = ( +/obj/effect/spawner/random/entertainment/arcade{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/machinery/firealarm/directional/east, +/obj/machinery/light/blacklight/directional/east, +/turf/open/floor/eighties, +/area/station/common/arcade) +"fVW" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/turf/open/floor/glass/reinforced, +/area/station/science/xenobiology) +"fWa" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark/half/contrasted, +/obj/structure/cable, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"fWb" = ( +/turf/open/floor/wood/large, +/area/station/service/library) +"fWn" = ( +/obj/structure/disposalpipe/sorting/mail{ + dir = 4 + }, +/obj/effect/mapping_helpers/mail_sorting/service/law_office, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/department/security/lower) +"fWy" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Public Mining Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/commons/storage/mining) +"fWA" = ( +/obj/effect/mapping_helpers/airlock/access/all/science/rd, +/obj/machinery/door/airlock/rd/glass{ + name = "Server Access" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/server) +"fWE" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 1 + }, +/obj/structure/rack/shelf, +/obj/item/reagent_containers/cup/watering_can{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/item/reagent_containers/cup/watering_can{ + pixel_x = 3 + }, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/service/hydroponics) +"fWF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"fWM" = ( +/obj/machinery/power/port_gen/pacman/pre_loaded, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"fWP" = ( +/turf/open/floor/wood, +/area/station/maintenance/starboard/fore) +"fWT" = ( +/obj/item/trash/vendor_trash/mothmallow, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"fXd" = ( +/obj/item/stack/rods/fifty, +/obj/structure/rack, +/obj/item/stack/sheet/mineral/plasma/five, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"fXg" = ( +/obj/effect/spawner/random/structure/crate, +/obj/effect/spawner/random/engineering/flashlight, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"fXk" = ( +/obj/machinery/computer/piratepad_control/civilian{ + dir = 4 + }, +/obj/structure/window/spawner/directional/west, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/smooth_large, +/area/station/cargo/lobby) +"fXt" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/reflector/box{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"fXw" = ( +/obj/machinery/smartfridge/chemistry/preloaded, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "pharmacy_shutters_2"; + name = "Chemlab Shutters" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/pharmacy) +"fXz" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/siding/wood/end{ + dir = 4 + }, +/obj/structure/table, +/obj/item/storage/medkit/emergency{ + pixel_y = 8; + pixel_x = -2 + }, +/obj/item/radio{ + pixel_x = 4; + pixel_y = 6 + }, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"fXD" = ( +/obj/structure/railing, +/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/station/service/chapel) +"fXE" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/iron/dark/corner, +/area/station/commons/dorms) +"fXL" = ( +/turf/closed/wall, +/area/station/service/library/lounge) +"fXT" = ( +/obj/structure/trash_pile, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"fYj" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/security/brig/entrance) +"fYR" = ( +/obj/effect/turf_decal/box, +/obj/machinery/atmospherics/pipe/multiz/purple/visible{ + dir = 4; + name = "Infiltrate" + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/hfr_room) +"fYS" = ( +/obj/structure/lattice, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/visible{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer4{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"fYV" = ( +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/airlock/engineering{ + name = "Port Quarter Solar Access" + }, +/obj/effect/mapping_helpers/airlock/unres, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/solars/port/aft) +"fYX" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"fYY" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"fYZ" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/external{ + name = "External Solar Access" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/open/floor/iron, +/area/station/maintenance/solars/port/fore) +"fZa" = ( +/obj/effect/turf_decal/box/white, +/obj/machinery/light/floor/has_bulb, +/obj/machinery/duct, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"fZh" = ( +/obj/effect/turf_decal/lunar_sand, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"fZp" = ( +/obj/structure/railing, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/glass/reinforced, +/area/station/science/xenobiology) +"fZv" = ( +/obj/machinery/atmospherics/pipe/multiz/pink/visible{ + dir = 4; + name = "Exfiltrate" + }, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/hfr_room) +"fZJ" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/hydroponics) +"fZP" = ( +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/obj/effect/turf_decal/tile/purple/diagonal_centre, +/obj/structure/chair/sofa/right, +/obj/effect/landmark/start/scientist, +/turf/open/floor/iron/white/diagonal, +/area/station/science/breakroom) +"gaA" = ( +/obj/structure/chair/pew/left, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/chapel{ + dir = 1 + }, +/area/station/service/chapel) +"gaD" = ( +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/airlock/engineering{ + name = "Starboard Quarter Solar Access" + }, +/obj/effect/mapping_helpers/airlock/unres, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/solars/starboard/aft) +"gbl" = ( +/obj/structure/sign/warning/radiation/rad_area/directional/north, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Engineering - Lobby"; + network = list("ss13","engine") + }, +/obj/effect/landmark/start/station_engineer, +/turf/open/floor/iron, +/area/station/engineering/lobby) +"gbo" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/science/research) +"gbt" = ( +/obj/structure/table/wood, +/obj/item/folder/yellow{ + pixel_y = 12; + pixel_x = 5 + }, +/obj/item/stamp/head/qm{ + pixel_y = 5 + }, +/obj/item/stamp{ + pixel_x = 5 + }, +/obj/item/stamp/denied{ + pixel_x = -5 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/command/heads_quarters/qm) +"gbv" = ( +/obj/effect/spawner/random/engineering/tank, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"gby" = ( +/turf/closed/wall, +/area/station/maintenance/aft/upper) +"gbJ" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/station/maintenance/port/greater) +"gbL" = ( +/obj/machinery/holopad/secure, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/interrogation) +"gbP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/visible{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible/layer1{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible/layer5{ + dir = 4 + }, +/obj/machinery/button/door/directional/north{ + normaldoorcontrol = 1; + specialfunctions = 4; + id = "ordmix_airlock_exterior"; + name = "Burn Chamber Bolt Control"; + pixel_x = 6 + }, +/obj/machinery/button/door/directional/north{ + normaldoorcontrol = 1; + specialfunctions = 4; + id = "ordmix_airlock_interior"; + name = "Mixing Room Bolt Control"; + pixel_x = -6 + }, +/obj/machinery/button/ignition/incinerator/ordmix{ + pixel_x = 6; + pixel_y = 35 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/science/ordnance) +"gca" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"gce" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"gcj" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/checker, +/area/station/hallway/secondary/command) +"gcn" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) +"gcs" = ( +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/components/tank{ + dir = 1 + }, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/ordnance) +"gct" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/engineering/atmos/hfr_room) +"gcu" = ( +/turf/closed/wall, +/area/station/bitrunning/den) +"gcy" = ( +/obj/structure/hedge, +/obj/structure/window/fulltile, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/hydroponics/garden) +"gcA" = ( +/obj/structure/lattice/catwalk, +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_y = 5 + }, +/obj/item/pen{ + pixel_y = 5 + }, +/turf/open/openspace, +/area/station/medical/pharmacy) +"gcW" = ( +/obj/effect/turf_decal/box/corners, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + name = "Pure to Port"; + dir = 1 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"gdc" = ( +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/science/circuits) +"gdk" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber, +/turf/open/floor/engine, +/area/station/maintenance/disposal/incinerator) +"gdm" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/glass/reinforced, +/area/station/hallway/primary/central/fore) +"gdv" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/brig/entrance) +"gdS" = ( +/obj/vehicle/ridden/janicart, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/bot, +/obj/machinery/digital_clock/directional/north, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/janitor) +"gdV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/binary/pump{ + name = "Chamber Inject"; + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"geg" = ( +/obj/effect/turf_decal/tile/green/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/checker, +/area/station/hallway/primary/central/fore) +"geI" = ( +/obj/effect/turf_decal/arrows/white{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/large, +/area/station/commons/vacant_room/commissary) +"geV" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/external{ + name = "External Solar Access" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/open/floor/iron, +/area/station/maintenance/solars/starboard/aft) +"gfd" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/siding/wood/end{ + dir = 4 + }, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"gfh" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) +"gfo" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/primary/starboard) +"gfu" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/checker, +/area/station/hallway/primary/central/aft) +"gfw" = ( +/obj/structure/rack, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = 2; + pixel_y = -1 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/storage/mining) +"gfz" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/openspace, +/area/station/maintenance/department/security/upper) +"gfI" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/chair/comfy{ + dir = 8; + color = "#DE3A3A" + }, +/obj/machinery/newscaster/directional/east, +/obj/machinery/light/warm/directional/east, +/turf/open/floor/wood/tile, +/area/station/service/bar) +"gfO" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/station/science/xenobiology) +"gfP" = ( +/turf/closed/wall, +/area/station/maintenance/port/aft) +"gfQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/execution/education) +"gfX" = ( +/obj/effect/turf_decal/trimline/dark_red/arrow_ccw{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/security/prison) +"ggd" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/airalarm/directional/north, +/obj/structure/cable, +/turf/open/floor/iron/white/herringbone, +/area/station/medical/patients_rooms) +"ggh" = ( +/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, +/obj/effect/turf_decal/tile/green/opposingcorners, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/virology) +"ggt" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"ggO" = ( +/obj/item/storage/medkit/regular, +/obj/item/storage/box/bodybags{ + pixel_y = 5 + }, +/obj/machinery/airalarm/directional/west, +/obj/structure/rack/shelf, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/paramedic) +"ggS" = ( +/turf/closed/wall/r_wall, +/area/station/security/medical) +"ghd" = ( +/obj/effect/mapping_helpers/mail_sorting/supply/disposals, +/obj/structure/disposalpipe/sorting/mail, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"ghj" = ( +/obj/structure/sign/warning/vacuum/external/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"gho" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/escape) +"ghq" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/airalarm/directional/east, +/obj/structure/disposalpipe/segment, +/obj/machinery/light/warm/directional/east, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/atmospheric_technician, +/turf/open/floor/iron, +/area/station/engineering/atmos/storage) +"ghr" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/wood/tile, +/area/station/medical/psychology) +"ghs" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"ghu" = ( +/obj/machinery/growing/tray, +/obj/item/plant_analyzer{ + pixel_x = 5; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/glass, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/abandon_cafeteria/hydro) +"ghB" = ( +/obj/machinery/door/airlock/external/glass{ + name = "Supply Door Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/cargo/storage) +"ghL" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/frame/machine{ + anchored = 1 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/item/stack/cable_coil/five, +/turf/open/floor/iron, +/area/station/commons/vacant_room/commissary) +"ghO" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/holding_cell) +"ghP" = ( +/obj/machinery/firealarm/directional/east, +/obj/machinery/light/warm/directional/east, +/turf/open/floor/engine, +/area/station/engineering/main) +"ghZ" = ( +/obj/machinery/light_switch/directional/west, +/turf/open/floor/iron/dark, +/area/station/medical/morgue) +"gig" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=lowhall9"; + location = "lowhall8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"gii" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 8 + }, +/turf/open/space/basic, +/area/space) +"gik" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/blue, +/obj/effect/spawner/random/medical/medkit, +/obj/effect/spawner/random/medical/supplies, +/turf/open/floor/iron/white, +/area/station/maintenance/abandon_surgery) +"gil" = ( +/obj/structure/aquarium/prefilled, +/obj/machinery/door/firedoor, +/turf/open/floor/plastic, +/area/station/common/carpshop) +"gip" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/multiz/dark/visible, +/obj/machinery/atmospherics/pipe/multiz/violet/visible, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"giw" = ( +/obj/effect/turf_decal/tile/green/opposingcorners{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/checker, +/area/station/hallway/secondary/recreation) +"gix" = ( +/obj/effect/turf_decal/tile/green/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/primary/central/fore) +"giB" = ( +/obj/machinery/modular_computer/preset/civilian{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark/small, +/area/station/science/ordnance/office) +"giK" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/security/prison) +"giS" = ( +/obj/structure/stairs/north, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"giT" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/iron/white/side{ + dir = 4 + }, +/area/station/science/ordnance/office) +"gjc" = ( +/obj/effect/turf_decal/tile/purple/diagonal_centre, +/obj/effect/turf_decal/siding/white, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/diagonal, +/area/station/science/breakroom) +"gje" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/item/sales_tagger{ + pixel_x = -10 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Cargo - Lobby" + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/recharger, +/turf/open/floor/iron/dark/smooth_large, +/area/station/cargo/lobby) +"gjh" = ( +/obj/effect/turf_decal/tile/red/real_red/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/cafeteria, +/area/station/hallway/secondary/exit/escape_pod) +"gjr" = ( +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/maintenance/starboard/fore) +"gjB" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/dark/end{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"gjN" = ( +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 8 + }, +/obj/machinery/light/warm/directional/west, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/white/diagonal, +/area/station/common/spa) +"gjO" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/customs) +"gjX" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/firealarm/directional/east, +/obj/effect/landmark/event_spawn, +/obj/machinery/light/warm/directional/east, +/turf/open/floor/iron, +/area/station/commons/dorms) +"gkg" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/landmark/start/head_of_personnel, +/turf/open/floor/wood, +/area/station/command/heads_quarters/hop) +"gkn" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/marker_beacon/teal, +/turf/open/floor/glass/reinforced, +/area/station/ai_monitored/turret_protected/ai) +"gku" = ( +/obj/structure/table/wood, +/obj/item/paper_bin/carbon{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/reagent_containers/cup/glass/flask/det{ + pixel_x = 6 + }, +/turf/open/floor/wood/parquet, +/area/station/security/detectives_office) +"gkM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/machinery/meter, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"gkQ" = ( +/obj/machinery/light/cold/directional/east, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/lockers) +"gkW" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/executive, +/area/station/command/heads_quarters/hop) +"glq" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"glr" = ( +/obj/effect/mapping_helpers/airlock/access/all/command/captain, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/corporate{ + id_tag = "BSdoor"; + name = "Blueshield's Quarters" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/blueshield) +"glu" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "Atmospherics Blast Door" + }, +/turf/open/floor/plating, +/area/station/engineering/atmos/hfr_room) +"glv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/spawner/random/engineering/canister, +/turf/open/floor/plating, +/area/station/maintenance/department/science/xenobiology) +"glA" = ( +/obj/structure/chair/sofa/left/brown, +/turf/open/floor/carpet, +/area/station/service/abandoned_gambling_den) +"glB" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/firealarm/directional/north, +/obj/machinery/airalarm/directional/south, +/obj/machinery/camera/directional/north{ + c_tag = "Medbay - Paramedic Lower Access"; + network = list("ss13","medical") + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/medical/storage) +"glR" = ( +/obj/structure/lattice/catwalk, +/obj/structure/table/glass, +/obj/item/folder/white{ + pixel_y = 2; + pixel_x = 10 + }, +/obj/item/book/manual/wiki/chemistry{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/book/manual/wiki/grenades, +/obj/item/clothing/glasses/science{ + pixel_y = 3 + }, +/obj/item/clothing/glasses/science{ + pixel_x = 2 + }, +/turf/open/openspace, +/area/station/medical/pharmacy) +"gmb" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/hallway/primary/central) +"gmL" = ( +/obj/structure/railing, +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/three, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"gmQ" = ( +/obj/effect/spawner/random/maintenance/three, +/obj/item/clothing/mask/cigarette/pipe, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/sign/poster/random/directional/north, +/obj/structure/rack/shelf, +/obj/item/fishing_rod, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"gmU" = ( +/obj/effect/turf_decal/siding/dark_blue{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"gmW" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/aisat/maint) +"gmX" = ( +/obj/effect/turf_decal/tile/yellow/half, +/obj/machinery/duct, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/edge, +/area/station/engineering/main) +"gnb" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 9 + }, +/turf/open/space/basic, +/area/space) +"gnf" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/air_sensor/engine_chamber, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"gnr" = ( +/obj/structure/chair/sofa/bench/right, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/turf/open/floor/iron/small, +/area/station/security/checkpoint/escape) +"gnv" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/command/heads_quarters/qm) +"gnw" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/escape) +"gnz" = ( +/obj/effect/spawner/random/trash/grille_or_waste, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"gnB" = ( +/obj/structure/closet/secure_closet/corrections_officer, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/airalarm/directional/north, +/obj/structure/cable, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/engine, +/area/station/security/corrections_officer) +"gnC" = ( +/mob/living/simple_animal/pet/cat, +/turf/open/floor/plating, +/area/station/service/salon) +"gnX" = ( +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/hallway/primary/central/aft) +"goc" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/disposalpipe/segment, +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/maintenance/port/greater) +"god" = ( +/obj/machinery/light/small/directional/east, +/obj/structure/cable/multilayer/multiz, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/department/science/xenobiology) +"gog" = ( +/turf/open/floor/iron/edge, +/area/station/security/eva) +"gom" = ( +/obj/machinery/door/airlock/external/glass{ + name = "Supply Door Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/turf/open/floor/plating, +/area/station/cargo/storage) +"gov" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners, +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/service/chapel) +"goD" = ( +/obj/machinery/door/airlock/external{ + name = "Brig Shuttle Airlock"; + space_dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/plating, +/area/station/security/checkpoint/escape) +"goH" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/light/warm/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/engineering/storage) +"goV" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners{ + dir = 1 + }, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/checker, +/area/station/maintenance/abandon_diner) +"gpa" = ( +/turf/closed/wall, +/area/station/maintenance/department/bridge) +"gpk" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/hallway/primary/starboard) +"gpw" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{ + dir = 5 + }, +/turf/open/floor/engine/vacuum, +/area/station/science/ordnance/freezerchamber) +"gpA" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"gpM" = ( +/obj/structure/lattice, +/obj/structure/window/spawner/directional/north, +/obj/structure/window/spawner/directional/south, +/turf/open/openspace, +/area/station/security/prison/upper) +"gpQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/sign/warning/pods/directional/south, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"gpZ" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/machinery/door/airlock/security/glass{ + name = "Correction Officer Watch" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/corrections_officer) +"gqa" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/station/engineering/atmos) +"gqd" = ( +/turf/closed/wall, +/area/station/maintenance/department/electrical) +"gqg" = ( +/obj/effect/landmark/atmospheric_sanity/ignore_area, +/turf/open/openspace, +/area/station/security/brig/upper) +"gqh" = ( +/turf/closed/wall, +/area/station/maintenance/port/fore) +"gqp" = ( +/obj/structure/railing, +/obj/structure/lattice, +/obj/machinery/camera/directional/east{ + c_tag = "Science - Ordnance Mixing Chamber"; + network = list("ss13","rd") + }, +/turf/open/space/basic, +/area/space/nearstation) +"gqq" = ( +/obj/machinery/deepfryer, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/kitchen) +"gqu" = ( +/obj/effect/turf_decal/box, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/primary/central) +"gqv" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/camera/directional/south{ + c_tag = "Cargo - South" + }, +/obj/structure/table, +/obj/machinery/microwave{ + pixel_y = 6 + }, +/turf/open/floor/iron/large, +/area/station/cargo/storage) +"gqB" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/kirbyplants/synthetic/plant29, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/science/xenobiology) +"gqH" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/glass/reinforced, +/area/station/hallway/primary/central/fore) +"gqN" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"gqS" = ( +/obj/machinery/button/door/directional/south{ + id = "Toilet1x"; + name = "Lock Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/white/small, +/area/station/commons/toilet/auxiliary) +"gqV" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"grb" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/iron/checker, +/area/station/hallway/primary/central/aft) +"grh" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners{ + dir = 1 + }, +/obj/machinery/camera/directional/south{ + c_tag = "Command Hallway - Aft Starboard" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark/corner, +/area/station/hallway/secondary/command) +"grC" = ( +/obj/structure/table, +/obj/item/reagent_containers/cup/glass/bottle/beer/almost_empty{ + pixel_y = 6; + pixel_x = 8 + }, +/obj/effect/spawner/random/trash/food_packaging, +/obj/machinery/camera/directional/west{ + c_tag = "Holodeck - Upper Port" + }, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation) +"grD" = ( +/obj/structure/tank_holder/extinguisher, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"grF" = ( +/obj/structure/punching_bag, +/obj/effect/turf_decal/bot_red, +/obj/effect/turf_decal/tile/dark/full, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/prison) +"grI" = ( +/obj/item/cutting_board{ + pixel_x = -5; + pixel_y = 10 + }, +/obj/structure/table/reinforced, +/obj/machinery/reagentgrinder{ + pixel_y = 7 + }, +/obj/item/reagent_containers/condiment/enzyme{ + pixel_x = -10; + pixel_y = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/kitchen/diagonal, +/area/station/maintenance/abandon_diner) +"grN" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/loading_area, +/obj/effect/turf_decal/tile/dark_red/half{ + dir = 1 + }, +/turf/open/floor/iron/half, +/area/station/command/heads_quarters/hop) +"grS" = ( +/obj/machinery/telecomms/processor/preset_two, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/station/tcommsat/server) +"gsf" = ( +/obj/effect/turf_decal/trimline/dark_red/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_red{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/security/prison) +"gsm" = ( +/obj/machinery/power/turbine/inlet_compressor{ + dir = 8 + }, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/maintenance/disposal/incinerator) +"gsA" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/commons/storage/mining) +"gsF" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/security/brig/entrance) +"gsX" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/machinery/airalarm/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/tile, +/area/station/commons/lounge) +"gto" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/herringbone, +/area/station/medical/patients_rooms) +"gtv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/medical/virology) +"gtB" = ( +/obj/structure/chair/pew/left, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/iron/chapel{ + dir = 8 + }, +/area/station/service/chapel) +"gtZ" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plating, +/area/station/cargo/storage) +"gul" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners{ + dir = 1 + }, +/obj/machinery/camera/directional/south{ + c_tag = "Central Primary Hallway - Courtroom" + }, +/obj/machinery/atm/directional/south, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"guq" = ( +/obj/structure/table, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = -5; + pixel_y = 7 + }, +/obj/item/stack/sheet/mineral/plasma{ + amount = 35 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/aisat/equipment) +"guv" = ( +/obj/item/shard, +/obj/effect/decal/cleanable/glass, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/abandon_cafeteria/hydro) +"guH" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner, +/turf/open/floor/iron/white/smooth_edge, +/area/station/medical/treatment_center) +"guK" = ( +/obj/machinery/status_display/evac/directional/west, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_red/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/service/chapel) +"guN" = ( +/obj/effect/turf_decal/tile/green/opposingcorners{ + dir = 1 + }, +/obj/structure/sign/directions/evac/directional/north{ + dir = 4 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Upper Central Primary Hallway - Service Holodeck Access" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/checker, +/area/station/hallway/primary/central/fore) +"guQ" = ( +/obj/machinery/conveyor{ + dir = 9; + id = "QMLoad" + }, +/obj/effect/turf_decal/stripes/full, +/turf/open/floor/plating, +/area/station/cargo/storage) +"guU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/black, +/area/station/command/heads_quarters/ce) +"gvh" = ( +/obj/machinery/computer/security{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/security/brig/entrance) +"gvj" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/open/floor/plating, +/area/station/engineering/supermatter/room) +"gvp" = ( +/obj/machinery/light/warm/directional/east, +/obj/machinery/recharge_station, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark, +/area/station/medical/medbay/central) +"gwj" = ( +/turf/open/openspace, +/area/station/security/brig/entrance) +"gwo" = ( +/turf/open/floor/plating, +/area/station/medical/break_room) +"gws" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/glass/reinforced, +/area/station/hallway/primary/starboard) +"gwu" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/structure/table, +/obj/structure/microscope, +/obj/item/biopsy_tool{ + pixel_x = 11; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/reagent_containers/cup/beaker/large{ + pixel_x = -12; + pixel_y = 3 + }, +/turf/open/floor/iron/dark, +/area/station/science/cytology) +"gwx" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/camera/directional/east{ + c_tag = "Xenobiology Pens - Exterior"; + network = list("ss13","xeno","rd") + }, +/turf/open/floor/engine/hull, +/area/station/asteroid) +"gwG" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/primary/central/aft) +"gwI" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/command) +"gxc" = ( +/obj/effect/mapping_helpers/airlock/access/all/medical/morgue, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Morgue Maintenance" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/morgue) +"gxo" = ( +/obj/structure/lattice/catwalk, +/obj/structure/transit_tube, +/turf/open/openspace, +/area/station/construction/mining/aux_base) +"gxr" = ( +/obj/effect/turf_decal/delivery, +/obj/item/beacon, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"gxE" = ( +/turf/open/floor/iron/white, +/area/station/science/ordnance) +"gxL" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/station/maintenance/aft/upper) +"gxP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/cargo/storage) +"gxR" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/security/checkpoint/science/research) +"gyb" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/machinery/light/warm/directional/south, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/wood/tile, +/area/station/service/bar) +"gyl" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/glass/reinforced, +/area/station/science/cytology) +"gys" = ( +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/station/command/heads_quarters/captain) +"gyE" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/space, +/area/station/solars/starboard/fore) +"gyS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/meter, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"gzc" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/small, +/area/station/medical/paramedic) +"gzj" = ( +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron, +/area/station/maintenance/solars/starboard/fore) +"gzl" = ( +/obj/structure/closet/crate/large{ + name = "lizard wine crate" + }, +/obj/item/reagent_containers/cup/glass/bottle/lizardwine{ + pixel_x = -6 + }, +/obj/item/reagent_containers/cup/glass/bottle/lizardwine{ + pixel_x = 6 + }, +/turf/open/floor/stone, +/area/station/maintenance/starboard/fore) +"gzt" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/visible, +/obj/machinery/meter, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/science/ordnance) +"gzx" = ( +/obj/effect/spawner/random/trash/moisture, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"gzF" = ( +/obj/structure/table/glass, +/obj/item/storage/box/monkeycubes{ + pixel_x = 4 + }, +/obj/item/storage/pill_bottle/mutadone{ + pixel_x = -8; + pixel_y = 9 + }, +/turf/open/floor/glass/reinforced, +/area/station/science/genetics) +"gzL" = ( +/obj/structure/sign/warning/test_chamber/directional/north, +/obj/structure/marker_beacon/burgundy, +/obj/machinery/light/red/directional/east, +/turf/open/floor/iron/dark/small, +/area/station/science/explab) +"gzO" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/station/medical/psychology) +"gzU" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall11"; + location = "hall10" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/station/commons/dorms) +"gAi" = ( +/obj/machinery/computer/records/security{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/obj/structure/window/spawner/directional/east, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/customs) +"gAj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Education Chamber" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/execution/education) +"gAm" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/openspace, +/area/station/maintenance/port/greater) +"gAn" = ( +/obj/structure/closet/toolcloset, +/obj/structure/lattice/catwalk, +/obj/effect/landmark/start/hangover/closet, +/turf/open/openspace, +/area/station/commons/storage/tools) +"gAo" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/blue/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/security/office) +"gAp" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/ai_monitored/turret_protected/ai_upload) +"gAx" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/siding/white{ + dir = 9 + }, +/obj/machinery/light/cold/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"gAG" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/sign/flag/nanotrasen/directional/north, +/obj/machinery/holopad/secure, +/obj/structure/cable, +/turf/open/floor/wood, +/area/station/command/heads_quarters/nt_rep) +"gAR" = ( +/obj/effect/turf_decal/tile/dark_blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_corner, +/area/station/security/warden) +"gAW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"gAY" = ( +/obj/item/kirbyplants/organic/plant21, +/obj/machinery/light/cold/directional/west, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"gBf" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"gBk" = ( +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 1 + }, +/obj/structure/dresser, +/obj/machinery/light/warm/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/white/diagonal, +/area/station/common/spa) +"gBl" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/button/door/directional/east{ + pixel_y = 10; + name = "Trash Shutter"; + id = "XenobioTrash" + }, +/obj/machinery/button/door/directional/east{ + id = "xenotrash"; + name = "Launch Trash" + }, +/turf/open/floor/glass/reinforced, +/area/station/science/xenobiology) +"gBm" = ( +/obj/effect/spawner/random/bureaucracy/folder{ + spawn_random_offset = 1 + }, +/obj/structure/table, +/obj/effect/spawner/random/bureaucracy/folder{ + spawn_random_offset = 1 + }, +/obj/effect/spawner/random/bureaucracy/stamp, +/turf/open/floor/iron, +/area/station/maintenance/fore/lesser) +"gBr" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/science/robotics/mechbay) +"gBy" = ( +/obj/effect/spawner/random/structure/table_or_rack, +/obj/effect/spawner/random/entertainment/drugs, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"gBB" = ( +/obj/machinery/newscaster/directional/west, +/obj/structure/table/wood, +/obj/effect/spawner/random/entertainment/cigarette, +/turf/open/floor/carpet, +/area/station/commons/dorms) +"gBH" = ( +/obj/effect/turf_decal/siding/white/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/commons/dorms) +"gBI" = ( +/turf/open/floor/grass, +/area/station/security/prison) +"gBP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/effect/turf_decal/tile/dark/diagonal_edge, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/execution/education) +"gBT" = ( +/obj/structure/chair/office/light, +/obj/effect/landmark/start/research_director, +/turf/open/floor/carpet/purple, +/area/station/command/heads_quarters/rd) +"gCg" = ( +/obj/structure/cable, +/turf/open/floor/iron/stairs, +/area/station/command/gateway) +"gCr" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Dormitories" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/common/cryopods) +"gCE" = ( +/obj/structure/bed, +/obj/effect/turf_decal/siding/dark_blue, +/obj/effect/turf_decal/tile/dark_blue, +/obj/item/radio/intercom/prison/directional/south, +/turf/open/floor/iron/dark/side, +/area/station/security/holding_cell) +"gCL" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"gCX" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/iron/dark/corner, +/area/station/hallway/secondary/recreation) +"gDh" = ( +/obj/machinery/computer/records/medical{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"gDp" = ( +/obj/structure/rack/shelf, +/obj/item/storage/fish_case/random/freshwater{ + pixel_y = -6 + }, +/obj/item/storage/fish_case/random/freshwater{ + pixel_x = -2 + }, +/obj/item/storage/fish_case/random/freshwater{ + pixel_y = 6 + }, +/obj/effect/turf_decal/box/blue, +/obj/machinery/light/warm/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/plastic, +/area/station/common/carpshop) +"gDu" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/scrubber/huge, +/obj/structure/lattice, +/turf/open/openspace, +/area/station/engineering/main) +"gDx" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"gDF" = ( +/obj/structure/table, +/obj/structure/lattice/catwalk, +/obj/item/stack/sheet/iron/fifty{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/item/radio/intercom/directional/east, +/obj/item/storage/toolbox/emergency{ + pixel_y = 12; + pixel_x = 3 + }, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty{ + pixel_y = 7; + pixel_x = 2 + }, +/obj/item/stack/rods/fifty, +/obj/machinery/camera/directional/south{ + c_tag = "Tool Storage - Upper Auxiliary" + }, +/turf/open/openspace, +/area/station/commons/storage/tools) +"gDH" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/service/library) +"gDW" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron, +/area/station/engineering/lobby) +"gEg" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "brigdeskz2"; + name = "Security Desk Shutters" + }, +/obj/machinery/door/window/brigdoor/right/directional/west{ + name = "Brig Reception"; + req_access = list("security") + }, +/obj/machinery/door/window/left/directional/east{ + name = "Brig Reception" + }, +/obj/item/pen{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/brig/entrance) +"gEl" = ( +/obj/structure/cable, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 8 + }, +/turf/open/floor/wood/tile, +/area/station/commons/lounge) +"gEn" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=lowhall1"; + location = "lowhall12" + }, +/obj/structure/cable, +/turf/open/floor/iron/white/corner{ + dir = 1 + }, +/area/station/hallway/secondary/entry) +"gEp" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"gEs" = ( +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"gEK" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/turf/open/floor/glass/reinforced, +/area/station/security/warden) +"gEP" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) +"gEQ" = ( +/obj/machinery/door/airlock/hatch{ + name = "Maintenance Hatch" + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"gEX" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"gFb" = ( +/obj/machinery/door/airlock/hatch{ + name = "Telecomms Server Room" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/mapping_helpers/airlock/access/all/engineering/tcoms, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/tcommsat/server) +"gFp" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"gFx" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible/layer1{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible/layer5, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"gFK" = ( +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"gFL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/science/xenobiology) +"gFR" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"gGe" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"gGl" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/duct, +/turf/open/floor/plating, +/area/station/science/xenobiology) +"gGo" = ( +/obj/effect/turf_decal/tile/blue/full, +/obj/effect/turf_decal/tile/dark_blue/full, +/obj/structure/table/glass, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) +"gGK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/station/service/library/lounge) +"gGL" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"gGO" = ( +/obj/effect/turf_decal/tile/red/real_red, +/turf/open/floor/iron/white/corner{ + dir = 8 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"gGU" = ( +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/spawner/random/trash/grime, +/obj/effect/mapping_helpers/burnt_floor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/central) +"gGY" = ( +/obj/effect/turf_decal/siding/white/corner{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/siding/white/corner{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/white/small, +/area/station/science/genetics) +"gHe" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"gHr" = ( +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"gHz" = ( +/obj/structure/railing, +/obj/machinery/camera/directional/east{ + c_tag = "Bridge Core - Starboard" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"gHA" = ( +/turf/open/openspace, +/area/station/maintenance/port/lesser) +"gHM" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible/layer4{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"gHP" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/department/eva) +"gHX" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/disposal/incinerator) +"gIn" = ( +/obj/machinery/firealarm/directional/north, +/turf/open/floor/wood/tile, +/area/station/service/theater) +"gIp" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"gIs" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/medical/pharmacy) +"gIt" = ( +/turf/open/openspace, +/area/station/science/xenobiology) +"gIw" = ( +/obj/structure/rack, +/obj/item/clothing/gloves/color/fyellow, +/obj/item/storage/belt/utility{ + pixel_y = -4 + }, +/obj/effect/spawner/random/maintenance, +/obj/item/multitool, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/commons/storage/tools) +"gIA" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/tcommsat/server) +"gID" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "Mix Bypass" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"gIL" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/effect/spawner/random/maintenance/three, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"gIV" = ( +/turf/closed/wall, +/area/station/common/laser_tag) +"gJe" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 4 + }, +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central/aft) +"gJH" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/obj/machinery/light/cold/directional/south, +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/security/brig/entrance) +"gJL" = ( +/obj/structure/rack/shelf, +/obj/effect/spawner/random/engineering/material, +/obj/effect/spawner/random/engineering/material_cheap, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"gJX" = ( +/obj/structure/sink/kitchen/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/purple, +/area/station/service/barber) +"gKc" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 2"; + name = "Cell 2 Locker" + }, +/obj/effect/turf_decal/siding/dark_blue, +/obj/effect/turf_decal/tile/dark_blue, +/obj/machinery/airalarm/directional/east, +/obj/machinery/light/cold/directional/east, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/side, +/area/station/security/holding_cell) +"gKl" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison/visit) +"gKn" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/commons/dorms) +"gKF" = ( +/obj/machinery/door/airlock/hatch{ + name = "Maintenance Hatch" + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"gKL" = ( +/obj/structure/lattice/catwalk, +/obj/structure/ladder, +/turf/open/openspace, +/area/station/maintenance/aft/upper) +"gKP" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood/tile, +/area/station/service/lawoffice) +"gKQ" = ( +/obj/structure/table/wood, +/obj/structure/window/spawner/directional/north, +/obj/item/plate/small{ + pixel_y = -1 + }, +/obj/item/plate/small{ + pixel_y = 1 + }, +/obj/item/plate/small{ + pixel_y = 3 + }, +/turf/open/floor/wood/tile, +/area/station/hallway/secondary/exit/departure_lounge) +"gKY" = ( +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/engineering/supermatter/room) +"gLf" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners{ + dir = 1 + }, +/obj/structure/chair/stool/bar/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/warm/dim/directional/east, +/turf/open/floor/iron/checker, +/area/station/maintenance/abandon_diner) +"gLl" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/wood, +/area/station/commons/dorms) +"gLm" = ( +/obj/effect/turf_decal/lunar_sand, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/holopad, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"gLq" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/station/command/heads_quarters/nt_rep) +"gLt" = ( +/obj/structure/hedge, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/medbay/lobby) +"gLy" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/machinery/power/energy_accumulator/tesla_coil/anchored, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"gLH" = ( +/obj/machinery/holopad, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"gLQ" = ( +/obj/effect/turf_decal/lunar_sand, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/glass/reinforced, +/area/station/science/cytology) +"gLT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/obj/machinery/computer/scan_consolenew{ + dir = 8 + }, +/obj/machinery/airalarm/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/directional/south{ + c_tag = "Science - Genetics"; + network = list("ss13","rd") + }, +/turf/open/floor/iron/dark/small, +/area/station/science/genetics) +"gLW" = ( +/obj/structure/table, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/item/storage/box/smart_metal_foam, +/obj/item/wrench, +/obj/item/crowbar, +/obj/machinery/light/cold/directional/east, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/command/storage/eva) +"gMh" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/chair/sofa/middle{ + dir = 4; + color = "#DE3A3A" + }, +/obj/machinery/light/warm/directional/west, +/turf/open/floor/wood/tile, +/area/station/commons/lounge) +"gMq" = ( +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"gMr" = ( +/obj/effect/spawner/random/engineering/atmospherics_portable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"gMC" = ( +/obj/machinery/light/warm/directional/north, +/obj/machinery/newscaster/directional/east, +/obj/effect/turf_decal/siding/wood/end{ + dir = 4 + }, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/wood, +/area/station/command/heads_quarters/captain) +"gMD" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/maintenance/disposal/incinerator) +"gME" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"gMP" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hop"; + name = "Privacy Shutters" + }, +/turf/open/floor/plating, +/area/station/command/heads_quarters/hop) +"gNf" = ( +/obj/effect/turf_decal/tile/blue/full, +/obj/effect/turf_decal/tile/dark_blue/full, +/obj/structure/chair/comfy{ + color = "#596479"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) +"gNo" = ( +/obj/effect/decal/cleanable/generic, +/obj/machinery/vending/imported/mothic, +/obj/structure/railing, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"gNq" = ( +/obj/machinery/announcement_system, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/iron/dark, +/area/station/tcommsat/computer) +"gNt" = ( +/turf/closed/wall/r_wall, +/area/station/science/ordnance/office) +"gNx" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot_white, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"gNA" = ( +/obj/structure/cable/multilayer/connected, +/turf/open/floor/engine/hull, +/area/station/solars/aisat) +"gNF" = ( +/obj/structure/disposalpipe/junction/flip, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"gNH" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/folder/yellow{ + pixel_x = -6 + }, +/obj/item/pen{ + pixel_x = -6 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/desk_bell{ + pixel_x = 7 + }, +/obj/machinery/door/window/left/directional/south{ + name = "Cargo Desk"; + req_access = list("cargo") + }, +/obj/effect/turf_decal/tile/brown/half{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow/half{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_half, +/area/station/cargo/office) +"gNK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/pharmacy) +"gNL" = ( +/obj/effect/turf_decal/box/corners, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, +/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"gNY" = ( +/obj/effect/landmark/start/head_of_security, +/turf/open/floor/carpet, +/area/station/command/heads_quarters/hos) +"gNZ" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "bridge-right" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/command{ + name = "Bridge" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/bridge) +"gOl" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"gOq" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/turf_decal/stripes/white/line{ + dir = 9 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/maintenance/aft/greater) +"gOs" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/engineering/atmos/upper) +"gOx" = ( +/turf/open/floor/iron, +/area/station/maintenance/starboard/greater) +"gOA" = ( +/obj/machinery/conveyor{ + id = "mining" + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/cargo/office) +"gOP" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/docking, +/turf/open/floor/plating, +/area/station/hallway/secondary/exit/departure_lounge) +"gOV" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos/office) +"gPb" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/tile, +/area/station/service/bar) +"gPc" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/station/engineering/atmos/hfr_room) +"gPh" = ( +/obj/effect/turf_decal/box/corners, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/spawner/random/medical/two_percent_xeno_egg_spawner, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"gPk" = ( +/turf/closed/wall, +/area/station/science/explab) +"gPt" = ( +/obj/effect/turf_decal/tile/dark_blue/half{ + dir = 1 + }, +/obj/machinery/requests_console/auto_name/directional/north, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/mapping_helpers/requests_console/information, +/turf/open/floor/iron/dark/smooth_half, +/area/station/security/brig/entrance) +"gPF" = ( +/obj/effect/landmark/carpspawn, +/turf/open/space/basic, +/area/space) +"gQc" = ( +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"gQv" = ( +/obj/effect/turf_decal/tile/purple, +/obj/structure/chair/plastic{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/service/janitor) +"gQG" = ( +/obj/machinery/door/airlock/freezer{ + critical_machine = 1; + name = "Coldroom" + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/maintenance/abandon_diner) +"gQO" = ( +/obj/structure/hedge, +/obj/structure/window/fulltile, +/turf/open/floor/iron/dark/smooth_large, +/area/station/common/spa) +"gRj" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall17"; + location = "hall16" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/departure_lounge) +"gRu" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/camera/directional/south{ + c_tag = "Command Hallway - Port" + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) +"gRx" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/purple, +/obj/structure/sign/departments/xenobio/directional/west, +/obj/machinery/light/cold/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/white/side, +/area/station/science/ordnance/office) +"gRB" = ( +/obj/structure/window/reinforced/spawner/directional/west{ + layer = 2.9 + }, +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/courtroom) +"gRD" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/structure/table, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation) +"gRL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/iron/white/small, +/area/station/medical/paramedic) +"gRP" = ( +/obj/machinery/conveyor{ + id = "QMLoad2"; + dir = 10 + }, +/obj/effect/turf_decal/stripes/full, +/turf/open/floor/plating, +/area/station/cargo/storage) +"gRQ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/commons/dorms) +"gRS" = ( +/obj/effect/turf_decal/box, +/obj/machinery/computer/pod/old/mass_driver_controller/ordnancedriver{ + pixel_y = -24 + }, +/obj/machinery/doppler_array{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/ordnance/testlab) +"gRX" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/bar/fourcorners, +/turf/open/floor/iron/checker, +/area/station/service/kitchen/diner) +"gSs" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/corner{ + dir = 4 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"gSy" = ( +/obj/machinery/dryer{ + pixel_y = 14 + }, +/obj/effect/turf_decal/siding/white{ + dir = 5 + }, +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/iron/white/diagonal, +/area/station/commons/toilet/restrooms) +"gSD" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/iron/dark, +/area/station/science/genetics) +"gSE" = ( +/obj/structure/railing{ + dir = 6 + }, +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/obj/structure/window/reinforced/plasma/spawner/directional/east, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"gSH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/engine, +/area/station/security/range) +"gSJ" = ( +/obj/effect/turf_decal/tile/dark_red/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/station/service/chapel) +"gST" = ( +/obj/effect/turf_decal/tile/red/real_red{ + dir = 8 + }, +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/iron/white/corner{ + dir = 1 + }, +/area/station/hallway/secondary/exit/escape_pod) +"gSU" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Funerarium" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/chapel/funeral) +"gSW" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/obj/structure/table/glass, +/obj/item/healthanalyzer{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/radio/headset/headset_med{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/healthanalyzer, +/obj/item/radio/headset/headset_med, +/turf/open/floor/iron/white, +/area/station/medical/storage) +"gSX" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/catwalk_floor/iron, +/area/station/security/checkpoint/engineering) +"gTg" = ( +/obj/structure/table, +/obj/machinery/digital_clock/directional/south, +/obj/machinery/camera/directional/south{ + c_tag = "Security - Breakroom" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/brig/entrance) +"gTk" = ( +/obj/machinery/button/door/directional/south{ + id = "hop"; + name = "Privacy Shutters Control"; + pixel_x = 8; + req_access = list("hop") + }, +/obj/machinery/button/ticket_machine{ + pixel_x = -8; + pixel_y = -32 + }, +/obj/machinery/button/flasher{ + id = "hopflash"; + pixel_x = 8; + pixel_y = -32 + }, +/obj/machinery/modular_computer/preset/id{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/effect/turf_decal/box, +/obj/machinery/button/door/directional/south{ + id = "hopqueue"; + name = "Queue Shutters Control"; + pixel_x = -8; + req_access = list("hop") + }, +/obj/machinery/light/directional/south, +/turf/open/floor/wood, +/area/station/command/heads_quarters/hop) +"gTt" = ( +/turf/closed/wall/r_wall, +/area/station/ai_monitored/turret_protected/ai_upload) +"gTK" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/diagonal, +/area/station/commons/fitness/recreation) +"gTO" = ( +/obj/effect/turf_decal/tile/purple/half{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/machinery/light/cold/directional/east, +/obj/item/radio/intercom/directional/east, +/obj/item/vacuum_pack, +/obj/item/vacuum_pack, +/obj/item/vacuum_pack, +/obj/item/vacuum_pack, +/obj/item/disk/vacuum_upgrade/biomass, +/obj/item/disk/vacuum_upgrade/biomass, +/obj/item/disk/vacuum_upgrade/biomass, +/turf/open/floor/iron/dark/smooth_half, +/area/station/science/xenobiology) +"gTQ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"gTT" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"gUb" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"gUg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/side, +/area/station/hallway/primary/starboard) +"gUy" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Laser Tag Arena" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/smooth_large, +/area/station/common/laser_tag) +"gUD" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/ai_monitored/turret_protected/ai_upload) +"gUJ" = ( +/obj/effect/turf_decal/tile/green/opposingcorners, +/obj/effect/mapping_helpers/mail_sorting/service/hop_office, +/obj/structure/disposalpipe/sorting/mail{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/radio/intercom/directional/north, +/obj/effect/mapping_helpers/mail_sorting/science/robotics, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/hallway/primary/central/fore) +"gUL" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/tile, +/area/station/service/kitchen) +"gUR" = ( +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/machinery/growing/tray, +/obj/machinery/camera/directional/north{ + c_tag = "Security - Permabrig Forestry"; + network = list("ss13","prison") + }, +/turf/open/misc/dirt/planet, +/area/station/security/prison) +"gUU" = ( +/obj/effect/turf_decal/siding/white, +/obj/item/reagent_containers/chem_pack{ + pixel_x = -6 + }, +/obj/item/reagent_containers/chem_pack{ + pixel_x = 6 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/table/glass, +/turf/open/floor/iron/dark, +/area/station/medical/treatment_center) +"gUV" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/misc/asteroid/moon, +/area/station/science/xenobiology) +"gUY" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/tile, +/area/station/service/bar) +"gVm" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 9 + }, +/turf/open/floor/engine/hull, +/area/space/nearstation) +"gVt" = ( +/obj/item/radio/intercom/directional/north, +/obj/machinery/light/red/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown/half{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/commons/storage/tools) +"gVS" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/station/maintenance/solars/starboard/aft) +"gVZ" = ( +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/iron/white/small, +/area/station/medical/surgery/theatre) +"gWl" = ( +/obj/structure/cable, +/obj/structure/ladder, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"gWo" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/medical/break_room) +"gWD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"gWE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"gWI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"gWJ" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/dark_blue{ + dir = 9 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/command/meeting_room/council) +"gWR" = ( +/turf/open/openspace, +/area/station/engineering/atmos/office) +"gWY" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"gXt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/general/visible, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"gXw" = ( +/obj/machinery/computer/mech_bay_power_console{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/firealarm/directional/east, +/obj/machinery/light/warm/directional/east, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"gXG" = ( +/obj/effect/turf_decal/arrows{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/cargo/storage) +"gXH" = ( +/obj/effect/spawner/random/vending/snackvend, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"gXI" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "viroview"; + name = "Viewport Shutters" + }, +/turf/open/floor/plating, +/area/station/medical/virology) +"gXO" = ( +/obj/structure/hedge, +/obj/structure/window/fulltile, +/turf/open/floor/iron/dark/smooth_large, +/area/station/cargo/lobby) +"gXS" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"gYe" = ( +/obj/effect/turf_decal/tile/brown/opposingcorners, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"gYo" = ( +/obj/structure/extinguisher_cabinet/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/side, +/area/station/medical/pharmacy) +"gYO" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4 + }, +/obj/effect/mapping_helpers/mail_sorting/medbay/chemistry, +/obj/effect/mapping_helpers/mail_sorting/medbay/virology, +/obj/effect/mapping_helpers/mail_sorting/medbay/cmo_office, +/obj/effect/mapping_helpers/mail_sorting/medbay/general, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"gYP" = ( +/obj/machinery/vending/wardrobe/bar_wardrobe, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/bar) +"gYV" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/service/hydroponics) +"gYX" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/chem_heater/withbuffer, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"gZp" = ( +/obj/machinery/computer/station_alert{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/obj/machinery/light/warm/directional/east, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"gZr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/turf/open/floor/iron, +/area/station/engineering/atmos/hfr_room) +"gZw" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 4 + }, +/area/station/command/meeting_room/council) +"gZG" = ( +/obj/machinery/light/cold/directional/east, +/obj/item/radio/intercom/directional/east, +/turf/open/openspace, +/area/station/medical/treatment_center) +"gZL" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/command/heads_quarters/qm) +"gZR" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/machinery/digital_clock/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/dark/corner, +/area/station/commons/dorms) +"hab" = ( +/turf/closed/wall, +/area/station/commons/vacant_room/commissary) +"had" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/landmark/start/security_officer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/security/office) +"hag" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/book/manual/hydroponics_pod_people{ + pixel_x = -6 + }, +/obj/item/reagent_containers/spray/plantbgone{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/reagent_containers/spray/plantbgone{ + pixel_x = 7; + pixel_y = 2 + }, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/service/hydroponics) +"hap" = ( +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/general/visible{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"hay" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/cold/no_nightlight/directional/north, +/obj/item/radio/intercom/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"haA" = ( +/obj/machinery/air_sensor/incinerator_tank, +/turf/open/floor/engine, +/area/station/maintenance/disposal/incinerator) +"hbb" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/structure/chair, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/security/processing) +"hbc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/cargo/miningoffice) +"hbh" = ( +/obj/effect/mapping_helpers/burnt_floor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"hbj" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/random/entertainment/money_small, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"hbk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/machinery/firealarm/directional/north, +/obj/machinery/light/warm/directional/north, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"hbm" = ( +/obj/structure/window/reinforced/tinted/fulltile, +/obj/structure/hedge/opaque, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/qm) +"hbr" = ( +/obj/structure/lattice, +/obj/structure/railing{ + dir = 5 + }, +/turf/open/openspace, +/area/station/hallway/primary/central) +"hbw" = ( +/obj/effect/mapping_helpers/airlock/access/all/service/janitor, +/obj/machinery/door/airlock/service{ + name = "Custodial Closet" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/janitor) +"hbD" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/space/nearstation) +"hcf" = ( +/obj/structure/rack/shelf, +/obj/item/food/baguette, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/stone, +/area/station/maintenance/starboard/fore) +"hci" = ( +/obj/effect/turf_decal/tile/green/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/checker, +/area/station/hallway/primary/central/fore) +"hcC" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/closet/firecloset, +/obj/effect/landmark/start/hangover/closet, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/escape_pod) +"hcL" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/pen{ + pixel_y = 4 + }, +/obj/item/radio/headset/headset_sec/alt{ + pixel_x = 4; + pixel_y = 14 + }, +/obj/structure/disposalpipe/sorting/mail, +/obj/effect/mapping_helpers/mail_sorting/security/hos_office, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/office) +"hcS" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/departure_lounge) +"hdm" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/engineering/gravity_generator) +"hdL" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"hdT" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen/minisat{ + pixel_y = 24 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"hea" = ( +/turf/open/floor/wood/tile, +/area/station/medical/psychology) +"hed" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"hes" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron, +/area/station/commons/dorms) +"het" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor/left/directional/west{ + req_access = list("captain"); + name = "Low-Risk Modules" + }, +/obj/effect/spawner/random/aimodule/neutral, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/north, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/ai_upload) +"hey" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 9 + }, +/turf/open/openspace, +/area/station/engineering/atmos/upper) +"heF" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/turf/open/floor/plating, +/area/station/engineering/supermatter) +"heK" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/purple, +/turf/open/space/openspace, +/area/space/nearstation) +"heQ" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/maintenance/aft/upper) +"hfb" = ( +/obj/machinery/computer/exoscanner_control{ + dir = 4 + }, +/obj/machinery/light/warm/directional/south, +/turf/open/floor/iron/dark/small, +/area/station/cargo/drone_bay) +"hfj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/turf/open/floor/iron, +/area/station/engineering/lobby) +"hfq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/exit/escape_pod) +"hfx" = ( +/obj/item/radio/intercom{ + broadcasting = 1; + listening = 0; + name = "Station Intercom (Court)"; + pixel_y = -16 + }, +/obj/structure/table/reinforced, +/obj/item/gavelblock{ + pixel_x = 6 + }, +/obj/item/book/manual/wiki/security_space_law{ + pixel_y = 3; + pixel_x = -6 + }, +/obj/item/gavelhammer{ + pixel_y = 3 + }, +/turf/open/floor/carpet/green, +/area/station/security/courtroom) +"hfz" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Diner Overlook Maintenance" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/service/kitchen/diner) +"hfB" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/large, +/area/station/cargo/miningoffice) +"hfD" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"hfP" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/lunar_sand/plating, +/obj/structure/window/reinforced/spawner/directional/north, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"hfV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/security/holding_cell) +"hgf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron/white/side, +/area/station/science/research) +"hgj" = ( +/obj/item/stack/sheet/cardboard, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"hgl" = ( +/obj/structure/cable, +/turf/open/floor/carpet/green, +/area/station/command/heads_quarters/nt_rep) +"hgn" = ( +/obj/structure/chair/comfy, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/landmark/start/chaplain, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/wood/large, +/area/station/service/chapel/office) +"hgo" = ( +/obj/effect/turf_decal/tile/blue/half{ + dir = 4 + }, +/obj/machinery/airalarm/directional/west, +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/box/white, +/obj/machinery/computer/operating, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/surgery/fore) +"hgp" = ( +/obj/effect/spawner/random/structure/table_or_rack, +/obj/effect/spawner/random/maintenance/three, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"hgt" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/visible{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible/layer1{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible/layer5{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating, +/area/station/science/ordnance) +"hgu" = ( +/obj/structure/chair/office, +/obj/item/radio/intercom/directional/north, +/obj/effect/landmark/start/lawyer, +/turf/open/floor/carpet, +/area/station/service/lawoffice) +"hgv" = ( +/obj/machinery/cryopod, +/obj/effect/turf_decal/siding/white, +/obj/effect/turf_decal/box/white{ + color = "#9FED58" + }, +/obj/machinery/computer/cryopod/directional/north, +/turf/open/floor/iron/dark/smooth_large, +/area/station/common/cryopods) +"hgw" = ( +/obj/machinery/light/cold/directional/west, +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/turf_decal/box, +/turf/open/floor/engine, +/area/station/science/ordnance) +"hgz" = ( +/obj/docking_port/stationary/random{ + dir = 2; + name = "lavaland"; + shuttle_id = "pod_3_lavaland" + }, +/turf/open/space/openspace, +/area/space/nearstation) +"hgA" = ( +/obj/structure/rack, +/obj/item/reagent_containers/pill/maintenance, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"hgE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/medical/storage) +"hgG" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/chair/wood, +/turf/open/floor/wood, +/area/station/service/chapel) +"hgR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/escape) +"hgV" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/obj/machinery/computer/warrant{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/security/holding_cell) +"hhh" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/transit_tube, +/turf/open/floor/plating, +/area/station/science/xenobiology) +"hhs" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/dark/end{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/small, +/area/station/hallway/primary/port) +"hhL" = ( +/obj/machinery/light/cold/directional/north, +/obj/machinery/firealarm/directional/north{ + pixel_x = -11 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/brig) +"hig" = ( +/obj/effect/turf_decal/tile/green/opposingcorners, +/obj/machinery/newscaster/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/hallway/primary/central/fore) +"him" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/machinery/power/energy_accumulator/grounding_rod/anchored, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"hiw" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light/small/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"hiG" = ( +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/cargo/lobby) +"hiK" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Central Primary Hallway - Brig Entrance" + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"hiV" = ( +/obj/effect/spawner/random/engineering/canister, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"hiW" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/turf/open/floor/plating, +/area/station/engineering/main) +"hjf" = ( +/obj/machinery/vending/games, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/camera/directional/south{ + c_tag = "Dormitories - Cryogenics" + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/common/cryopods) +"hjq" = ( +/obj/effect/turf_decal/trimline/dark_red/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/security/prison) +"hjz" = ( +/obj/machinery/drone_dispenser, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"hjJ" = ( +/turf/closed/wall/r_wall, +/area/station/ai_monitored/turret_protected/aisat_interior) +"hjM" = ( +/turf/closed/wall, +/area/station/engineering/storage/tcomms) +"hkj" = ( +/obj/structure/lattice, +/obj/structure/window/spawner/directional/east, +/obj/structure/window/spawner/directional/west, +/obj/structure/window/spawner/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/marker_beacon/indigo, +/obj/structure/window/spawner/directional/north, +/turf/open/openspace, +/area/station/security/holding_cell) +"hkx" = ( +/obj/machinery/door/airlock/bathroom{ + name = "Dormitory Restrooms" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/toilet/restrooms) +"hkG" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "AI Core shutters"; + name = "AI Core Shutters" + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/ai) +"hkL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/obj/effect/landmark/start/brig_physician, +/turf/open/floor/iron/white/smooth_large, +/area/station/security/medical) +"hkU" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/security/prison/visit) +"hkX" = ( +/obj/structure/bed/double{ + dir = 4 + }, +/obj/item/bedsheet/black/double{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/commons/dorms/room4) +"hlh" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/white/side{ + dir = 9 + }, +/area/station/hallway/primary/central/fore) +"hln" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/station/service/library/lounge) +"hlw" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"hlE" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/dark/end{ + dir = 4 + }, +/turf/open/floor/iron/small, +/area/station/hallway/primary/starboard) +"hlL" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack/shelf, +/obj/item/electronics/apc{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/electronics/apc{ + pixel_y = -6 + }, +/obj/item/electronics/airlock{ + pixel_y = 3; + pixel_x = 2 + }, +/obj/item/electronics/airlock{ + pixel_x = -4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/storage/tech) +"hlM" = ( +/obj/structure/railing, +/turf/open/openspace, +/area/station/science/genetics) +"hlU" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/obj/machinery/camera/directional/south{ + c_tag = "Security - Office" + }, +/obj/item/kirbyplants/synthetic/plant27, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/security/office) +"hlW" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"hlZ" = ( +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"hmb" = ( +/obj/effect/turf_decal/trimline/green/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/mid_joiner{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/item/food/grown/wheat{ + pixel_y = 3; + pixel_x = -3 + }, +/obj/item/food/grown/wheat{ + pixel_y = 3; + pixel_x = 3 + }, +/obj/item/food/grown/wheat, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/service/hydroponics) +"hmc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/structure/table/glass, +/obj/item/clothing/gloves/latex, +/obj/item/clothing/glasses/science{ + pixel_y = 6 + }, +/obj/item/clothing/glasses/hud/health, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/virology) +"hmd" = ( +/obj/effect/spawner/random/trash/food_packaging, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"hmf" = ( +/obj/structure/closet/crate, +/obj/item/stock_parts/cell/lead, +/obj/effect/spawner/random/maintenance/eight, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/large, +/area/station/cargo/storage) +"hmj" = ( +/obj/structure/closet/secure_closet/miner, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) +"hml" = ( +/turf/closed/wall/r_wall, +/area/station/science/cytology) +"hmm" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/commons/storage/primary) +"hms" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/wood, +/area/station/service/library/lounge) +"hmw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/small, +/area/station/medical/surgery/theatre) +"hmQ" = ( +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/obj/structure/cable, +/obj/machinery/door/airlock/security/glass{ + name = "Bouncer's Overlook" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/checkpoint/service) +"hmS" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/machinery/power/energy_accumulator/tesla_coil/anchored, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"hmY" = ( +/obj/effect/spawner/random/trash/mess, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"hnh" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/chair/wood{ + pixel_y = -6 + }, +/turf/open/floor/wood, +/area/station/maintenance/port/fore) +"hnp" = ( +/obj/structure/chair/plastic{ + dir = 4 + }, +/obj/item/cigbutt/roach, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/turf/open/floor/iron/vaporwave, +/area/station/maintenance/department/security/upper) +"hnt" = ( +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/obj/machinery/atmospherics/components/trinary/filter/atmos/n2o{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"hnx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) +"hnH" = ( +/obj/effect/turf_decal/tile/bar/fourcorners, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/iron/checker, +/area/station/service/kitchen/diner) +"hnI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/large, +/area/station/security/brig/entrance) +"hnV" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"hoa" = ( +/turf/closed/wall, +/area/station/commons/dorms/room4) +"hog" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Brig" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/brig) +"hoh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"hoo" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "consultantprivacy"; + name = "Privacy Shutters" + }, +/turf/open/floor/plating, +/area/station/command/heads_quarters/nt_rep) +"hoq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/tcommsat/server) +"hou" = ( +/obj/effect/turf_decal/tile/blue, +/obj/structure/closet/crate/freezer, +/obj/effect/spawner/random/medical/memeorgans, +/obj/effect/spawner/random/medical/memeorgans, +/obj/effect/spawner/random/medical/organs, +/obj/item/organ/external/tail/cat, +/obj/item/organ/external/tail/cat{ + pixel_x = 6 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/maintenance/abandon_surgery) +"hoy" = ( +/obj/machinery/vending/dinnerware, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/wood/tile, +/area/station/service/kitchen) +"hoE" = ( +/obj/structure/hedge, +/obj/structure/window/fulltile, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/chapel) +"hoI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/station/commons/dorms) +"hoW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/storage/mining) +"hpf" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/engineering/atmos/hfr_room) +"hpo" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/station/maintenance/aft/greater) +"hpr" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/dark/end{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central) +"hpx" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos/office) +"hpE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/iron/white/side{ + dir = 1 + }, +/area/station/science/research) +"hpI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"hpL" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Bar Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/service/bar, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"hpO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/modular_computer/preset/id, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain) +"hpS" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"hpW" = ( +/obj/machinery/holopad/secure, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet/purple, +/area/station/command/heads_quarters/rd) +"hpY" = ( +/obj/machinery/door/airlock{ + id_tag = "private_5"; + name = "Private Quarters 5" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms/room5) +"hqd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"hqo" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/engine/vacuum, +/area/station/science/ordnance/burnchamber) +"hqp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) +"hqB" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/spawner/random/maintenance/seven, +/turf/open/floor/iron/large, +/area/station/cargo/storage) +"hqG" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics Storage" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos/storage) +"hqT" = ( +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/common/laser_tag) +"hra" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"hrd" = ( +/obj/machinery/modular_computer/preset/command{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/obj/machinery/camera/directional/south{ + c_tag = "Bridge Core - Center" + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"hrg" = ( +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/machinery/door/airlock/atmos{ + name = "Atmoshpherics Maintenance Access" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos/upper) +"hrn" = ( +/obj/effect/turf_decal/lunar_sand, +/obj/machinery/camera/directional/north{ + c_tag = "Xenobiology Pens - Upper Fore"; + network = list("ss13","xeno","rd") + }, +/turf/open/floor/glass/reinforced, +/area/station/science/xenobiology) +"hru" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/machinery/door/window/right/directional/west{ + name = "Chemistry Desk"; + req_access = list("pharmacy") + }, +/turf/open/floor/plating, +/area/station/medical/pharmacy) +"hrC" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 5 + }, +/turf/open/floor/iron, +/area/station/maintenance/disposal/incinerator) +"hrD" = ( +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/box, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/ai_monitored/turret_protected/ai) +"hrG" = ( +/obj/structure/rack/shelf, +/obj/item/reagent_containers/hypospray/medipen/ekit, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/iron/white, +/area/station/medical/pharmacy) +"hrI" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron/white, +/area/station/science/xenobiology) +"hrK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"hrW" = ( +/turf/closed/mineral/random/stationside/moon, +/area/station/science/xenobiology) +"hrY" = ( +/obj/machinery/vending/boozeomat, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/machinery/light/warm/dim/directional/north, +/turf/open/floor/iron/dark, +/area/station/service/abandoned_gambling_den) +"hsc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark/small, +/area/station/medical/treatment_center) +"hsm" = ( +/obj/structure/window/spawner/directional/north, +/obj/structure/window/spawner/directional/west, +/obj/structure/window/spawner/directional/east, +/obj/structure/window/spawner/directional/south, +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/olive, +/turf/open/openspace, +/area/station/commons/fitness/recreation) +"hso" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/command/heads_quarters/hop) +"hsA" = ( +/obj/machinery/holopad, +/obj/structure/cable, +/obj/structure/railing, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"hsC" = ( +/obj/structure/table/wood, +/obj/item/toy/cards/deck/cas/black{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/item/toy/cards/deck/cas{ + pixel_y = 8; + pixel_x = 5 + }, +/obj/item/toy/cards/deck{ + pixel_x = -3 + }, +/turf/open/floor/wood, +/area/station/service/library/lounge) +"hsI" = ( +/obj/structure/cable, +/obj/structure/cable/layer1, +/obj/structure/cable/layer3, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/ai_monitored/turret_protected/aisat/maint) +"hsJ" = ( +/obj/structure/rack, +/obj/effect/spawner/random/engineering/toolbox, +/obj/item/reagent_containers/pill/maintenance, +/obj/item/stack/sheet/glass{ + amount = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"hsL" = ( +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"hsU" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/machinery/requests_console/auto_name/directional/east, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/machinery/camera/directional/east{ + c_tag = "Chapel - Office" + }, +/turf/open/floor/wood/large, +/area/station/service/chapel/office) +"hsX" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 9 + }, +/turf/open/space/openspace, +/area/space/nearstation) +"hta" = ( +/obj/machinery/conveyor{ + id = "cargodisposals"; + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/light/warm/directional/north, +/turf/open/floor/plating, +/area/station/cargo/sorting) +"htf" = ( +/turf/closed/wall/r_wall, +/area/station/hallway/primary/central/fore) +"htq" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/white/corner, +/turf/open/floor/engine, +/area/station/security/range) +"htA" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/clothing/under/misc/burial, +/obj/item/clothing/under/misc/burial, +/obj/item/clothing/under/misc/burial, +/obj/item/clothing/under/misc/burial, +/obj/item/storage/box/bodybags{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/book/bible, +/turf/open/floor/wood/large, +/area/station/service/chapel/funeral) +"htJ" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"htS" = ( +/obj/effect/turf_decal/lunar_sand/plating, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/glass/reinforced, +/area/station/science/xenobiology) +"htT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/cargo/lobby) +"htZ" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/turf_decal/bot, +/obj/machinery/camera/directional/east{ + c_tag = "Science - Ordnance Storage"; + network = list("ss13","rd") + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/science/ordnance) +"hup" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/large, +/area/station/cargo/miningoffice) +"huq" = ( +/turf/closed/wall/r_wall, +/area/station/medical/treatment_center) +"huE" = ( +/obj/item/clothing/mask/gas, +/obj/effect/spawner/random/structure/table_or_rack, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"huG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/entry) +"huJ" = ( +/obj/structure/extinguisher_cabinet/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/item/stack/cable_coil/five, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/frame/machine/secured, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/dark/small, +/area/station/science/research) +"huL" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"huY" = ( +/obj/machinery/button/door/directional/south{ + id = "Toilet2x"; + name = "Lock Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/obj/machinery/light/small/directional/east, +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/white/small, +/area/station/commons/toilet/auxiliary) +"hvf" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/commons/vacant_room/commissary) +"hvn" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/structure/cable/layer1, +/obj/structure/cable/layer3, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/ai) +"hvs" = ( +/obj/item/stack/package_wrap, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"hvu" = ( +/obj/effect/turf_decal/tile/dark_red/half{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/science/robotics/lab) +"hvv" = ( +/obj/structure/industrial_lift, +/turf/open/floor/plating, +/area/station/cargo/storage) +"hvB" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/chair/wood, +/turf/open/floor/wood, +/area/station/service/chapel) +"hvP" = ( +/obj/machinery/airalarm/directional/south, +/obj/structure/table/wood, +/obj/item/reagent_containers/cup/glass/bottle/rum{ + pixel_y = 12 + }, +/obj/item/reagent_containers/cup/glass/bottle/whiskey{ + pixel_y = 9; + pixel_x = 6 + }, +/obj/item/reagent_containers/cup/glass/drinkingglass/shotglass{ + pixel_y = 5; + pixel_x = -9 + }, +/obj/item/reagent_containers/cup/glass/drinkingglass/shotglass{ + pixel_x = -2 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/black, +/area/station/command/heads_quarters/qm) +"hwl" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/machinery/airalarm/directional/east, +/obj/machinery/light/cold/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/engineering/gravity_generator) +"hwt" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/side{ + dir = 1 + }, +/area/station/science/ordnance/office) +"hwA" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Firing Range Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/department/security/lower) +"hwF" = ( +/obj/structure/cable/layer3, +/turf/open/floor/engine/hull, +/area/station/solars/aisat) +"hwJ" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/department/security/upper) +"hwS" = ( +/obj/effect/turf_decal/lunar_sand, +/obj/effect/turf_decal/lunar_sand/plating, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/plating, +/area/station/science/xenobiology) +"hwU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/lesser) +"hxs" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/hallway/secondary/command) +"hxv" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/iron/stairs{ + dir = 8 + }, +/area/station/engineering/atmos) +"hxC" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"hxQ" = ( +/obj/structure/chair/office, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/assistant, +/turf/open/floor/carpet, +/area/station/commons/vacant_room/office) +"hyn" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/visible{ + dir = 6 + }, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos) +"hyo" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Mix to Freezer Mix" + }, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/science/ordnance) +"hyB" = ( +/obj/effect/turf_decal/siding/white, +/obj/effect/turf_decal/tile/dark_green/half/contrasted, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/siding/white/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/science/circuits) +"hyL" = ( +/obj/machinery/photocopier, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/turf/open/floor/iron/large, +/area/station/command/heads_quarters/qm) +"hyO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/brig/entrance) +"hyR" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/aisat/equipment) +"hyX" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/geneticist, +/turf/open/floor/iron/white/small, +/area/station/science/genetics) +"hzp" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/commons/dorms) +"hzq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/cargo/storage) +"hzs" = ( +/obj/machinery/light/directional/east, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) +"hzD" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/nestbox, +/turf/open/floor/grass, +/area/station/service/hydroponics/upper) +"hzK" = ( +/obj/item/kirbyplants/fern, +/turf/open/floor/wood, +/area/station/maintenance/starboard/fore) +"hzU" = ( +/obj/effect/turf_decal/tile/red/real_red/opposingcorners{ + dir = 1 + }, +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/iron/cafeteria, +/area/station/hallway/secondary/exit/escape_pod) +"hzW" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/service/abandoned_gambling_den) +"hAo" = ( +/obj/effect/turf_decal/vg_decals/atmos/nitrous_oxide, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos/upper) +"hAE" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/security/processing) +"hAI" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"hBb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/multiz/cyan/visible{ + dir = 8 + }, +/obj/effect/mapping_helpers/airalarm/engine_access, +/obj/machinery/airalarm/directional/north, +/obj/machinery/light/warm/directional/north, +/obj/structure/cable, +/obj/effect/mapping_helpers/airalarm/link{ + chamber_id = "engine" + }, +/obj/effect/mapping_helpers/airalarm/tlv_no_checks, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"hBd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/maintenance/aft/greater) +"hBe" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/science/ordnance/testlab) +"hBh" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/station/command/heads_quarters/cmo) +"hBi" = ( +/obj/effect/turf_decal/stripes/blue/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/blue/line{ + dir = 4 + }, +/obj/machinery/light/blacklight/directional/south, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull, +/area/space/nearstation) +"hBn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/diagonal, +/area/station/ai_monitored/security/armory) +"hBz" = ( +/obj/effect/turf_decal/tile/dark_blue/half{ + dir = 8 + }, +/obj/machinery/light_switch/directional/south, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/security/office) +"hBG" = ( +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/science/xenobiology/hallway) +"hBQ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/blueshield) +"hBU" = ( +/turf/open/floor/iron/recharge_floor, +/area/station/science/robotics/mechbay) +"hBV" = ( +/obj/structure/cable, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"hCc" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "Atmospherics Blast Door" + }, +/turf/open/floor/plating, +/area/station/engineering/atmos/upper) +"hCe" = ( +/obj/machinery/restaurant_portal/restaurant, +/obj/effect/turf_decal/bot, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/kitchen/diner) +"hCi" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/computer/atmos_control/ordnancemix, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/ordnance) +"hCj" = ( +/obj/structure/table, +/obj/item/paper/guides/jobs/engi/gravity_gen, +/obj/effect/spawner/random/bureaucracy/pen, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/engineering/gravity_generator) +"hCx" = ( +/obj/structure/grille, +/obj/structure/girder, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"hCD" = ( +/obj/effect/turf_decal/tile/green/opposingcorners, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/hallway/primary/central/fore) +"hCK" = ( +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/obj/machinery/door/airlock/maintenance/external{ + name = "Deprecated Hydroponics" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/abandon_cafeteria/hydro) +"hCM" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"hDd" = ( +/obj/structure/trash_pile, +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/spawner/random/trash/botanical_waste, +/obj/effect/mapping_helpers/burnt_floor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/central) +"hDh" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/secondary/command) +"hDj" = ( +/obj/effect/turf_decal/tile/red/real_red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/turf/open/floor/iron/white/corner{ + dir = 4 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"hDx" = ( +/obj/machinery/door/poddoor/shutters{ + id = "z1-maint-crates"; + name = "Abandoned Storage" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"hDH" = ( +/obj/effect/spawner/random/trash/food_packaging, +/turf/open/floor/plating, +/area/station/maintenance/central/lesser) +"hDO" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/customs) +"hDR" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/service/hydroponics) +"hDS" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white/herringbone, +/area/station/medical/patients_rooms) +"hDZ" = ( +/obj/machinery/button/door/directional/south{ + id = "psychology"; + name = "Privacy Shutters Control"; + pixel_x = -6 + }, +/obj/machinery/camera/directional/south{ + c_tag = "Medbay - Psychology Office"; + network = list("ss13","medbay") + }, +/turf/open/floor/carpet, +/area/station/medical/psychology) +"hEj" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) +"hEF" = ( +/obj/machinery/power/solar{ + id = "foreport"; + name = "Fore-Port Solar Array" + }, +/obj/structure/cable, +/turf/open/floor/iron/solarpanel/airless, +/area/station/solars/port/fore) +"hEL" = ( +/obj/machinery/duct, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/engineering/atmos/office) +"hEN" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/tile, +/area/station/service/bar) +"hEO" = ( +/turf/open/floor/plating, +/area/station/maintenance/starboard/lesser) +"hER" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"hEU" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/checker{ + dir = 1 + }, +/area/station/hallway/secondary/command) +"hEX" = ( +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/mid_joiner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/medical/morgue) +"hFb" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/obj/effect/turf_decal/lunar_sand, +/turf/open/floor/glass/reinforced, +/area/station/science/xenobiology) +"hFf" = ( +/obj/structure/table, +/obj/item/flashlight/lamp{ + pixel_y = 2 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/interrogation) +"hFo" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"hFs" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/marker_beacon/teal, +/turf/open/floor/glass/reinforced, +/area/station/ai_monitored/turret_protected/ai) +"hFI" = ( +/obj/structure/rack, +/obj/item/trash/tray, +/obj/item/food/egg/rotten, +/turf/open/floor/plating, +/area/station/maintenance/department/bridge) +"hFJ" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/iron/edge, +/area/station/service/hydroponics/upper) +"hFN" = ( +/obj/item/kirbyplants/synthetic/plant29, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 1 + }, +/area/station/security/brig) +"hFO" = ( +/obj/structure/closet, +/obj/effect/spawner/random/maintenance/four, +/obj/effect/spawner/random/engineering/vending_restock, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"hFV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/red/line{ + dir = 6 + }, +/turf/open/floor/iron/dark/small, +/area/station/security/execution/education) +"hFZ" = ( +/obj/effect/turf_decal/caution, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/aisat/teleporter) +"hGd" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/hallway/primary/central) +"hGh" = ( +/obj/machinery/power/tracker, +/obj/structure/cable, +/turf/open/floor/iron/solarpanel/airless, +/area/station/solars/aisat) +"hGr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"hGN" = ( +/obj/structure/table, +/obj/item/training_toolbox{ + pixel_y = 10; + pixel_x = 2 + }, +/obj/item/training_toolbox{ + pixel_y = 1; + pixel_x = 2 + }, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/iron, +/area/station/common/wrestling/arena) +"hGY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/spawner/structure/electrified_grille, +/turf/open/floor/plating, +/area/station/maintenance/department/eva) +"hHe" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "Pure to Port" + }, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"hHf" = ( +/obj/structure/bed/double, +/obj/item/bedsheet/nanotrasen/double, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/blueshield) +"hHg" = ( +/obj/machinery/shieldgen, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"hHj" = ( +/obj/structure/chair/sofa/right{ + color = "#462f1c" + }, +/turf/open/floor/carpet, +/area/station/medical/psychology) +"hHl" = ( +/obj/structure/lattice/catwalk, +/obj/structure/ladder, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/openspace, +/area/station/engineering/atmos/upper) +"hHr" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/firealarm/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"hHz" = ( +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/station/science/ordnance/burnchamber) +"hHB" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "psychology"; + name = "Privacy Shutters"; + dir = 1 + }, +/turf/open/floor/plating, +/area/station/medical/psychology) +"hHF" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"hHL" = ( +/turf/open/openspace, +/area/station/cargo/office) +"hHX" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/cargo/office) +"hHZ" = ( +/obj/machinery/door/airlock/hatch{ + name = "Telecomms Server Room" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/tcoms, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/tcommsat/server) +"hIq" = ( +/obj/machinery/telecomms/server/presets/engineering, +/turf/open/floor/circuit/telecomms/mainframe, +/area/station/tcommsat/server) +"hIx" = ( +/obj/structure/rack, +/obj/effect/spawner/random/trash/janitor_supplies, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"hIF" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tcomms) +"hIG" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/holopad, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/engineering/atmos/hfr_room) +"hII" = ( +/obj/effect/turf_decal/tile/red/real_red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/white/corner{ + dir = 4 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"hIJ" = ( +/obj/structure/closet/crate/cardboard/mothic, +/mob/living/basic/mothroach, +/obj/item/food/vendor_snacks/mothmallow, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"hIM" = ( +/obj/structure/stairs/south, +/turf/open/floor/plating, +/area/station/security/holding_cell) +"hIO" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/camera/directional/east{ + c_tag = "Upper Central Primary Hallway - Science Robotics" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"hIT" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"hJp" = ( +/obj/structure/altar_of_gods, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/service/chapel) +"hJs" = ( +/obj/structure/table/wood, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/bar) +"hJH" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/light/small/directional/west, +/obj/effect/landmark/start/captain, +/turf/open/floor/iron/white/diagonal, +/area/station/command/heads_quarters/captain) +"hJN" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/medical/pharmacy) +"hKi" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "kitchen_privacy"; + name = "Kitchen Privacy Shutters" + }, +/turf/closed/wall, +/area/station/service/kitchen) +"hKo" = ( +/obj/structure/girder, +/obj/structure/grille, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"hKr" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/commons/fitness/recreation) +"hKI" = ( +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"hKK" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/machinery/door/airlock/atmos/glass{ + name = "Upper Atmospherics Deck" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos/upper) +"hKZ" = ( +/obj/structure/chair/pew/right{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/turf/open/floor/iron/diagonal, +/area/station/security/courtroom) +"hLd" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/warm/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/commons/dorms) +"hLi" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/chair/sofa/middle/brown, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/turf/open/floor/carpet/green, +/area/station/service/library/lounge) +"hLm" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners, +/obj/machinery/airalarm/directional/north, +/obj/machinery/light/warm/directional/north, +/obj/structure/rack/shelf, +/turf/open/floor/iron/cafeteria{ + dir = 8 + }, +/area/station/service/salon) +"hLs" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/command/meeting_room/council) +"hLD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"hLE" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/structure/closet{ + name = "brig officer's locker" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/security/evidence) +"hLF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"hLN" = ( +/obj/item/kirbyplants/organic/plant11{ + pixel_y = 6 + }, +/turf/open/floor/wood/tile, +/area/station/ai_monitored/turret_protected/aisat_interior) +"hLR" = ( +/obj/structure/dresser, +/obj/machinery/light/small/directional/north, +/turf/open/floor/carpet/purple, +/area/station/command/heads_quarters/rd) +"hLX" = ( +/obj/effect/turf_decal/tile/green/opposingcorners, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/virology) +"hMe" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"hMm" = ( +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/service/library/lounge) +"hMv" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/service/janitor) +"hMM" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics_shutters"; + name = "Robotics Privacy Shutters"; + dir = 1 + }, +/turf/open/floor/plating, +/area/station/science/robotics/lab) +"hNp" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"hNw" = ( +/turf/open/openspace, +/area/station/engineering/transit_tube) +"hNx" = ( +/obj/structure/hedge, +/obj/structure/window/fulltile, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/exit) +"hNC" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/item/kirbyplants/organic/plant22, +/turf/open/floor/iron, +/area/station/hallway/secondary/recreation) +"hNE" = ( +/obj/machinery/dna_scannernew, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/genetics) +"hNT" = ( +/obj/structure/cable, +/obj/machinery/power/solar_control{ + id = "aisolar"; + name = "AI Minisat Solar Control" + }, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/ai_monitored/turret_protected/aisat/maint) +"hNY" = ( +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating, +/area/station/maintenance/solars/port/aft) +"hOa" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light/warm/directional/north, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"hOb" = ( +/obj/structure/cable, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"hOh" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/exit/departure_lounge) +"hOo" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/wood, +/area/station/commons/vacant_room/office) +"hOu" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/science/xenobiology) +"hOA" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/corner, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/structure/cable, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"hOK" = ( +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/dark/small, +/area/station/bitrunning/den) +"hOS" = ( +/obj/machinery/light/floor/has_bulb, +/obj/effect/turf_decal/siding/dark_blue/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"hOY" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/security/checkpoint/medical) +"hPh" = ( +/obj/item/radio/intercom/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/science/ordnance/testlab) +"hPi" = ( +/obj/effect/decal/cleanable/wrapping, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"hPt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/dark/visible, +/obj/effect/turf_decal/box/corners, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/obj/effect/turf_decal/lunar_sand, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/glass/reinforced, +/area/station/science/xenobiology) +"hPx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"hPA" = ( +/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, +/obj/machinery/door/airlock/maintenance/external{ + name = "Blunt Rotation Room" + }, +/turf/open/floor/plating, +/area/station/maintenance/department/security/upper) +"hPE" = ( +/turf/closed/wall, +/area/station/medical/treatment_center) +"hPR" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/item/kirbyplants/synthetic/plant29, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/escape) +"hPV" = ( +/obj/effect/spawner/random/trash/moisture_trap, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"hPW" = ( +/obj/structure/rack, +/obj/item/shovel{ + pixel_x = -3 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/item/shovel{ + pixel_x = 3 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/camera/directional/west{ + c_tag = "Cargo - Mining Dock Airlock" + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/item/pickaxe, +/turf/open/floor/iron, +/area/station/cargo/miningdock) +"hPY" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/hallway/secondary/recreation) +"hQb" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"hQm" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/shutters/window{ + id = "teleaccess"; + name = "Teleportation Shutter Access" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/iron/dark, +/area/station/command/teleporter) +"hQC" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light/small/directional/east, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/stack/rods/two, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"hQD" = ( +/obj/effect/spawner/random/trash/box, +/obj/effect/spawner/random/maintenance/two, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/station/maintenance/central) +"hQF" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/light/small/blacklight/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/morgue) +"hQG" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/tile, +/area/station/commons/lounge) +"hQJ" = ( +/obj/effect/turf_decal/bot, +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/command) +"hQK" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"hQM" = ( +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/tile/green/opposingcorners, +/obj/structure/cable, +/obj/machinery/disease2/diseaseanalyser, +/turf/open/floor/iron/white, +/area/station/medical/virology) +"hQU" = ( +/obj/structure/bookcase/random/adult, +/obj/structure/sign/painting/library{ + pixel_x = -32 + }, +/turf/open/floor/wood, +/area/station/service/library/lounge) +"hQW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/smooth_edge{ + dir = 8 + }, +/area/station/medical/pharmacy) +"hRc" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/iron/white/side{ + dir = 6 + }, +/area/station/common/cryopods) +"hRd" = ( +/obj/effect/mapping_helpers/airlock/access/any/security/court, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Courtroom Maintenance" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/security/courtroom) +"hRh" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/sign/painting/library{ + pixel_y = 32 + }, +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/turf_decal/bot, +/turf/open/floor/wood/large, +/area/station/service/library) +"hRj" = ( +/obj/structure/sign/warning/secure_area/directional/south, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"hRv" = ( +/obj/machinery/light/small/directional/south, +/obj/machinery/corral_corner{ + mapping_id = "3" + }, +/obj/machinery/slime_pen_controller{ + mapping_id = "3"; + dir = 2 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"hRw" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/primary/central/aft) +"hRy" = ( +/turf/closed/wall, +/area/station/service/bar) +"hRA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"hRD" = ( +/obj/structure/transit_tube/curved/flipped{ + dir = 8 + }, +/obj/structure/lattice, +/turf/open/space/openspace, +/area/space/nearstation) +"hRG" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/window/spawner/directional/north, +/obj/structure/window/spawner/directional/south, +/turf/open/openspace, +/area/station/security/brig/upper) +"hRM" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/checker, +/area/station/hallway/primary/central/aft) +"hSi" = ( +/turf/open/floor/iron/dark/diagonal, +/area/station/ai_monitored/security/armory) +"hSp" = ( +/obj/item/stack/sheet/iron/five, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"hSC" = ( +/obj/structure/transit_tube, +/turf/open/floor/glass/reinforced, +/area/station/science/xenobiology) +"hSK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/landmark/start/detective, +/turf/open/floor/carpet, +/area/station/security/detectives_office) +"hSP" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation) +"hTc" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/table/wood, +/obj/item/storage/fancy/candle_box, +/obj/machinery/light/warm/directional/north, +/turf/open/floor/wood/large, +/area/station/service/chapel/funeral) +"hTd" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/openspace, +/area/station/commons/lounge) +"hTm" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/airalarm/directional/west, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/ai_monitored/command/nuke_storage) +"hTE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/plasteel{ + amount = 25 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/teleporter) +"hTG" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/commons/dorms/room6) +"hTI" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/pharmacy) +"hTO" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/siding/green{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/siding/green{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/vending/hydronutrients, +/turf/open/floor/iron/dark/smooth_half, +/area/station/service/hydroponics) +"hTP" = ( +/obj/machinery/airalarm/directional/north, +/obj/structure/bookcase/random/religion, +/turf/open/floor/wood, +/area/station/service/chapel) +"hTX" = ( +/obj/structure/chair/sofa/right/brown, +/turf/open/floor/carpet, +/area/station/service/abandoned_gambling_den) +"hUa" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/openspace, +/area/station/science/xenobiology) +"hUb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/item/radio/intercom/directional/east, +/obj/machinery/light/warm/directional/east, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"hUz" = ( +/obj/machinery/computer/rdservercontrol{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/structure/sign/warning/cold_temp/directional/north, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/dark_blue, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/science/server) +"hUE" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, +/turf/open/space/basic, +/area/space) +"hUF" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/commons/storage/tools) +"hUT" = ( +/turf/open/openspace, +/area/station/hallway/secondary/command) +"hUU" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Public Spa" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/smooth_large, +/area/station/common/spa) +"hUW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"hUX" = ( +/obj/machinery/libraryscanner, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/light/warm/directional/east, +/obj/machinery/camera/directional/north{ + c_tag = "Library - Front Desk"; + network = list("ss13","bar") + }, +/obj/structure/noticeboard/directional/north, +/obj/structure/sign/painting/library_secure{ + pixel_x = 32 + }, +/turf/open/floor/carpet/green, +/area/station/service/library/lounge) +"hVa" = ( +/obj/machinery/chem_heater/withbuffer, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/pharmacy) +"hVh" = ( +/obj/machinery/light/warm/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/service/library) +"hVi" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/security/glass{ + id_tag = "innerbrig"; + name = "Brig" + }, +/obj/effect/mapping_helpers/airlock/access/any/service/lawyer, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/holding_cell) +"hVm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"hVn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/holopad/secure, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/command/heads_quarters/qm) +"hVt" = ( +/obj/machinery/photocopier, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/security/brig/entrance) +"hVH" = ( +/obj/structure/table, +/obj/machinery/light/small/directional/east, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/interrogation) +"hVR" = ( +/obj/machinery/door/airlock/hatch{ + name = "Maintenance Hatch" + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"hVS" = ( +/obj/machinery/dna_scannernew, +/turf/open/floor/glass/reinforced, +/area/station/science/genetics) +"hVZ" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/hallway/secondary/command) +"hWc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"hWe" = ( +/obj/machinery/airalarm/directional/east, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark/small, +/area/station/command/heads_quarters/qm) +"hWq" = ( +/obj/effect/turf_decal/tile/green/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, +/turf/open/floor/iron/white, +/area/station/medical/virology) +"hWt" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"hWy" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/disposalpipe/broken{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/maintenance/port/greater) +"hWE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/iron/white/corner{ + dir = 8 + }, +/area/station/science/ordnance) +"hWG" = ( +/obj/effect/turf_decal/tile/brown/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"hWK" = ( +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"hWL" = ( +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"hWO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"hWP" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/disposalpipe/broken, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"hWS" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/dark/diagonal_edge, +/obj/item/reagent_containers/cup/bowl{ + pixel_y = 3 + }, +/obj/item/reagent_containers/cup/bowl{ + pixel_y = 6 + }, +/obj/item/reagent_containers/cup/bowl{ + pixel_y = 9 + }, +/turf/open/floor/iron/kitchen/diagonal, +/area/station/security/prison) +"hWW" = ( +/obj/structure/bed, +/obj/effect/landmark/start/prisoner, +/obj/machinery/button/curtain{ + id = "Cell2Privacy"; + pixel_x = 24; + pixel_y = -24 + }, +/obj/item/bedsheet/brown, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"hWY" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/stripes/line, +/obj/item/nanite_scanner, +/obj/item/nanite_scanner, +/obj/item/nanite_scanner, +/obj/item/nanite_scanner, +/obj/item/storage/box/disks_nanite, +/obj/item/storage/box/disks_nanite, +/obj/item/storage/box/disks_nanite, +/turf/open/floor/iron/dark/small, +/area/station/science/circuits) +"hWZ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/engine, +/area/station/engineering/atmos) +"hXi" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rndlab1"; + name = "Research and Development Shutter"; + dir = 4 + }, +/turf/open/floor/plating, +/area/station/science/research) +"hXj" = ( +/obj/item/stack/sheet/glass/fifty{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/plasteel{ + amount = 20; + pixel_x = 5; + pixel_y = 5 + }, +/obj/structure/table, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/small, +/area/station/science/robotics/lab) +"hXw" = ( +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/primary/starboard) +"hXE" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/science/ordnance) +"hXM" = ( +/mob/living/basic/slime, +/obj/machinery/light/floor/has_bulb, +/obj/machinery/duct, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"hXR" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/medical/morgue) +"hXS" = ( +/obj/machinery/light/floor/has_bulb, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"hXW" = ( +/obj/machinery/light/red/directional/west, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"hYb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/ai_monitored/turret_protected/ai_upload) +"hYp" = ( +/obj/effect/turf_decal/tile/green/opposingcorners, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"hYr" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron, +/area/station/engineering/atmos/storage) +"hYt" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/service/abandoned_gambling_den) +"hYw" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners, +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/light/warm/directional/south, +/turf/open/floor/iron/dark, +/area/station/service/chapel/office) +"hYy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"hYP" = ( +/turf/closed/wall, +/area/station/hallway/secondary/entry) +"hZf" = ( +/obj/effect/spawner/random/engineering/toolbox, +/obj/effect/spawner/random/maintenance/two, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"hZt" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"hZw" = ( +/obj/structure/lattice, +/obj/structure/window/spawner/directional/west, +/obj/structure/window/spawner/directional/east, +/obj/structure/window/spawner/directional/north, +/turf/open/openspace, +/area/station/service/hydroponics/upper) +"hZz" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) +"hZC" = ( +/obj/item/hatchet, +/obj/item/reagent_containers/blood/random, +/obj/structure/rack/shelf, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/maintenance/aft/upper) +"hZD" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/glass/reinforced, +/area/station/science/research) +"hZO" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 1 + }, +/mob/living/carbon/human/species/monkey{ + dir = 8 + }, +/obj/structure/flora/rock/pile/jungle/style_random, +/turf/open/floor/grass, +/area/station/science/genetics) +"hZP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/machinery/light/warm/directional/north, +/turf/open/floor/engine, +/area/station/engineering/atmos/hfr_room) +"iab" = ( +/obj/structure/cable, +/obj/effect/spawner/random/structure/steam_vent, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"iae" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"iaq" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/security/holding_cell) +"iaD" = ( +/obj/structure/table, +/obj/structure/railing, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"iaM" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/closet/secure_closet/security/cargo, +/obj/item/wrench, +/obj/item/crowbar, +/obj/item/radio, +/obj/item/clothing/mask/whistle, +/turf/open/floor/iron, +/area/station/security/checkpoint/supply) +"iaT" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/landmark/start/bartender, +/turf/open/floor/wood/large, +/area/station/service/bar) +"iaX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/maintenance/disposal/incinerator) +"ibg" = ( +/obj/structure/table/reinforced, +/obj/machinery/fax{ + fax_name = "Chief Engineer's Office"; + name = "Chief Engineer's Fax Machine"; + pixel_y = 3 + }, +/obj/item/paper/monitorkey, +/turf/open/floor/carpet/black, +/area/station/command/heads_quarters/ce) +"ibl" = ( +/obj/structure/sink/kitchen/directional/east, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"ibn" = ( +/obj/structure/lattice, +/obj/structure/window/spawner/directional/north, +/obj/structure/window/spawner/directional/south, +/obj/structure/window/spawner/directional/east, +/turf/open/openspace, +/area/station/security/brig/upper) +"ibu" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/obj/structure/sink/directional/east, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/science/genetics) +"ibC" = ( +/obj/structure/stairs/east, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/sign/directions/evac/directional/south{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/exit/departure_lounge) +"ibV" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay" + }, +/obj/effect/mapping_helpers/airlock/unres, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/obj/effect/mapping_helpers/airlock/access/any/medical/morgue, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/medbay/lobby) +"ibY" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/simple/violet/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"ick" = ( +/obj/effect/turf_decal/lunar_sand/plating, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/effect/turf_decal/siding/white, +/obj/machinery/duct, +/turf/open/floor/plating, +/area/station/science/xenobiology) +"icp" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/mid_joiner, +/obj/effect/turf_decal/trimline/green/line, +/obj/effect/turf_decal/trimline/green/filled/mid_joiner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_half, +/area/station/service/hydroponics) +"ics" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/central/fore) +"icu" = ( +/obj/effect/turf_decal/vg_decals/atmos/carbon_dioxide, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos/upper) +"icG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"icJ" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/commons/dorms) +"icQ" = ( +/obj/structure/sink/directional/south{ + pixel_y = 10 + }, +/obj/structure/mirror/directional/north, +/turf/open/floor/iron/white/diagonal, +/area/station/command/heads_quarters/captain) +"icU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Vault Access" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/dark/smooth_large, +/area/station/ai_monitored/command/nuke_storage) +"icX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/white/small, +/area/station/medical/surgery/theatre) +"idf" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/hallway/primary/central/fore) +"idh" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"idm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters{ + id = "aux_base_shutters"; + name = "Auxiliary Base Shutters"; + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/smooth_large, +/area/station/cargo/lobby) +"idr" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Cargo Lobby Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/cargo/lobby) +"idE" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/delivery, +/obj/machinery/light/directional/west, +/obj/effect/landmark/start/hangover/closet, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"idI" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/wood/tile, +/area/station/security/detectives_office) +"iec" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/department/security/lower) +"ief" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/white/side{ + dir = 6 + }, +/area/station/hallway/primary/central/fore) +"iei" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"iek" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk, +/obj/machinery/light/cold/directional/north, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/dark/smooth_large, +/area/station/common/cryopods) +"ier" = ( +/obj/item/beacon, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"ies" = ( +/turf/closed/wall, +/area/station/science/ordnance) +"iey" = ( +/obj/effect/turf_decal/box, +/obj/machinery/computer/station_alert{ + dir = 8 + }, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos/office) +"ieF" = ( +/obj/machinery/camera/directional/south{ + c_tag = "Port Primary Hallway - Starboard" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"ieH" = ( +/obj/structure/closet/secure_closet/medical1{ + anchored = 1 + }, +/obj/item/blood_filter, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/iron/white/small, +/area/station/medical/surgery/aft) +"ifb" = ( +/obj/machinery/atmospherics/pipe/smart/simple/brown/visible{ + dir = 9 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"ifc" = ( +/obj/structure/stairs/north, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/wood/tile, +/area/station/service/kitchen/diner) +"ife" = ( +/obj/effect/turf_decal/tile/purple, +/obj/structure/table, +/obj/item/reagent_containers/cup/glass/bottle/beer/light{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/reagent_containers/cup/glass/bottle/beer{ + pixel_x = 5; + pixel_y = 15 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/service/janitor) +"ifi" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/structure/railing, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/service/library) +"ify" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"ifz" = ( +/obj/machinery/atmospherics/components/binary/tank_compressor{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/engine, +/area/station/science/ordnance/testlab) +"ifB" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/station/service/library) +"ifI" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"ifY" = ( +/obj/structure/table, +/obj/item/storage/bag/plants{ + pixel_y = 5 + }, +/obj/item/kitchen/rollingpin{ + pixel_y = 4 + }, +/obj/item/reagent_containers/cup/rag{ + pixel_y = 4; + pixel_x = 5 + }, +/obj/item/reagent_containers/cup/watering_can{ + pixel_y = -6 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/service) +"igd" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/orange, +/obj/item/storage/box/mousetraps{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/lights/mixed, +/obj/item/grenade/chem_grenade/cleaner, +/obj/effect/turf_decal/tile/purple/opposingcorners, +/turf/open/floor/iron, +/area/station/maintenance/department/security/upper) +"igm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/grunge{ + id_tag = "Cell1Privacy"; + name = "Cell 1" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/prison) +"igo" = ( +/turf/closed/wall/r_wall, +/area/station/command/heads_quarters/ce) +"igu" = ( +/obj/structure/mirror/directional/north, +/obj/structure/sink/directional/south, +/obj/effect/turf_decal/siding/white{ + dir = 5 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"igA" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green, +/turf/open/floor/wood, +/area/station/commons/dorms/room3) +"igS" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners{ + dir = 1 + }, +/obj/structure/table, +/obj/effect/spawner/random/trash/botanical_waste, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/checker, +/area/station/maintenance/abandon_diner) +"igV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Captain's Office" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/any/command/captain, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/captain) +"iha" = ( +/obj/structure/railing, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"ihj" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/machinery/vending/cola/pwr_game, +/obj/structure/sign/poster/contraband/pwr_game/directional/north, +/obj/machinery/light/blacklight/directional/west, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/common/arcade) +"ihp" = ( +/obj/structure/table, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 14; + pixel_y = 10 + }, +/obj/effect/turf_decal/tile/dark/diagonal_edge, +/obj/item/paper_bin{ + pixel_y = 4; + pixel_x = 4 + }, +/obj/item/taperecorder{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/item/assembly/flash/handheld, +/obj/item/reagent_containers/spray/pepper{ + pixel_x = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/execution/education) +"ihr" = ( +/obj/structure/table/glass, +/obj/item/hairbrush/comb, +/obj/structure/mirror/directional/west, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/item/hairbrush{ + pixel_x = -1; + pixel_y = 8 + }, +/obj/effect/turf_decal/tile/purple/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/service/barber) +"ihu" = ( +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"ihy" = ( +/obj/effect/spawner/random/engineering/tank, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"ihB" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/modular_computer/preset/cargochat/cargo{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/obj/machinery/light/warm/directional/east, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/firealarm/directional/east, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/cargo/office) +"ihD" = ( +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"ihH" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/station/maintenance/department/security/upper) +"ihI" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lawyerprivacy"; + name = "Lawyer's Privacy Shutter" + }, +/turf/open/floor/plating, +/area/station/service/lawoffice) +"ihS" = ( +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/iron/white/corner, +/area/station/hallway/primary/central/fore) +"ihZ" = ( +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/iron/dark, +/area/station/medical/treatment_center) +"iia" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"iif" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/machinery/status_display/ai/directional/south, +/turf/open/floor/glass/reinforced, +/area/station/hallway/primary/central/fore) +"iim" = ( +/obj/machinery/computer/holodeck{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/recreation) +"iit" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/structure/lattice, +/turf/open/openspace, +/area/station/science/xenobiology) +"iiw" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/security/office) +"iiz" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/sink/kitchen/directional/south, +/turf/open/floor/iron/dark/small, +/area/station/science/xenobiology) +"iiI" = ( +/obj/structure/table/reinforced/plastitaniumglass, +/turf/open/floor/iron/dark/small, +/area/station/commons/dorms/room4) +"iiJ" = ( +/turf/closed/wall/r_wall, +/area/station/medical/coldroom) +"iiK" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "Bridge Blast Door" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/command/bridge) +"ijf" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/blue/corner, +/obj/structure/cable, +/obj/structure/cable/layer1, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/structure/cable/layer3, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/ai) +"ijk" = ( +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/small, +/area/station/science/robotics/lab) +"ijq" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/engine, +/area/station/security/range) +"iju" = ( +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/holding_cell) +"ijz" = ( +/obj/machinery/light/warm/directional/east, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/turf_decal/tile/dark_red/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/service/chapel) +"ike" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted, +/obj/effect/turf_decal/tile/purple/half/contrasted, +/turf/open/floor/iron/white, +/area/station/science/xenobiology) +"ikm" = ( +/obj/effect/turf_decal/siding/white, +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/machinery/microwave{ + pixel_y = 2 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/wood/large, +/area/station/medical/break_room) +"ikp" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"iky" = ( +/obj/effect/turf_decal/tile/yellow/half{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/engineering/lobby) +"ikz" = ( +/obj/effect/turf_decal/tile/red/real_red{ + dir = 1 + }, +/turf/open/floor/iron/white/corner{ + dir = 4 + }, +/area/station/hallway/secondary/entry) +"ikB" = ( +/obj/structure/lattice, +/turf/open/space/openspace, +/area/space/nearstation) +"ikD" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/dark_blue/half{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_half, +/area/station/security/brig/entrance) +"ilk" = ( +/obj/effect/turf_decal/box/corners, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, +/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"ilq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/science/explab) +"ilt" = ( +/turf/closed/wall/r_wall, +/area/station/security/prison/visit) +"ilv" = ( +/obj/structure/closet/crate/freezer{ + name = "Donk Co. insecure pizza crate" + }, +/obj/item/storage/box/donkpockets/donkpocketpizza, +/obj/effect/turf_decal/bot, +/obj/item/food/donkpocket/pizza{ + pixel_x = 5 + }, +/obj/item/food/donkpocket/pizza{ + pixel_x = -5 + }, +/obj/item/food/donkpocket/pizza{ + pixel_y = -3 + }, +/turf/open/floor/iron/large, +/area/station/cargo/storage) +"ilB" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/folder{ + pixel_x = 6 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "genetics_shutters"; + name = "Genetics Shutters" + }, +/obj/item/pen{ + pixel_x = 3 + }, +/obj/machinery/door/window/left/directional/east{ + name = "Genetics Desk"; + req_access = list("genetics") + }, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/genetics) +"ilV" = ( +/obj/machinery/pdapainter/supply, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/item/toy/figure/qm{ + pixel_y = 14 + }, +/obj/machinery/light/warm/directional/east, +/turf/open/floor/iron/large, +/area/station/command/heads_quarters/qm) +"ilW" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external/glass{ + name = "External Access"; + space_dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/obj/effect/mapping_helpers/airlock/unres, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"imd" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/machinery/atmospherics/pipe/multiz/supply/visible, +/obj/structure/cable/multilayer/multiz, +/turf/open/floor/plating/reinforced, +/area/station/ai_monitored/turret_protected/ai) +"imh" = ( +/obj/structure/lattice/catwalk, +/obj/effect/landmark/start/hangover, +/turf/open/openspace, +/area/station/service/kitchen/diner) +"imj" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/side{ + dir = 10 + }, +/area/station/common/cryopods) +"imk" = ( +/obj/machinery/atmospherics/pipe/smart/simple/brown/visible{ + dir = 6 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/openspace, +/area/space/nearstation) +"imm" = ( +/turf/closed/wall/r_wall, +/area/station/science/explab) +"imw" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/common/laser_tag) +"imy" = ( +/obj/effect/turf_decal/lunar_sand, +/obj/machinery/duct, +/turf/open/floor/plating, +/area/station/science/xenobiology) +"imH" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/dark/end{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/small, +/area/station/hallway/primary/port) +"imX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/commons/vacant_room/commissary) +"inb" = ( +/obj/structure/sign/directions/supply/directional/west{ + pixel_y = 4 + }, +/obj/structure/sign/directions/lavaland/directional/west{ + pixel_y = -4 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"ing" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/openspace, +/area/station/security/holding_cell) +"ini" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/weather/snow, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on/coldroom, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/service/kitchen/coldroom) +"ino" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/space/openspace, +/area/space) +"ins" = ( +/obj/item/tank/internals/oxygen/red{ + pixel_x = -4; + pixel_y = -1 + }, +/obj/item/tank/internals/oxygen/red{ + pixel_x = 4; + pixel_y = -1 + }, +/obj/item/tank/internals/anesthetic{ + pixel_x = 2 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/structure/rack/shelf, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted, +/obj/effect/turf_decal/bot_white, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/security/execution/education) +"int" = ( +/obj/effect/turf_decal/lunar_sand, +/obj/effect/turf_decal/lunar_sand/plating, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"inH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/grass, +/area/station/service/hydroponics/garden) +"iok" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/blueshield) +"iow" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"ioz" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/box, +/obj/structure/sign/warning/pods/directional/south, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/exit/departure_lounge) +"ioR" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/solo{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"ipo" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/construction/mining/aux_base) +"ipE" = ( +/obj/structure/table/wood, +/obj/item/poster/random_contraband, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/spawner/random/entertainment/gambling{ + pixel_y = 12; + pixel_x = 4 + }, +/obj/effect/spawner/random/entertainment/gambling, +/obj/effect/spawner/random/entertainment/gambling{ + pixel_x = -6 + }, +/obj/item/reagent_containers/spray/syndicate{ + pixel_y = 13; + pixel_x = -7 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/herringbone, +/area/station/maintenance/port/fore) +"ipG" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/light/cold/directional/west, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/side{ + dir = 1 + }, +/area/station/science/ordnance/office) +"ipI" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners, +/obj/machinery/vending/wardrobe/robo_wardrobe, +/obj/effect/turf_decal/bot_white, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/dark, +/area/station/science/robotics/lab) +"ipY" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/lattice/catwalk, +/obj/structure/closet/secure_closet/brig/genpop, +/obj/item/card/id/advanced/prisoner/four, +/turf/open/openspace, +/area/station/security/holding_cell) +"iqc" = ( +/obj/structure/bookcase/random/fiction, +/obj/machinery/light/warm/directional/west, +/turf/open/floor/wood, +/area/station/service/library/lounge) +"iqd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/camera/directional/north{ + c_tag = "Atmospherics - Upper Deck Fore"; + network = list("ss13","engine") + }, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"iqf" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm/directional/east, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/camera/directional/east{ + c_tag = "Science - Experimentor Lab"; + network = list("ss13","rd"); + dir = 6 + }, +/turf/open/floor/iron/white, +/area/station/science/explab) +"iqF" = ( +/obj/machinery/rnd/server/master, +/obj/machinery/atmospherics/components/unary/passive_vent{ + name = "server vent"; + dir = 4 + }, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/station/science/server) +"iqX" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/maintenance/fore/lesser) +"irc" = ( +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"ire" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance/external{ + name = "Chemistry Factory" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/chemistry, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/chemistry) +"irj" = ( +/obj/structure/lattice/catwalk, +/obj/effect/spawner/random/engineering/canister, +/turf/open/openspace, +/area/station/maintenance/starboard/greater) +"irn" = ( +/obj/effect/spawner/random/structure/grille, +/obj/structure/window/spawner/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"irv" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/exit/departure_lounge) +"irA" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/station/science/xenobiology) +"irJ" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/machinery/door/window/right/directional/south{ + name = "Atmospherics Desk"; + req_access = list("atmospherics") + }, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "Atmospherics Blast Door" + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/engineering/atmos/office) +"irM" = ( +/obj/structure/bookcase/random/reference, +/obj/item/toy/figure/psychologist{ + pixel_y = 18 + }, +/turf/open/floor/wood/tile, +/area/station/medical/psychology) +"isg" = ( +/obj/machinery/ticket_machine/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) +"isp" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/lunar_sand/plating, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"isz" = ( +/obj/item/kirbyplants/organic/plant21, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"isL" = ( +/obj/structure/stairs/west, +/turf/open/floor/plating, +/area/station/engineering/atmos/hfr_room) +"isM" = ( +/obj/structure/sign/poster/random/directional/north, +/obj/effect/spawner/random/trash/food_packaging, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"isU" = ( +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/structure/table/reinforced/rglass, +/obj/item/reagent_containers/cup/glass{ + pixel_y = 10; + pixel_x = 6 + }, +/obj/item/reagent_containers/cup/glass{ + pixel_y = 3 + }, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/rd) +"isW" = ( +/obj/effect/turf_decal/tile/dark_blue/half, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/security/medical) +"isX" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/storage) +"itd" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"itH" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/pharmacy) +"itK" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/carbon_input, +/turf/open/floor/engine/co2, +/area/station/engineering/atmos/upper) +"itS" = ( +/obj/structure/cable, +/obj/effect/spawner/random/maintenance, +/obj/effect/spawner/random/medical/minor_healing, +/obj/effect/spawner/random/trash/grime, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/department/eva) +"itW" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"itZ" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/light/warm/directional/east, +/turf/open/floor/iron/edge, +/area/station/commons/lounge) +"iud" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"iuh" = ( +/turf/closed/wall/r_wall, +/area/station/engineering/main) +"iul" = ( +/obj/effect/spawner/random/engineering/tracking_beacon, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/hfr_room) +"iuq" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Bridge" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "bridge-left" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/bridge) +"ius" = ( +/obj/machinery/camera/directional/south{ + c_tag = "MiniSat External Upper North-East"; + network = list("minisat") + }, +/turf/open/space/openspace, +/area/space) +"iut" = ( +/obj/structure/chair/comfy/brown, +/obj/effect/landmark/start/psychologist, +/turf/open/floor/carpet, +/area/station/medical/psychology) +"iuA" = ( +/obj/structure/chair/wood, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/airalarm/directional/north, +/obj/machinery/camera/directional/north{ + c_tag = "Chapel - Funeral Parlour" + }, +/turf/open/floor/wood/large, +/area/station/service/chapel/funeral) +"iuI" = ( +/obj/structure/hedge, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/primary/port) +"iuN" = ( +/obj/item/restraints/legcuffs/beartrap/prearmed, +/obj/item/stack/sheet/iron/five, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"iuO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"iuR" = ( +/obj/machinery/mass_driver/trash{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/full, +/turf/open/floor/plating, +/area/station/maintenance/disposal) +"iuV" = ( +/obj/structure/disposalpipe/trunk/multiz/down{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/openspace, +/area/station/engineering/atmos/upper) +"ivc" = ( +/obj/machinery/computer/station_alert, +/obj/effect/turf_decal/box, +/obj/machinery/requests_console/auto_name/directional/north, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/mapping_helpers/requests_console/information, +/obj/machinery/light/cold/directional/north, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/security/checkpoint/engineering) +"ivd" = ( +/turf/open/floor/glass/reinforced, +/area/station/hallway/primary/central/fore) +"ivj" = ( +/obj/effect/turf_decal/tile/brown/opposingcorners, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/rack, +/obj/item/circuitboard/machine/exoscanner{ + pixel_y = 3 + }, +/obj/item/circuitboard/machine/exoscanner, +/obj/item/circuitboard/machine/exoscanner{ + pixel_y = -3 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/drone_bay) +"ivI" = ( +/obj/effect/turf_decal/siding/white, +/obj/effect/turf_decal/bot, +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/iron/dark/small, +/area/station/commons/dorms) +"ivO" = ( +/obj/machinery/airalarm/directional/west, +/obj/machinery/light/red/directional/west, +/obj/structure/table, +/turf/open/floor/catwalk_floor, +/area/station/cargo/storage) +"ivR" = ( +/obj/effect/turf_decal/siding/dark_blue{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/command/meeting_room/council) +"ivT" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation) +"ivW" = ( +/obj/structure/lattice, +/obj/structure/window/spawner/directional/west, +/obj/structure/window/spawner/directional/east, +/turf/open/openspace, +/area/station/commons/fitness/recreation) +"ivY" = ( +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 1 + }, +/obj/structure/noticeboard/directional/north, +/obj/machinery/smartfridge/organ, +/obj/item/paper/guides/jobs/medical/morgue{ + pixel_y = 24 + }, +/turf/open/floor/iron/dark, +/area/station/medical/morgue) +"iwh" = ( +/obj/structure/chair/sofa/right/brown{ + dir = 1 + }, +/turf/open/floor/carpet/green, +/area/station/service/library/lounge) +"iwk" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/vending/modularpc, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/checker, +/area/station/hallway/primary/central/aft) +"iwx" = ( +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron, +/area/station/maintenance/solars/starboard/aft) +"iwB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Starboard Secondary Hallway" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/primary/starboard) +"iwC" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"ixa" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/station/engineering/main) +"ixj" = ( +/obj/item/kirbyplants/organic/plant4, +/obj/machinery/light/warm/dim/directional/west, +/turf/open/floor/carpet, +/area/station/service/abandoned_gambling_den) +"ixo" = ( +/obj/effect/turf_decal/tile/green/opposingcorners, +/obj/machinery/camera/directional/east{ + c_tag = "Upper Central Primary Hallway - Service Library" + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/hallway/primary/central/fore) +"ixt" = ( +/obj/effect/turf_decal/tile/dark_red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/landmark/start/chaplain, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/service/chapel/funeral) +"ixA" = ( +/obj/machinery/skill_station, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/iron/dark/small, +/area/station/common/cryopods) +"ixC" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/controller{ + pixel_y = 5 + }, +/obj/item/compact_remote{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/compact_remote{ + pixel_x = -4 + }, +/obj/item/integrated_circuit/loaded/speech_relay, +/obj/item/integrated_circuit/loaded/speech_relay, +/turf/open/floor/iron/dark/small, +/area/station/science/circuits) +"ixG" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"ixV" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/camera/directional/east{ + c_tag = "Barbershop - Spa" + }, +/obj/structure/cable, +/turf/open/floor/iron/cafeteria{ + dir = 8 + }, +/area/station/service/salon) +"ixY" = ( +/obj/effect/turf_decal/tile/blue/full, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/table/glass, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/treatment_center) +"iye" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Equipment Room Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/security/lockers) +"iyj" = ( +/obj/effect/spawner/random/trash/grime, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"iyo" = ( +/obj/effect/spawner/random/maintenance/three, +/obj/structure/rack/shelf, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"iyp" = ( +/obj/machinery/holopad, +/turf/open/floor/iron/white/small, +/area/station/science/genetics) +"iyq" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/north, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/obj/machinery/meter, +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/main) +"iyu" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/wood/large, +/area/station/service/library) +"iyy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/poddoor{ + id = "JusticeChamber"; + name = "Justice Vent" + }, +/turf/open/floor/plating, +/area/station/security/execution/education) +"iyE" = ( +/turf/closed/wall, +/area/station/service/library) +"iyO" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"iyT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/item/radio/intercom/directional/north, +/obj/machinery/light/warm/directional/north, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"izi" = ( +/turf/closed/wall/r_wall, +/area/station/hallway/secondary/exit/escape_pod) +"izk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible/layer2, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"izm" = ( +/obj/item/radio/intercom/directional/south, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/plating, +/area/station/engineering/main) +"izr" = ( +/obj/machinery/griddle, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron/kitchen/diagonal, +/area/station/maintenance/abandon_diner) +"izs" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"izy" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/entry) +"izB" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/commons/storage/mining) +"izE" = ( +/obj/effect/mapping_helpers/airlock/access/all/engineering/ce, +/obj/machinery/door/airlock/ce{ + name = "Chief Engineer's Quarters" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/ce) +"izR" = ( +/obj/structure/chair/wood, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/turf/open/floor/carpet, +/area/station/commons/dorms) +"izT" = ( +/obj/structure/trash_pile, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"iAj" = ( +/obj/structure/marker_beacon/burgundy, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/gateway) +"iAk" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/vending/wardrobe/curator_wardrobe, +/obj/machinery/airalarm/directional/south, +/obj/structure/cassette_rack/prefilled{ + pixel_y = 21 + }, +/turf/open/floor/cult, +/area/station/service/library/private) +"iAn" = ( +/obj/machinery/power/turbine/core_rotor{ + mapping_id = "main_turbine"; + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/turf/open/floor/engine, +/area/station/maintenance/disposal/incinerator) +"iAs" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"iAu" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/turf_decal/tile/brown/half/contrasted, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/cargo/office) +"iAy" = ( +/obj/structure/stairs/south, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/security/interrogation) +"iAM" = ( +/obj/structure/railing{ + dir = 6 + }, +/turf/open/openspace, +/area/station/science/research) +"iAR" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"iAS" = ( +/obj/effect/spawner/random/maintenance/two, +/obj/structure/table, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"iAU" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/station/command/heads_quarters/captain) +"iAW" = ( +/obj/structure/hedge, +/obj/structure/window/fulltile, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms/room3) +"iAX" = ( +/obj/effect/turf_decal/tile/dark_red{ + dir = 8 + }, +/turf/open/floor/iron/dark/side, +/area/station/science/robotics/mechbay) +"iAZ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/solars/starboard/fore) +"iBb" = ( +/obj/effect/turf_decal/tile/yellow/half, +/obj/machinery/light/cold/no_nightlight/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/chem_heater/withbuffer, +/turf/open/floor/iron/white/smooth_edge, +/area/station/medical/pharmacy) +"iBo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/white/side, +/area/station/hallway/primary/starboard) +"iBs" = ( +/obj/structure/disposalpipe/broken{ + dir = 8 + }, +/obj/effect/landmark/blobstart, +/obj/effect/landmark/generic_maintenance_landmark, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"iBX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/service/salon) +"iCd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/poddoor/shutters/window{ + id = "armory"; + name = "Armory Shutter" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/station/ai_monitored/security/armory) +"iCk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/station/service/library/lounge) +"iCn" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/structure/sign/departments/evac, +/turf/open/floor/plating, +/area/station/security/checkpoint/escape) +"iCr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/closet/radiation, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/light/warm/directional/south, +/turf/open/floor/iron, +/area/station/maintenance/disposal/incinerator) +"iCt" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"iCv" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"iCx" = ( +/obj/structure/table, +/obj/effect/turf_decal/box/white/corners, +/obj/item/grenade/chem_grenade/antiweed{ + pixel_x = -7; + pixel_y = 8 + }, +/obj/item/grenade/chem_grenade/antiweed{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/storage/box/syringes{ + pixel_x = 6; + pixel_y = 10 + }, +/obj/item/storage/box/beakers{ + pixel_x = 6; + pixel_y = 3 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/hydroponics) +"iCA" = ( +/turf/closed/wall/r_wall, +/area/station/engineering/atmos/storage) +"iCF" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue, +/obj/machinery/recharger, +/obj/machinery/light/no_nightlight/directional/north, +/turf/open/floor/iron/dark, +/area/station/common/laser_tag) +"iCU" = ( +/obj/structure/trash_pile, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"iDj" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/station/maintenance/port/aft) +"iDm" = ( +/obj/structure/sign/warning/hot_temp/directional/east, +/obj/structure/railing, +/turf/open/space/basic, +/area/space/nearstation) +"iDG" = ( +/obj/structure/stairs/west, +/turf/open/floor/plating, +/area/station/tcommsat/computer) +"iDK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/shaft_miner, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) +"iDO" = ( +/obj/structure/cable/multilayer/multiz, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/solars/starboard/fore) +"iEd" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/wood, +/area/station/commons/vacant_room/office) +"iEp" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"iEK" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/botanist, +/turf/open/floor/iron, +/area/station/service/hydroponics/upper) +"iEN" = ( +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/hallway/primary/central) +"iFg" = ( +/obj/effect/spawner/random/structure/steam_vent, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/small/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/department/security/upper) +"iFo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"iFx" = ( +/obj/effect/turf_decal/lunar_sand/plating, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"iFK" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "Mix to Loop"; + dir = 4 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"iFN" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"iFR" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/department/security/upper) +"iFS" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/machinery/status_display/ai/directional/west, +/obj/structure/railing, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/ai) +"iFU" = ( +/obj/machinery/button/delam_scram, +/turf/closed/wall/r_wall, +/area/station/engineering/supermatter) +"iFZ" = ( +/obj/structure/table/wood, +/obj/machinery/airalarm/directional/west, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/machinery/camera/directional/south{ + c_tag = "Service - Entertainer Lounge" + }, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/service/theater) +"iGb" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/glass, +/obj/structure/grille/broken, +/obj/item/stack/rods/two, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"iGd" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"iGk" = ( +/obj/structure/table/wood, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/wood, +/area/station/commons/dorms/room5) +"iGt" = ( +/obj/effect/turf_decal/siding/dark_blue{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/command/meeting_room/council) +"iGC" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/checker, +/area/station/hallway/primary/central/aft) +"iGU" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/station/engineering/supermatter/room) +"iHi" = ( +/obj/machinery/elevator_control_panel/directional/east{ + linked_elevator_id = "robo_mechbaylift"; + preset_destination_names = list("2"="Lower Deck","3"="Upper Deck"); + req_access = list("robotics") + }, +/obj/structure/industrial_lift, +/obj/effect/landmark/lift_id{ + specific_lift_id = "robo_mechbaylift" + }, +/turf/open/floor/plating, +/area/station/science/robotics/mechbay) +"iHq" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"iHE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/machinery/airlock_sensor/incinerator_atmos{ + pixel_y = 24 + }, +/turf/open/floor/engine, +/area/station/maintenance/disposal/incinerator) +"iHO" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/cable, +/turf/open/floor/glass, +/area/station/ai_monitored/turret_protected/ai) +"iIq" = ( +/obj/structure/bodycontainer/morgue{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/medical/morgue) +"iIr" = ( +/obj/structure/table/wood, +/obj/item/food/vendor_snacks/mochi_ice_cream{ + pixel_y = 7; + pixel_x = -4 + }, +/obj/item/food/vendor_snacks/mochi_ice_cream/matcha{ + pixel_x = 5 + }, +/turf/open/floor/carpet/green, +/area/station/service/library/lounge) +"iIu" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/edge, +/area/station/engineering/storage) +"iIw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"iIW" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/small, +/area/station/science/ordnance) +"iJi" = ( +/obj/structure/hedge, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/primary/central/fore) +"iJl" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "genetics_shutters"; + name = "Genetics Shutters" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/genetics) +"iJr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/cold/directional/north, +/obj/structure/closet/secure_closet/security, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/checkpoint/escape) +"iJI" = ( +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/station/science/ordnance/freezerchamber) +"iJO" = ( +/obj/structure/closet/secure_closet/evidence{ + name = "secure equipment closet" + }, +/obj/item/clothing/suit/jacket/straight_jacket, +/obj/item/clothing/mask/muzzle, +/obj/item/clothing/glasses/blindfold, +/obj/item/electropack, +/obj/item/clothing/head/helmet/sec, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/security/execution/education) +"iJQ" = ( +/obj/machinery/smartfridge/food, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/hydroponics) +"iJS" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/common/wrestling/arena) +"iJW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, +/obj/machinery/door/airlock/mining{ + name = "Waste Disposal" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/disposal) +"iKa" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/duct, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"iKn" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_x = -7; + pixel_y = 4 + }, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/structure/reagent_dispensers/wall/peppertank/directional/east, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/security/checkpoint/medical) +"iKr" = ( +/obj/machinery/door/airlock/corporate{ + name = "Vacant Office" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/vacant_room/office) +"iKG" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"iKI" = ( +/obj/effect/turf_decal/arrows/blue{ + pixel_y = 15 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/hfr_room) +"iKL" = ( +/turf/open/floor/iron/dark/smooth_edge, +/area/station/common/wrestling/arena) +"iKT" = ( +/obj/effect/turf_decal/vg_decals/atmos/nitrogen, +/turf/open/floor/engine/n2, +/area/station/engineering/atmos) +"iKV" = ( +/obj/machinery/recharge_station, +/obj/effect/turf_decal/bot, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/camera/directional/north{ + c_tag = "Robotics - Mech Bay"; + network = list("ss13","rd") + }, +/turf/open/floor/iron/dark, +/area/station/science/robotics/mechbay) +"iLg" = ( +/turf/closed/wall, +/area/station/command/heads_quarters/captain) +"iLo" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/service/library) +"iLq" = ( +/obj/structure/frame/machine{ + anchored = 1 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/engine, +/area/station/security/office) +"iLv" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/light/cold/directional/east, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron/white/small, +/area/station/medical/medbay/lobby) +"iLC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Break Room" + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/break_room) +"iLD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/binary/pump{ + name = "Chamber Extract"; + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"iLE" = ( +/obj/structure/lattice, +/obj/structure/transit_tube/crossing/horizontal, +/turf/open/space/basic, +/area/space/nearstation) +"iLN" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/siding/wood/end{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/entry) +"iLQ" = ( +/obj/effect/landmark/start/psychologist, +/turf/open/floor/carpet, +/area/station/medical/psychology) +"iLR" = ( +/obj/effect/turf_decal/bot_white, +/obj/structure/table, +/obj/item/screwdriver{ + pixel_y = 8 + }, +/obj/item/storage/box/rubbershot, +/obj/item/ammo_casing/shotgun/dart{ + pixel_y = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/bar) +"iLW" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/structure/cable, +/obj/structure/railing, +/turf/open/floor/engine, +/area/station/engineering/main) +"iLX" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners, +/obj/structure/rack/shelf, +/turf/open/floor/iron/cafeteria{ + dir = 8 + }, +/area/station/service/salon) +"iMi" = ( +/obj/structure/table/glass, +/obj/item/stack/sticky_tape/surgical, +/obj/item/stack/medical/bone_gel, +/obj/machinery/camera/directional/west{ + c_tag = "Medbay - Surgery Room B"; + network = list("ss13","medbay") + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue/half{ + dir = 4 + }, +/obj/item/tank/internals/anesthetic, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/medical/surgery/aft) +"iMn" = ( +/obj/structure/closet/firecloset, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"iMu" = ( +/obj/machinery/computer/operating{ + dir = 1 + }, +/obj/effect/turf_decal/box/white, +/obj/machinery/button/door/directional/west{ + id = "surgeryright"; + name = "Privacy Shutters Control" + }, +/obj/effect/turf_decal/tile/blue/half{ + dir = 4 + }, +/obj/machinery/light/cold/no_nightlight/directional/south, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/medical/surgery/aft) +"iMM" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/command) +"iMT" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/machinery/duct, +/obj/machinery/light/cold/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"iMU" = ( +/obj/effect/landmark/navigate_destination, +/turf/open/floor/glass/reinforced, +/area/station/hallway/secondary/exit/departure_lounge) +"iMX" = ( +/obj/structure/closet/boxinggloves, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/landmark/start/hangover/closet, +/turf/open/floor/iron/large, +/area/station/common/wrestling/arena) +"iMZ" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"iNj" = ( +/obj/effect/turf_decal/tile/red/fourcorners, +/turf/open/floor/iron/dark, +/area/station/security/holding_cell) +"iNr" = ( +/obj/machinery/computer/mecha{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/security/checkpoint/science/research) +"iNv" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/greater) +"iNA" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/hallway/primary/central) +"iNM" = ( +/obj/effect/spawner/random/trash/food_packaging, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"iNN" = ( +/obj/item/stack/rods/fifty, +/turf/open/space/basic, +/area/space) +"iNT" = ( +/obj/structure/rack, +/obj/item/modular_computer/pda/clear, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"iOc" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/item/storage/box/lights/mixed, +/obj/effect/spawner/random/maintenance/two, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"iOt" = ( +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/reagent_containers/blood{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/rack/shelf, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/maintenance/aft/upper) +"iOB" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"iOE" = ( +/obj/structure/bodycontainer/morgue{ + dir = 8 + }, +/obj/effect/turf_decal/bot_white, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/chapel/funeral) +"iOL" = ( +/obj/machinery/corral_corner{ + mapping_id = "6" + }, +/obj/machinery/slime_pen_controller{ + mapping_id = "6" + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"iOM" = ( +/obj/effect/spawner/random/trash/grime, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"iOO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/red/real_red/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/white/corner{ + dir = 1 + }, +/area/station/commons/storage/mining) +"iOZ" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/space_heater, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/lunar_sand/plating, +/turf/open/floor/iron/dark, +/area/station/science/cytology) +"iPc" = ( +/obj/machinery/camera/directional/north{ + c_tag = "MiniSat External Upper South"; + network = list("minisat") + }, +/turf/open/space/openspace, +/area/space) +"iPf" = ( +/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/structure/cable, +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood/tile, +/area/station/commons/lounge) +"iPh" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/detective, +/turf/open/floor/iron/grimy, +/area/station/security/detectives_office) +"iPi" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"iPl" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/plumbing/ooze_compressor, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"iPp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/robotics/lab) +"iPu" = ( +/obj/structure/closet/secure_closet/atmospherics, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos/storage) +"iPv" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"iPy" = ( +/obj/effect/spawner/random/entertainment/arcade{ + dir = 8 + }, +/obj/structure/sign/poster/contraband/pizza_imperator/directional/east, +/obj/machinery/camera/directional/south{ + c_tag = "Recreation - Arcade" + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/eighties, +/area/station/common/arcade) +"iPz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/hos, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/command/heads_quarters/hos) +"iPA" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/commons/storage/primary) +"iPD" = ( +/obj/effect/spawner/random/techstorage/engineering_all, +/obj/machinery/light/warm/directional/east, +/obj/structure/table/glass, +/turf/open/floor/iron/dark/small, +/area/station/engineering/storage/tech) +"iPQ" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/security/range) +"iQc" = ( +/turf/open/floor/iron/white, +/area/station/hallway/primary/starboard) +"iQd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron, +/area/station/command/gateway) +"iQs" = ( +/obj/effect/turf_decal/tile/dark_blue/half, +/turf/open/floor/iron/dark/smooth_half, +/area/station/security/office) +"iQw" = ( +/obj/effect/spawner/random/trash/mess, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"iQI" = ( +/obj/effect/turf_decal/tile/dark_red, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/service/chapel/funeral) +"iQR" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/command) +"iRf" = ( +/turf/open/floor/iron, +/area/station/hallway/secondary/recreation) +"iRj" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/item/kirbyplants/organic/plant4, +/turf/open/floor/wood, +/area/station/service/abandoned_gambling_den) +"iRx" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark/corner, +/area/station/hallway/secondary/recreation) +"iRz" = ( +/obj/effect/spawner/random/techstorage/tcomms_all, +/obj/structure/table/glass, +/turf/open/floor/iron/dark/small, +/area/station/engineering/storage/tech) +"iRN" = ( +/obj/effect/turf_decal/trimline/green/filled/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/mid_joiner, +/obj/item/radio/intercom/directional/south, +/obj/structure/reagent_dispensers/plumbed{ + name = "botany water reservoir" + }, +/obj/effect/turf_decal/siding/green/end{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/warning, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 1 + }, +/area/station/service/hydroponics) +"iRO" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_red/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/service/chapel) +"iSb" = ( +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/siding/dark_blue{ + dir = 8 + }, +/obj/machinery/vending/snack/blue, +/turf/open/floor/iron/dark, +/area/station/command/meeting_room/council) +"iSd" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/space/basic, +/area/space) +"iSp" = ( +/obj/structure/bookcase/random/nonfiction, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/firealarm/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/station/security/prison) +"iSq" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner/directional/north, +/turf/open/openspace, +/area/station/maintenance/department/security/upper) +"iSx" = ( +/obj/structure/chair/plastic{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/station/maintenance/starboard/fore) +"iSS" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"iST" = ( +/obj/structure/hedge, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/window/fulltile, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/lounge) +"iSU" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/green/opposingcorners, +/turf/open/floor/iron/white, +/area/station/medical/virology) +"iSW" = ( +/obj/machinery/firealarm/directional/north, +/turf/open/openspace, +/area/station/security/processing) +"iSX" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/station/command/heads_quarters/captain) +"iSZ" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/dark/diagonal_edge, +/turf/open/floor/iron/kitchen/diagonal, +/area/station/security/prison) +"iTa" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/engineering/atmos/hfr_room) +"iTr" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=lowhall12"; + location = "lowhall11" + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"iTN" = ( +/obj/structure/table, +/obj/item/clothing/head/costume/festive{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/effect/spawner/random/entertainment/money, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"iTQ" = ( +/obj/effect/turf_decal/siding/white, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_green/half/contrasted, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/science/circuits) +"iTV" = ( +/turf/closed/wall/r_wall, +/area/station/science/xenobiology) +"iUp" = ( +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"iUH" = ( +/obj/machinery/holopad/secure, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/small, +/area/station/medical/surgery/fore) +"iUI" = ( +/obj/structure/table, +/obj/effect/spawner/random/bureaucracy/folder, +/obj/effect/spawner/random/maintenance, +/obj/item/poster/random_contraband, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"iUK" = ( +/obj/effect/turf_decal/tile/blue/half{ + dir = 1 + }, +/obj/machinery/airalarm/directional/south, +/obj/machinery/iv_drip, +/turf/open/floor/iron/dark/smooth_half, +/area/station/medical/surgery/theatre) +"iUM" = ( +/obj/effect/spawner/random/techstorage/medical_all, +/obj/structure/table/glass, +/turf/open/floor/iron/dark/small, +/area/station/engineering/storage/tech) +"iUS" = ( +/obj/structure/table/reinforced, +/obj/effect/mapping_helpers/broken_floor, +/obj/item/reagent_containers/condiment/saltshaker{ + pixel_x = -11; + pixel_y = 14 + }, +/obj/item/reagent_containers/condiment/peppermill{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/item/plate, +/obj/item/plate{ + pixel_y = 3 + }, +/obj/item/plate{ + pixel_y = 6 + }, +/obj/item/reagent_containers/cup/rag{ + pixel_x = -13; + pixel_y = 4 + }, +/turf/open/floor/iron/kitchen/diagonal, +/area/station/maintenance/abandon_diner) +"iUV" = ( +/mob/living/carbon/human/species/monkey{ + dir = 1 + }, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/weather/dirt{ + dir = 6 + }, +/turf/open/floor/grass, +/area/station/medical/virology) +"iUY" = ( +/obj/structure/sign/directions/evac/directional/north{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) +"iVj" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/drinkingglasses{ + pixel_x = -12 + }, +/obj/machinery/light/warm/directional/east, +/turf/open/floor/wood, +/area/station/command/meeting_room/council) +"iVl" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/multiz/dark/visible, +/obj/machinery/door/window/brigdoor/left/directional/south{ + req_access = list("xenobiology"); + name = "Holding Chamber" + }, +/turf/open/floor/plating, +/area/station/science/xenobiology) +"iVn" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"iVp" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"iVt" = ( +/obj/structure/chair/stool/bar/directional/west, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/station/service/abandoned_gambling_den) +"iVw" = ( +/obj/structure/rack, +/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/button/door/directional/west{ + id = "teleaccess"; + name = "Teleportation Shutters"; + pixel_y = -24; + req_access = list("teleporter") + }, +/obj/item/hand_tele, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/teleporter) +"iVx" = ( +/obj/structure/table, +/obj/item/wallframe/camera, +/obj/item/wallframe/camera, +/obj/item/wallframe/camera, +/obj/item/wallframe/camera, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/turf/open/floor/iron, +/area/station/construction/mining/aux_base) +"iVE" = ( +/obj/machinery/electrolyzer, +/obj/machinery/camera/directional/south{ + c_tag = "Atmospherics - Incinerator"; + network = list("ss13","engine") + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/engine, +/area/station/maintenance/disposal/incinerator) +"iVK" = ( +/obj/structure/cable, +/turf/open/floor/iron/dark/corner, +/area/station/hallway/primary/central) +"iVL" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/obj/structure/sign/warning/secure_area/directional/west, +/obj/structure/sign/warning/no_smoking/directional/east, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/airlock/engineering{ + name = "Engineering Engine Access" + }, +/obj/machinery/duct, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/mapping_helpers/airlock/access/any/command/ai_upload, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/lobby) +"iVO" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/security/prison) +"iVP" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/railing, +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 1 + }, +/turf/open/floor/wood/tile, +/area/station/commons/lounge) +"iVU" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 9 + }, +/obj/item/shovel/spade{ + pixel_x = -9; + pixel_y = -5 + }, +/obj/item/cultivator, +/obj/item/plant_analyzer{ + pixel_y = 18 + }, +/obj/item/shovel/spade{ + pixel_x = -9; + pixel_y = -5 + }, +/obj/item/shovel/spade{ + pixel_x = -9; + pixel_y = -5 + }, +/obj/item/cultivator, +/obj/item/cultivator, +/obj/item/cultivator, +/obj/item/secateurs, +/obj/item/secateurs, +/obj/item/secateurs, +/obj/item/secateurs, +/obj/item/secateurs, +/obj/item/plant_analyzer{ + pixel_y = 18 + }, +/obj/item/plant_analyzer{ + pixel_y = 18 + }, +/obj/item/plant_analyzer{ + pixel_y = 18 + }, +/obj/item/plant_analyzer{ + pixel_y = 18 + }, +/obj/item/plant_analyzer{ + pixel_y = 18 + }, +/turf/open/floor/grass, +/area/station/security/prison) +"iVW" = ( +/obj/effect/landmark/start/roboticist, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/robotics/lab) +"iWN" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos/office) +"iWY" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/light/small/directional/north, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"iXo" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/machinery/door/airlock/external{ + name = "Escape Pod" + }, +/obj/effect/mapping_helpers/airlock/unres, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"iXA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/mob/living/basic/bot/cleanbot/autopatrol, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"iXC" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/maintenance/department/security/upper) +"iXF" = ( +/obj/structure/dresser, +/obj/machinery/light/small/directional/north, +/turf/open/floor/carpet, +/area/station/command/heads_quarters/hos) +"iXH" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/corrections_officer) +"iXU" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/medical) +"iXW" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/dark/end{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit) +"iYg" = ( +/obj/machinery/status_display/evac/directional/east, +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/hallway/secondary/recreation) +"iYh" = ( +/turf/closed/wall, +/area/station/command/meeting_room/council) +"iYs" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"iYt" = ( +/obj/effect/turf_decal/box/corners, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/service) +"iYw" = ( +/obj/structure/table/glass, +/obj/item/storage/box/monkeycubes{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/iron/white/small, +/area/station/science/genetics) +"iYE" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + name = "Cold Loop to Gas" + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"iYJ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/storage) +"iYN" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/openspace, +/area/station/maintenance/department/security/upper) +"iYO" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door_buttons/access_button{ + idDoor = "virology_airlock_exterior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_x = -24; + req_access = list("pathology") + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/medical/virology, +/obj/machinery/door/airlock/virology{ + autoclose = 0; + frequency = 1449; + id_tag = "virology_airlock_exterior"; + name = "Virology Exterior Airlock" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/virology) +"iYP" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/fluff/meteor/sharp{ + pixel_y = 11 + }, +/obj/structure/table/reinforced/plastitaniumglass, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/iron/dark/small, +/area/station/service/library/lounge) +"iYW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/hydroponics) +"iZb" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = 2 + }, +/obj/item/clothing/gloves/color/yellow{ + pixel_y = -2 + }, +/obj/item/stack/cable_coil{ + pixel_y = -10 + }, +/obj/item/t_scanner{ + pixel_x = -6 + }, +/obj/item/multitool{ + pixel_y = -1; + pixel_x = 5 + }, +/obj/item/clothing/glasses/meson{ + pixel_y = -8 + }, +/obj/item/assembly/flash/handheld{ + pixel_y = -9; + pixel_x = -6 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/requests_console/auto_name/directional/west, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/mapping_helpers/requests_console/information, +/obj/machinery/light/warm/directional/west, +/turf/open/floor/iron/dark/small, +/area/station/engineering/storage/tech) +"iZd" = ( +/obj/structure/grille/broken, +/obj/item/stack/rods/two, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"iZf" = ( +/obj/effect/spawner/random/trash/moisture_trap, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"iZi" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/machinery/vending/wardrobe/chap_wardrobe, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/chapel) +"iZj" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/hallway/primary/central) +"iZl" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/wood/tile, +/area/station/service/kitchen) +"iZw" = ( +/obj/structure/stairs/west, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/recreation) +"iZy" = ( +/obj/effect/decal/cleanable/glass, +/obj/item/reagent_containers/cup/glass/drinkingglass/filled/soda{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/shard{ + icon_state = "medium"; + pixel_y = -10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"iZL" = ( +/obj/effect/turf_decal/tile/dark_blue/half{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/office) +"iZQ" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/simple/violet/visible, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"iZT" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/effect/spawner/random/maintenance/three, +/turf/open/floor/iron, +/area/station/maintenance/port/greater) +"jam" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/medical/cmo, +/obj/machinery/door/airlock/cmo{ + name = "Chief Medical Officer's Office" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/cmo) +"jar" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/item/kirbyplants/synthetic/plant27, +/turf/open/floor/iron/white, +/area/station/medical/pharmacy) +"jat" = ( +/obj/machinery/vending/tool, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/incident_display/delam/directional/north, +/obj/machinery/light/warm/directional/west, +/turf/open/floor/iron, +/area/station/engineering/storage) +"jaA" = ( +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron, +/area/station/maintenance/solars/port/aft) +"jaD" = ( +/obj/structure/lattice, +/obj/structure/railing, +/turf/open/openspace, +/area/station/maintenance/aft/greater) +"jaO" = ( +/turf/open/floor/plating, +/area/station/maintenance/department/security/upper) +"jaQ" = ( +/obj/machinery/telecomms/server/presets/medical, +/turf/open/floor/circuit/telecomms/mainframe, +/area/station/tcommsat/server) +"jaU" = ( +/obj/structure/filingcabinet/security, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/bot, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/checkpoint/customs) +"jaZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/entry) +"jbr" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/dark/end{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/small, +/area/station/hallway/primary/port) +"jbs" = ( +/obj/structure/rack, +/obj/item/clothing/gloves/color/fyellow, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/department/security/upper) +"jbB" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/spawner/random/structure/closet_private, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/commons/dorms/room3) +"jbG" = ( +/obj/structure/railing, +/turf/open/openspace, +/area/station/science/research) +"jbK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"jbY" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"jca" = ( +/obj/effect/turf_decal/tile/dark/diagonal_edge, +/obj/machinery/griddle, +/turf/open/floor/iron/kitchen/diagonal, +/area/station/security/prison) +"jcw" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/railing, +/turf/open/floor/iron/stairs{ + dir = 4 + }, +/area/station/science/xenobiology) +"jcB" = ( +/obj/machinery/computer/cargo/request, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"jcD" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/ai_monitored/command/nuke_storage) +"jcM" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/machinery/atmospherics/pipe/heat_exchanging/junction/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/visible{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/science/ordnance/freezerchamber) +"jcZ" = ( +/obj/effect/turf_decal/tile/green/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/primary/central/fore) +"jdd" = ( +/obj/machinery/light/small/directional/east, +/turf/open/floor/iron, +/area/station/maintenance/port/aft) +"jdo" = ( +/obj/structure/transit_tube/curved/flipped{ + dir = 1 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"jdw" = ( +/obj/structure/lattice, +/obj/structure/window/spawner/directional/south, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/openspace, +/area/station/service/hydroponics/upper) +"jdG" = ( +/obj/machinery/chem_dispenser/drinks/beer{ + pixel_y = 6; + pixel_x = 2 + }, +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/wood, +/area/station/command/meeting_room/council) +"jeb" = ( +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/suit_storage_unit/industrial/loader, +/turf/open/floor/iron/dark, +/area/station/cargo/office) +"jei" = ( +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"jeo" = ( +/obj/effect/turf_decal/tile/green/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/checker{ + dir = 1 + }, +/area/station/hallway/primary/central/fore) +"jer" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"jes" = ( +/obj/docking_port/stationary/syndicate/northeast{ + dir = 4 + }, +/turf/open/space/openspace, +/area/space/nearstation) +"jew" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"jez" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"jeG" = ( +/obj/machinery/shower/directional/east, +/obj/effect/spawner/random/trash/soap, +/obj/effect/turf_decal/siding/white{ + dir = 10 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/white/small, +/area/station/commons/toilet/restrooms) +"jeH" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/obj/effect/turf_decal/tile/dark_red{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/science/robotics/mechbay) +"jeP" = ( +/obj/effect/spawner/random/entertainment/arcade{ + dir = 1 + }, +/turf/open/floor/eighties, +/area/station/common/arcade) +"jfa" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/sign/warning/pods/directional/south, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"jfd" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"jfu" = ( +/obj/machinery/airalarm/directional/north, +/obj/effect/mapping_helpers/airalarm/mixingchamber_access, +/obj/effect/mapping_helpers/airalarm/tlv_no_checks, +/obj/effect/turf_decal/stripes/full, +/obj/effect/mapping_helpers/airalarm/link{ + chamber_id = "ordnancefreezer" + }, +/turf/open/floor/catwalk_floor/iron_dark/airless, +/area/station/science/ordnance/freezerchamber) +"jfz" = ( +/obj/item/rack_parts, +/obj/effect/spawner/random/trash/grime, +/obj/effect/spawner/random/trash/food_packaging, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"jfA" = ( +/obj/machinery/newscaster/directional/north, +/obj/machinery/camera/directional/north{ + c_tag = "Library - Public Lounge" + }, +/turf/open/floor/carpet/green, +/area/station/service/library) +"jfD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/general/visible{ + dir = 4 + }, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"jfH" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/structure/chair, +/turf/open/floor/iron/dark, +/area/station/medical/medbay/central) +"jfL" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"jfO" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"jfS" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/command) +"jfW" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Departures Checkpoint" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/exit/departure_lounge) +"jfX" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/radio/intercom/directional/north, +/obj/machinery/plumbing/growing_vat, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/lunar_sand, +/obj/effect/turf_decal/lunar_sand/plating, +/turf/open/floor/iron/dark, +/area/station/science/cytology) +"jgs" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/cardboard, +/obj/effect/spawner/random/maintenance/three, +/obj/machinery/status_display/supply{ + pixel_y = -32 + }, +/obj/machinery/light/warm/directional/west, +/turf/open/floor/iron/large, +/area/station/cargo/storage) +"jgx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/smooth_half, +/area/station/security/checkpoint/supply) +"jgA" = ( +/obj/structure/table, +/obj/effect/spawner/random/entertainment/money_medium, +/obj/effect/spawner/random/entertainment/coin, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light/directional/south, +/turf/open/floor/iron, +/area/station/commons/vacant_room/commissary) +"jgJ" = ( +/obj/structure/ladder, +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/security/corrections_officer) +"jgK" = ( +/obj/effect/spawner/random/trash/garbage, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"jgX" = ( +/obj/structure/rack/shelf, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"jgY" = ( +/obj/structure/stairs/west, +/turf/open/floor/plating, +/area/station/hallway/primary/starboard) +"jhc" = ( +/obj/effect/landmark/start/atmospheric_technician, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"jhe" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance/external/glass{ + name = "Primary Tool Storage" + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/storage/primary) +"jhs" = ( +/turf/closed/wall, +/area/station/hallway/primary/central) +"jhz" = ( +/obj/item/clothing/head/cone, +/obj/effect/mapping_helpers/burnt_floor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"jhE" = ( +/obj/machinery/atmospherics/components/binary/pump/off{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/aisat/equipment) +"jhH" = ( +/obj/effect/turf_decal/siding/dark_red, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/girder/reinforced, +/turf/open/floor/iron/dark/smooth_large, +/area/station/common/laser_tag) +"jhJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plating, +/area/station/engineering/atmos/upper) +"jhU" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/storage/mining) +"jin" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"jio" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner/directional/north, +/turf/open/floor/glass, +/area/station/ai_monitored/turret_protected/ai) +"jiq" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/siding/wood/end{ + dir = 8 + }, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/entry) +"jiE" = ( +/obj/effect/turf_decal/siding/white{ + dir = 6 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/vending/cigarette, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/dark/small, +/area/station/commons/dorms) +"jiF" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted, +/obj/effect/turf_decal/tile/blue/half/contrasted, +/obj/effect/turf_decal/tile/purple/half/contrasted, +/obj/structure/cable, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/common/arcade) +"jiJ" = ( +/obj/effect/spawner/random/maintenance, +/obj/effect/spawner/random/trash/hobo_squat, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"jjg" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/turf/open/floor/iron, +/area/station/maintenance/disposal/incinerator) +"jji" = ( +/obj/item/folder/yellow{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/folder/blue{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/folder/red{ + pixel_y = 1 + }, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/stamp/law{ + pixel_y = 6; + pixel_x = -5 + }, +/obj/item/stamp/law{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/station/service/lawoffice) +"jjo" = ( +/obj/machinery/door/window/brigdoor/left/directional/south{ + name = "Cell 2"; + req_access = list("security"); + id = "Cell 2" + }, +/turf/open/floor/glass/reinforced, +/area/station/security/holding_cell) +"jjp" = ( +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/obj/effect/landmark/start/hangover, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/commons/dorms) +"jjv" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/brig/entrance) +"jjA" = ( +/obj/machinery/firealarm/directional/north, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"jjJ" = ( +/obj/structure/table, +/obj/item/storage/backpack/satchel{ + pixel_y = 5; + pixel_x = -4 + }, +/obj/item/storage/backpack{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/backpack/duffelbag, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) +"jjM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/station/service/chapel) +"jjS" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/tile, +/area/station/service/bar) +"jjT" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 9; + height = 25; + name = "SS13: Departures Bay"; + shuttle_id = "emergency_home"; + width = 29 + }, +/turf/open/space/openspace, +/area/space) +"jkg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/engineering/atmos/office) +"jkm" = ( +/obj/effect/turf_decal/tile/green/opposingcorners, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/hallway/primary/central/fore) +"jkn" = ( +/obj/structure/chair/pew/right, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/chapel, +/area/station/service/chapel) +"jkr" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central) +"jkv" = ( +/obj/machinery/modular_computer/preset/id{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"jkL" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/command/storage/eva) +"jlk" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/glass/reinforced, +/area/station/hallway/primary/starboard) +"jln" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"jlu" = ( +/obj/machinery/air_sensor/nitrous_tank, +/turf/open/floor/engine/n2o, +/area/station/engineering/atmos/upper) +"jlF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Departures Lounge" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/status_display/ai/directional/south, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/exit/departure_lounge) +"jlO" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk, +/obj/machinery/keycard_auth/directional/east, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/qm) +"jlW" = ( +/obj/structure/chair/office, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/librarian, +/obj/structure/cable, +/turf/open/floor/carpet/green, +/area/station/service/library/lounge) +"jmr" = ( +/obj/structure/lattice, +/obj/effect/spawner/random/structure/grille, +/turf/open/space/openspace, +/area/space/nearstation) +"jmA" = ( +/obj/structure/closet/crate/coffin, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"jmF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/corporate/glass{ + name = "Command Hallway" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/command) +"jnh" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral/full, +/obj/effect/spawner/random/contraband/prison, +/obj/structure/closet/crate, +/obj/item/stack/license_plates/empty/fifty, +/obj/item/stack/license_plates/empty/fifty, +/obj/item/stack/license_plates/empty/fifty, +/obj/item/stack/license_plates/empty/fifty, +/obj/item/stack/license_plates/empty/fifty, +/obj/item/stack/license_plates/empty/fifty, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/prison) +"jnm" = ( +/obj/machinery/modular_computer/preset/cargochat/security{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/engine, +/area/station/security/office) +"jnn" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/lobby) +"jno" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 8 + }, +/obj/structure/closet/crate/bin, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance/four, +/obj/machinery/light/warm/dim/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/checker, +/area/station/maintenance/abandon_diner) +"jnz" = ( +/obj/effect/turf_decal/lunar_sand, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"jnM" = ( +/obj/effect/turf_decal/loading_area/white, +/obj/effect/turf_decal/bot_white, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/robotics/lab) +"joj" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/station_engineer, +/turf/open/floor/iron, +/area/station/engineering/storage) +"jok" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/security/brig/entrance) +"jot" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/iron/white/side, +/area/station/science/ordnance) +"joR" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/obj/machinery/door/airlock/external{ + name = "Atmospherics External Access" + }, +/turf/open/floor/plating, +/area/station/engineering/atmos/upper) +"jpp" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"jpu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"jpx" = ( +/obj/structure/frame/computer{ + dir = 8 + }, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"jpy" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron/white/side{ + dir = 6 + }, +/area/station/science/research) +"jpH" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Escape Pods Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/hallway/secondary/exit/escape_pod) +"jpT" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/openspace, +/area/station/science/genetics) +"jpW" = ( +/obj/machinery/computer/robotics{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner/directional/west, +/turf/open/floor/glass/reinforced, +/area/station/command/heads_quarters/rd) +"jpY" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"jqd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/station/security/courtroom) +"jqq" = ( +/turf/open/floor/plating, +/area/station/maintenance/department/bridge) +"jqE" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/turf/open/floor/carpet/blue, +/area/station/command/heads_quarters/cmo) +"jqG" = ( +/obj/effect/spawner/random/trash/garbage, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"jqJ" = ( +/obj/structure/table, +/obj/item/analyzer{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/tank/internals/emergency_oxygen/engi{ + pixel_x = -5 + }, +/turf/open/floor/iron/small, +/area/station/maintenance/port/aft) +"jqN" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/dresser, +/obj/item/kirbyplants/organic/plant11{ + pixel_y = 22; + pixel_x = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/commons/dorms/room3) +"jrg" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/components/binary/valve/digital/on{ + dir = 4; + name = "Turbine to Mix" + }, +/turf/open/floor/iron, +/area/station/maintenance/disposal/incinerator) +"jrk" = ( +/obj/structure/rack/shelf, +/obj/effect/turf_decal/box/blue, +/obj/item/fishing_line{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/item/fishing_line{ + pixel_x = 6 + }, +/obj/item/fishing_line{ + pixel_y = 6 + }, +/turf/open/floor/plastic, +/area/station/common/carpshop) +"jrq" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"jru" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"jrD" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/central/aft) +"jrH" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ + dir = 1 + }, +/obj/machinery/duct, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/smooth_edge{ + dir = 1 + }, +/area/station/medical/treatment_center) +"jrI" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/hallway/primary/central) +"jrY" = ( +/obj/docking_port/stationary{ + dwidth = 6; + height = 7; + name = "SS13: Cargo Bay"; + shuttle_id = "cargo_home"; + width = 12 + }, +/turf/open/space/basic, +/area/space) +"jsf" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/iron/dark/corner, +/area/station/hallway/secondary/recreation) +"jso" = ( +/obj/structure/table/glass, +/obj/item/storage/bag/plants/portaseeder{ + pixel_y = 12 + }, +/obj/item/storage/bag/plants{ + pixel_y = 5 + }, +/obj/item/crowbar, +/obj/item/hatchet, +/turf/open/floor/iron, +/area/station/service/hydroponics/garden) +"jsz" = ( +/obj/effect/turf_decal/siding/white/corner{ + dir = 8 + }, +/turf/open/floor/iron/white/small, +/area/station/science/genetics) +"jsB" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow/half, +/obj/machinery/plumbing/synthesizer{ + dir = 4; + reagent_id = /datum/reagent/water + }, +/turf/open/floor/iron/edge, +/area/station/engineering/main) +"jsS" = ( +/obj/machinery/door/airlock/external{ + name = "Atmospherics External Access" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/turf/open/floor/plating, +/area/station/engineering/atmos/upper) +"jsY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/ai_monitored/security/armory) +"jtd" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/turf/open/floor/plating, +/area/station/engineering/atmos/upper) +"jti" = ( +/obj/structure/table, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/item/knife/butcher, +/obj/item/kitchen/rollingpin{ + pixel_y = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"jtq" = ( +/obj/machinery/door/airlock/atmos{ + name = "Atmos Emergency Supplies" + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"jtr" = ( +/obj/effect/turf_decal/vg_decals/atmos/oxygen, +/turf/open/floor/engine/o2, +/area/station/engineering/atmos) +"jty" = ( +/obj/effect/turf_decal/tile/dark_red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/service/chapel/funeral) +"jtH" = ( +/obj/machinery/light/warm/directional/east, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/engineering/atmos/office) +"jtO" = ( +/obj/effect/landmark/generic_maintenance_landmark, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"jtU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/ai_monitored/command/storage/eva) +"jug" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/openspace, +/area/station/science/xenobiology) +"jum" = ( +/obj/machinery/modular_computer/preset/civilian{ + dir = 4 + }, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/small, +/area/station/science/robotics/lab) +"jut" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/small, +/area/station/maintenance/port/aft) +"jux" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/machinery/rnd/production/circuit_imprinter, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/lobby) +"juy" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/structure/bed/dogbed{ + anchored = 1; + name = "Markus's bed" + }, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/mob/living/basic/pet/dog/markus, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron/dark, +/area/station/cargo/office) +"juP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/grass, +/area/station/service/hydroponics/garden) +"juQ" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green, +/turf/open/floor/wood, +/area/station/commons/dorms/room2) +"juT" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall8"; + location = "hall7" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"juW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/cargo/drone_bay) +"jvc" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/railing, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/wood/large, +/area/station/tcommsat/computer) +"jvj" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/security/brig/entrance) +"jvp" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/machinery/vending/boozeomat, +/turf/open/floor/wood/large, +/area/station/service/bar) +"jvx" = ( +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/hfr_room) +"jvy" = ( +/obj/machinery/power/solar{ + id = "forestarboard"; + name = "Fore-Starboard Solar Array" + }, +/obj/structure/cable, +/turf/open/floor/iron/solarpanel/airless, +/area/station/solars/starboard/aft) +"jvz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/caution/stand_clear{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"jvI" = ( +/obj/effect/turf_decal/bot_white/right, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/gravity_generator) +"jvM" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/corner, +/area/station/hallway/primary/central) +"jvO" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side, +/area/station/command/heads_quarters/ce) +"jvW" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/light/small/directional/west, +/turf/open/floor/iron/small, +/area/station/maintenance/department/electrical) +"jwx" = ( +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"jwy" = ( +/obj/machinery/porta_turret/ai, +/obj/effect/turf_decal/stripes/blue/full, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/white, +/area/station/ai_monitored/turret_protected/ai_upload) +"jwG" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/dark/end{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/entry) +"jwK" = ( +/turf/closed/wall, +/area/station/maintenance/central) +"jwO" = ( +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/escape_pod) +"jwX" = ( +/turf/open/misc/asteroid/moon/airless, +/area/space) +"jxi" = ( +/obj/structure/filingcabinet, +/obj/item/folder/documents, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/smooth_large, +/area/station/ai_monitored/command/nuke_storage) +"jxl" = ( +/obj/structure/closet/secure_closet/psychology, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/newscaster/directional/east, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/psychology) +"jxv" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/glass/reinforced, +/area/station/hallway/secondary/entry) +"jxw" = ( +/obj/machinery/power/floodlight, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"jxA" = ( +/obj/machinery/mass_driver{ + dir = 1; + id = "xenotrash" + }, +/turf/open/floor/plating, +/area/station/science/xenobiology) +"jxB" = ( +/obj/structure/table/reinforced, +/obj/item/storage/fancy/donut_box{ + pixel_y = 5; + spawn_count = 1 + }, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) +"jxJ" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/ai) +"jxM" = ( +/obj/structure/transit_tube, +/obj/structure/lattice, +/turf/open/space/openspace, +/area/space/nearstation) +"jya" = ( +/obj/structure/lattice, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/space/basic, +/area/space/nearstation) +"jyd" = ( +/obj/effect/spawner/random/trash/garbage{ + spawn_scatter_radius = 1 + }, +/obj/effect/spawner/random/trash/food_packaging, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"jyq" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/light/cold/no_nightlight/directional/west, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"jyr" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) +"jyy" = ( +/turf/closed/wall, +/area/station/commons/dorms/room1) +"jyz" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/mime, +/turf/open/floor/wood/tile, +/area/station/service/theater) +"jyF" = ( +/obj/effect/turf_decal/lunar_sand, +/turf/open/floor/glass/reinforced, +/area/station/science/xenobiology) +"jyI" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/light/small/directional/east, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/lesser) +"jyO" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible/layer5, +/turf/open/space/basic, +/area/space/nearstation) +"jzg" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/table/wood/poker, +/obj/item/melee/chainofcommand, +/turf/open/floor/wood/parquet, +/area/station/command/heads_quarters/captain) +"jzm" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white/corner{ + dir = 1 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron/dark/corner, +/area/station/commons/dorms) +"jzq" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/station/engineering/atmos/upper) +"jzB" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/medical/pharmacy) +"jzC" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external/glass{ + name = "External Access"; + space_dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/effect/mapping_helpers/airlock/unres, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"jzE" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/machinery/airalarm/directional/north, +/obj/machinery/camera/directional/north{ + c_tag = "Departure Lounge - Holding Area" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/small, +/area/station/security/checkpoint/escape) +"jzJ" = ( +/obj/machinery/shower/directional/west, +/obj/effect/turf_decal/siding/white{ + dir = 6 + }, +/turf/open/floor/iron/white/small, +/area/station/commons/toilet/restrooms) +"jzM" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/iron, +/area/station/cargo/miningdock) +"jzO" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"jzQ" = ( +/obj/effect/turf_decal/tile/purple/diagonal_centre, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/turf/open/floor/iron/white/diagonal, +/area/station/science/breakroom) +"jzW" = ( +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/iron/dark, +/area/station/medical/break_room) +"jAa" = ( +/obj/structure/window/fulltile, +/obj/structure/hedge, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/treatment_center) +"jAr" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/vending/tool, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"jAs" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/digital_clock/directional/east, +/turf/open/floor/plating, +/area/station/hallway/secondary/recreation) +"jAv" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/firealarm/directional/east{ + pixel_x = 32 + }, +/obj/machinery/button/door/directional/east{ + id = "genetics_shutters"; + name = "Genetics Shutters Control"; + req_access = list("genetics") + }, +/obj/machinery/light/cold/directional/east, +/turf/open/openspace, +/area/station/science/genetics) +"jAw" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/machinery/light/cold/directional/north, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/dark, +/area/station/security/brig/entrance) +"jAz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/iron, +/area/station/construction/mining/aux_base) +"jAE" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/structure/chair, +/turf/open/floor/iron/dark, +/area/station/medical/medbay/central) +"jAS" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/photocopier, +/turf/open/floor/iron, +/area/station/engineering/lobby) +"jAT" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/command/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/central) +"jBJ" = ( +/turf/open/floor/glass/reinforced, +/area/station/science/research) +"jBL" = ( +/obj/machinery/door/airlock/maintenance/external{ + name = "Chemistry Factory" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/chemistry, +/turf/open/floor/iron, +/area/station/medical/chemistry) +"jBN" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/entry) +"jBS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/white/corner, +/area/station/security/checkpoint/science/research) +"jBY" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/department/security/lower) +"jCi" = ( +/obj/structure/cable/multilayer/multiz, +/obj/structure/sign/poster/random/directional/south, +/obj/machinery/light/small/directional/south, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/department/science/xenobiology) +"jCv" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/ammo_casing/c45, +/turf/open/floor/wood, +/area/station/maintenance/port/fore) +"jCE" = ( +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/lobby) +"jCN" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/diagonal, +/area/station/commons/fitness/recreation) +"jCO" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark/diagonal_edge, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/execution/education) +"jCQ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"jCV" = ( +/obj/machinery/door/airlock/vault{ + name = "Vault Door" + }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/effect/mapping_helpers/airlock/access/all/supply/vault, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/ai_monitored/command/nuke_storage) +"jDa" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/cable/multilayer/multiz, +/turf/open/floor/plating/reinforced, +/area/station/ai_monitored/turret_protected/ai) +"jDd" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Holodeck Access" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/recreation) +"jDg" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/openspace, +/area/station/maintenance/port/greater) +"jDo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/dark, +/area/station/commons/storage/tools) +"jDr" = ( +/obj/structure/table, +/obj/item/folder/yellow, +/obj/effect/spawner/random/maintenance/three, +/obj/effect/turf_decal/lunar_sand/plating, +/obj/effect/turf_decal/lunar_sand, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"jDz" = ( +/obj/machinery/firealarm/directional/east, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/entry) +"jDN" = ( +/obj/effect/spawner/random/structure/steam_vent, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"jDR" = ( +/obj/structure/filingcabinet/medical{ + pixel_x = 6 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/station/command/heads_quarters/hop) +"jDS" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/turf_decal/siding/white, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"jDU" = ( +/obj/effect/turf_decal/stripes/blue/line, +/turf/open/floor/iron/dark/diagonal, +/area/station/ai_monitored/security/armory) +"jDW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) +"jEa" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall1"; + location = "hall20" + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"jEe" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"jEm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"jEo" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/item/reagent_containers/cup/rag{ + pixel_y = 12; + pixel_x = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/barber) +"jEv" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/department/eva) +"jED" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Bridge" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "bridge-left" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/bridge) +"jEE" = ( +/obj/effect/turf_decal/tile/dark_red{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/science/robotics/mechbay) +"jEF" = ( +/obj/structure/bodycontainer/morgue, +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 1 + }, +/obj/machinery/light/small/blacklight/directional/west, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/medical/morgue) +"jEG" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/emergency, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/light/small/directional/east, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/greater) +"jEL" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"jER" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "Skynet_launch"; + name = "Mech Bay" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/robotics/mechbay) +"jEU" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/science/xenobiology) +"jEX" = ( +/obj/machinery/piratepad/civilian, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/smooth_large, +/area/station/cargo/lobby) +"jFg" = ( +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/iron/dark/smooth_corner, +/area/station/common/laser_tag) +"jFj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/photocopier, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/brig/entrance) +"jFk" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/white/side{ + dir = 6 + }, +/area/station/hallway/primary/central/fore) +"jFl" = ( +/obj/machinery/conveyor{ + id = "garbage"; + dir = 8 + }, +/obj/effect/turf_decal/stripes/full, +/obj/effect/spawner/random/trash/botanical_waste, +/turf/open/floor/plating, +/area/station/maintenance/disposal) +"jFp" = ( +/obj/effect/turf_decal/tile/yellow/half{ + dir = 1 + }, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/structure/chair/office/light{ + dir = 8 + }, +/turf/open/floor/iron/white/smooth_edge{ + dir = 1 + }, +/area/station/medical/pharmacy) +"jFv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Science Guard's Office" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/checkpoint/science/research) +"jFx" = ( +/obj/effect/turf_decal/tile/red/real_red{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/corner{ + dir = 1 + }, +/area/station/hallway/secondary/entry) +"jFG" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/central) +"jFL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/atmospheric_technician, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/engineering/atmos/upper) +"jFV" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing, +/turf/open/openspace, +/area/station/science/xenobiology) +"jGf" = ( +/obj/machinery/suit_storage_unit/ce, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/small/directional/west, +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/ce) +"jGm" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/airalarm/directional/north, +/obj/structure/flora/rock/pile/style_random, +/turf/open/misc/asteroid/moon, +/area/station/science/xenobiology) +"jGt" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"jGG" = ( +/obj/structure/table, +/obj/item/book/manual/wiki/tcomms{ + pixel_x = 10; + pixel_y = -1 + }, +/obj/item/book/manual/wiki/robotics_cyborgs, +/obj/machinery/light/cold/directional/north, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/dark/small, +/area/station/tcommsat/computer) +"jGP" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "viroview"; + name = "Viewport Shutters" + }, +/turf/open/floor/plating, +/area/station/medical/virology) +"jHa" = ( +/obj/machinery/telecomms/processor/preset_four, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/station/tcommsat/server) +"jHo" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"jHt" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/iron, +/area/station/maintenance/port/aft) +"jHx" = ( +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/box, +/turf/open/floor/plating, +/area/station/ai_monitored/turret_protected/ai) +"jHF" = ( +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"jHG" = ( +/obj/structure/sign/warning/pods/directional/east, +/obj/effect/turf_decal/tile/red/real_red/opposingcorners{ + dir = 1 + }, +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/cafeteria, +/area/station/hallway/secondary/exit/escape_pod) +"jHJ" = ( +/obj/structure/lattice, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/space/openspace, +/area/space/nearstation) +"jHX" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"jHY" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/machinery/station_map/engineering/directional/west, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central) +"jIi" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "Atmospherics Blast Door" + }, +/turf/open/floor/plating, +/area/station/engineering/atmos) +"jIr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/service/kitchen/diner) +"jIs" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/closed/wall, +/area/station/medical/storage) +"jIw" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 8 + }, +/turf/open/floor/iron/cafeteria{ + dir = 8 + }, +/area/station/service/salon) +"jIO" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"jIV" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 10 + }, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"jIY" = ( +/obj/effect/turf_decal/lunar_sand, +/obj/effect/turf_decal/lunar_sand/plating, +/obj/machinery/camera/directional/west{ + c_tag = "MiniSat External East"; + network = list("minisat") + }, +/turf/open/floor/plating/airless, +/area/station/asteroid) +"jJd" = ( +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/medical/morgue) +"jJi" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"jJu" = ( +/obj/structure/curtain/cloth/fancy/mechanical{ + id = "frontbarbercurtains" + }, +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/service/barber) +"jJw" = ( +/obj/machinery/cryopod, +/obj/effect/turf_decal/siding/white, +/obj/effect/turf_decal/box/white{ + color = "#9FED58" + }, +/obj/structure/closet/secure_closet/wall{ + pixel_y = 24 + }, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/iron/dark/smooth_large, +/area/station/common/cryopods) +"jJQ" = ( +/obj/effect/turf_decal/vg_decals/atmos/air, +/turf/open/floor/engine/air, +/area/station/engineering/atmos) +"jJS" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"jKe" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/hallway/secondary/command) +"jKh" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"jKi" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) +"jKr" = ( +/obj/structure/rack, +/obj/item/reagent_containers/cup/bottle/epinephrine{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/reagent_containers/cup/bottle/fluorine{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/reagent_containers/cup/bottle/iodine{ + pixel_x = -5; + pixel_y = -2 + }, +/obj/item/reagent_containers/cup/bottle/nitrogen{ + pixel_x = 7; + pixel_y = -2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/pharmacy) +"jKu" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/iron/white/small, +/area/station/medical/medbay/lobby) +"jKL" = ( +/obj/structure/railing{ + dir = 9 + }, +/obj/structure/window/reinforced/plasma/spawner/directional/north, +/obj/structure/window/reinforced/plasma/spawner/directional/west, +/turf/open/openspace, +/area/station/engineering/atmos/upper) +"jKS" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/turf/open/floor/plating/airless, +/area/station/engineering/main) +"jKU" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/maintenance/department/security/lower) +"jLi" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/cafeteria{ + dir = 5 + }, +/area/station/service/kitchen/diner) +"jLz" = ( +/obj/structure/chair/office, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/landmark/start/detective, +/turf/open/floor/wood/tile, +/area/station/security/detectives_office) +"jMo" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/general/visible/layer4{ + dir = 6 + }, +/turf/open/floor/iron/dark/side, +/area/station/engineering/atmos/hfr_room) +"jMr" = ( +/obj/effect/spawner/random/maintenance, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/large, +/area/station/cargo/storage) +"jMF" = ( +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"jMR" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/maintenance/port/lesser) +"jMT" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/common/laser_tag) +"jNa" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/commons/storage/mining) +"jNd" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron/small, +/area/station/maintenance/port/aft) +"jNq" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external{ + name = "Arrival Airlock" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"jNw" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/structure/chair/sofa/bench, +/obj/effect/landmark/start/hangover, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/secondary/recreation) +"jNy" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/security/court, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/obj/machinery/door/airlock/grunge{ + name = "Courtroom Access" + }, +/turf/open/floor/plating, +/area/station/security/courtroom) +"jNA" = ( +/turf/closed/wall, +/area/station/science/xenobiology) +"jNC" = ( +/obj/effect/turf_decal/siding/dark, +/obj/structure/railing, +/obj/machinery/light/blacklight/directional/west, +/obj/effect/landmark/start/hangover, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/eighties, +/area/station/common/arcade) +"jNE" = ( +/obj/structure/table, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar/fourcorners, +/turf/open/floor/iron/checker, +/area/station/service/kitchen/diner) +"jNM" = ( +/obj/structure/stairs/south, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/engineering/storage) +"jNS" = ( +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"jNZ" = ( +/obj/structure/trash_pile, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/central) +"jOd" = ( +/obj/machinery/status_display/supply{ + pixel_x = -32 + }, +/obj/machinery/mineral/ore_redemption{ + input_dir = 2; + output_dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/left/directional/north{ + name = "Ore Redemption Access" + }, +/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/floor/plating, +/area/station/cargo/office) +"jOh" = ( +/obj/effect/turf_decal/stripes/full, +/obj/machinery/conveyor{ + id = "QMLoad2"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/cargo/storage) +"jOj" = ( +/obj/effect/turf_decal/trimline/dark_red/arrow_cw{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron, +/area/station/security/prison) +"jOk" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Service Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/service/general, +/turf/open/floor/plating, +/area/station/service/hydroponics/upper) +"jOm" = ( +/turf/open/space/basic, +/area/space/nearstation) +"jOn" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/hfr_room) +"jOr" = ( +/obj/machinery/camera/directional/west{ + c_tag = "Engineering - Supermatter Room Port"; + network = list("ss13","engine") + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"jOC" = ( +/obj/machinery/door/airlock/freezer{ + critical_machine = 1; + name = "Showers" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/prison) +"jOF" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/station/service/library/lounge) +"jOO" = ( +/obj/structure/hedge, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/storage) +"jOT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/edge, +/area/station/maintenance/port/aft) +"jPd" = ( +/obj/structure/chair/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet, +/area/station/commons/dorms) +"jPf" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/iron, +/area/station/maintenance/aft/greater) +"jPi" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/medical/medbay/central) +"jPl" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/obj/structure/ladder, +/turf/open/floor/plating, +/area/station/maintenance/solars/port/fore) +"jPG" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"jPP" = ( +/obj/effect/turf_decal/tile/dark_blue, +/turf/open/floor/iron/dark/smooth_corner, +/area/station/security/office) +"jPQ" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Experimentor Lab Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/research, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/science/explab) +"jPS" = ( +/turf/closed/wall, +/area/station/common/arcade) +"jPY" = ( +/obj/effect/turf_decal/tile/green/opposingcorners{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/corner, +/area/station/hallway/primary/central) +"jQe" = ( +/turf/closed/wall, +/area/station/commons/storage/mining) +"jQg" = ( +/obj/structure/closet/radiation, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/station/engineering/supermatter/room) +"jQk" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/exit/departure_lounge) +"jQp" = ( +/turf/closed/wall, +/area/station/commons/dorms) +"jQr" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/secondary/command) +"jQx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/tile, +/area/station/commons/lounge) +"jQA" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/effect/spawner/random/food_or_drink/seed{ + spawn_all_loot = 1; + spawn_random_offset = 1 + }, +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 4 + }, +/obj/effect/turf_decal/bot_white, +/obj/structure/closet/crate/hydroponics, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/service/hydroponics/garden) +"jQW" = ( +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/cargo/lobby) +"jRb" = ( +/obj/machinery/atmospherics/components/tank, +/turf/open/floor/plating, +/area/station/maintenance/department/science/xenobiology) +"jRj" = ( +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"jRL" = ( +/obj/machinery/firealarm/directional/west, +/obj/machinery/camera/directional/west{ + c_tag = "Medbay - Lower Pharmacy"; + network = list("ss13","medbay") + }, +/obj/machinery/vending/drugs, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/pharmacy) +"jSh" = ( +/obj/effect/spawner/random/structure/steam_vent, +/obj/structure/rack, +/turf/open/floor/plating, +/area/station/maintenance/department/security/upper) +"jSi" = ( +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/white/diagonal, +/area/station/commons/toilet/restrooms) +"jSj" = ( +/obj/effect/spawner/random/structure/table_or_rack, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"jSv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/ai_monitored/command/storage/eva) +"jSH" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/obj/effect/landmark/start/hangover, +/turf/open/floor/eighties, +/area/station/common/arcade) +"jSM" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/structure/railing{ + dir = 8 + }, +/obj/item/book/manual/wiki/engineering_guide{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/book/manual/wiki/engineering_construction{ + pixel_y = 3 + }, +/obj/item/book/manual/wiki/engineering_hacking{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/engineering/lobby) +"jSO" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/machinery/computer/security/qm{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/wood, +/area/station/command/heads_quarters/qm) +"jSQ" = ( +/obj/machinery/light/warm/directional/south, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"jSR" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/desk_bell{ + pixel_x = 6; + pixel_y = 10 + }, +/obj/structure/table/glass, +/obj/item/stock_parts/manipulator{ + pixel_y = 4; + pixel_x = -2 + }, +/obj/item/stock_parts/manipulator{ + pixel_y = 2; + pixel_x = -6 + }, +/obj/item/stock_parts/capacitor{ + pixel_x = 4 + }, +/turf/open/floor/iron/checker, +/area/station/hallway/primary/central/aft) +"jSS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/liquid_pump, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/window/reinforced/spawner/directional/west, +/turf/open/floor/iron/dark/smooth_large, +/area/station/cargo/sorting) +"jTd" = ( +/obj/structure/railing, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/machinery/airalarm/directional/north, +/obj/machinery/camera/directional/north{ + c_tag = "Security - Warden Office" + }, +/turf/open/openspace, +/area/station/security/warden) +"jTe" = ( +/obj/machinery/vending/wardrobe/medi_wardrobe, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/paramedic) +"jTw" = ( +/obj/structure/chair/stool/bar/directional/west, +/turf/open/floor/iron/cafeteria{ + dir = 5 + }, +/area/station/commons/lounge) +"jTy" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood, +/area/station/commons/vacant_room/office) +"jTG" = ( +/turf/closed/wall/r_wall, +/area/station/ai_monitored/turret_protected/aisat/maint) +"jTW" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/four, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"jUA" = ( +/obj/item/storage/box/aquarium_props{ + pixel_y = 4; + pixel_x = -6 + }, +/obj/item/storage/box/aquarium_props{ + pixel_y = 2; + pixel_x = 6 + }, +/obj/item/fish_analyzer{ + pixel_y = -4; + pixel_x = -4 + }, +/obj/item/fish_analyzer{ + pixel_y = -6; + pixel_x = 4 + }, +/obj/structure/rack/shelf, +/obj/effect/turf_decal/box/blue, +/turf/open/floor/plastic, +/area/station/common/carpshop) +"jUB" = ( +/obj/effect/turf_decal/siding/white{ + dir = 9 + }, +/obj/structure/window/reinforced/tinted/frosted/spawner/directional/west, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/turf/open/floor/wood/parquet, +/area/station/medical/patients_rooms) +"jUK" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/machinery/requests_console/auto_name/directional/south, +/obj/effect/mapping_helpers/requests_console/assistance, +/turf/open/floor/glass, +/area/station/service/barber) +"jUR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"jUS" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/mid_joiner{ + dir = 4 + }, +/obj/structure/closet/crate/bin{ + name = "biowaste bin" + }, +/obj/effect/turf_decal/box/white{ + color = "#9FED58" + }, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/white/smooth_edge{ + dir = 4 + }, +/area/station/security/medical) +"jUW" = ( +/obj/effect/turf_decal/box/corners, +/obj/machinery/atmospherics/pipe/layer_manifold/yellow/visible, +/turf/open/floor/engine, +/area/station/engineering/atmos) +"jUX" = ( +/obj/structure/bodycontainer/morgue{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/warning, +/obj/effect/turf_decal/bot_white, +/obj/machinery/camera/directional/south{ + c_tag = "Medbay - Morgue"; + network = list("ss13","medbay") + }, +/obj/machinery/light/small/blacklight/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/morgue) +"jVd" = ( +/obj/machinery/suit_storage_unit/engine, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/storage) +"jVg" = ( +/obj/machinery/door/airlock/hatch{ + name = "Maintenance Hatch" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"jVm" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/machinery/photocopier, +/obj/effect/turf_decal/bot, +/obj/item/toy/figure/md{ + pixel_y = 11; + pixel_x = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/white/small, +/area/station/medical/medbay/lobby) +"jVs" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/commons/dorms) +"jVC" = ( +/obj/structure/flora/rock/pile/style_random, +/turf/open/misc/asteroid/moon, +/area/station/science/xenobiology) +"jVE" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/box, +/obj/machinery/digital_clock/directional/north, +/obj/machinery/camera/directional/north{ + c_tag = "Medbay - Primary Surgery"; + network = list("ss13","medbay") + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/medical/surgery/theatre) +"jVF" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Brig" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/brig) +"jVI" = ( +/turf/closed/wall/r_wall, +/area/station/service/lawoffice) +"jVJ" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/science/ordnance/office) +"jWd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, +/obj/effect/landmark/start/virologist, +/turf/open/floor/iron/white, +/area/station/medical/virology) +"jWe" = ( +/obj/structure/chair/pew/left, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/iron/chapel{ + dir = 8 + }, +/area/station/service/chapel) +"jWl" = ( +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plating, +/area/station/science/xenobiology) +"jWA" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"jWI" = ( +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 1 + }, +/obj/machinery/firealarm/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/service) +"jWR" = ( +/obj/effect/mapping_helpers/burnt_floor, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/central) +"jXb" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/openspace, +/area/station/maintenance/department/security/upper) +"jXd" = ( +/obj/structure/bookcase/random/religion, +/turf/open/floor/wood, +/area/station/service/library/lounge) +"jXg" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/obj/machinery/meter, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"jXh" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/machinery/station_map/engineering/directional/south, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"jXo" = ( +/obj/effect/spawner/random/trash/grime, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"jXC" = ( +/obj/machinery/newscaster/directional/east, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera/directional/east{ + c_tag = "Dormitories - Entrance" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/commons/dorms) +"jXI" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) +"jXJ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron, +/area/station/engineering/atmos/office) +"jXM" = ( +/obj/structure/window/spawner/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/lattice, +/obj/structure/window/spawner/directional/north, +/turf/open/openspace, +/area/station/security/brig/upper) +"jXT" = ( +/obj/structure/chair/wood/wings{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white, +/area/station/service/theater) +"jYh" = ( +/obj/structure/rack, +/obj/machinery/ecto_sniffer{ + pixel_x = 6 + }, +/obj/item/reagent_containers/spray/cleaner, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"jYp" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "AI Chamber Entrance Shutters"; + name = "AI Chamber Entrance Shutters" + }, +/obj/structure/cable, +/obj/structure/sign/warning/secure_area/directional/east, +/turf/open/floor/plating, +/area/station/ai_monitored/turret_protected/ai) +"jYs" = ( +/obj/structure/railing{ + dir = 9 + }, +/obj/structure/lattice/catwalk, +/obj/structure/closet/secure_closet/brig/genpop, +/obj/item/card/id/advanced/prisoner/seven, +/turf/open/openspace, +/area/station/security/holding_cell) +"jYt" = ( +/obj/structure/bed/double{ + dir = 8 + }, +/obj/item/bedsheet/captain/double, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/wood/tile, +/area/station/command/heads_quarters/captain) +"jYw" = ( +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/escape_pod) +"jYB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"jYJ" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/science/research) +"jYM" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/pen{ + pixel_y = 4 + }, +/turf/open/floor/carpet/cyan, +/area/station/command/heads_quarters/blueshield) +"jYP" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/turf/closed/wall/r_wall, +/area/station/medical/chemistry) +"jZl" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"jZp" = ( +/obj/machinery/button/door/directional/west{ + id = "custodialshutters"; + name = "Custodial Closet Shutters"; + req_access = list("janitor"); + pixel_y = 24 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/checker{ + dir = 1 + }, +/area/station/commons/dorms) +"jZq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/dna_scannernew, +/turf/open/floor/iron/dark/small, +/area/station/science/genetics) +"jZr" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/transit_tube, +/turf/open/floor/plating, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"jZA" = ( +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/button/door/directional/north{ + id = "engsm"; + name = "Radiation Shutters Control"; + req_access = list("engineering") + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"jZE" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/machinery/door/airlock/security/glass{ + name = "Firing Range" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/range) +"jZR" = ( +/obj/structure/sign/directions/security/directional/east{ + pixel_y = 8 + }, +/obj/structure/sign/directions/command/directional/east, +/obj/structure/sign/directions/medical/directional/east{ + pixel_y = -8 + }, +/obj/structure/disposalpipe/segment, +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/dark/end{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/obj/structure/cable, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central/fore) +"jZY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/small/directional/east, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/service/salon) +"kaA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/iron/dark, +/area/station/tcommsat/computer) +"kaJ" = ( +/obj/structure/table/wood/poker, +/obj/item/reagent_containers/cup/glass/drinkingglass/shotglass{ + pixel_y = -10; + pixel_x = 4 + }, +/obj/item/reagent_containers/cup/glass/drinkingglass/shotglass{ + pixel_y = 6; + pixel_x = 6 + }, +/obj/machinery/pollution_scrubber{ + pixel_x = -7; + pixel_y = 2 + }, +/turf/open/floor/wood, +/area/station/service/abandoned_gambling_den) +"kaX" = ( +/turf/open/openspace, +/area/station/command/bridge) +"kaY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/landmark/start/cook, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"kaZ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/lattice, +/turf/open/openspace, +/area/station/science/xenobiology) +"kbx" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"kbJ" = ( +/obj/structure/rack, +/obj/item/stack/sheet/iron/fifty{ + pixel_y = 3 + }, +/obj/item/stack/ducts/fifty{ + pixel_y = 5 + }, +/obj/item/stack/ducts/fifty{ + pixel_y = 3 + }, +/obj/item/stack/ducts/fifty{ + pixel_y = 1 + }, +/obj/item/stack/ducts/fifty{ + pixel_y = -2 + }, +/obj/item/stack/ducts/fifty{ + pixel_y = -5 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Medbay - Chemistry Upper North"; + network = list("ss13","medbay") + }, +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"kca" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/air_input, +/turf/open/floor/engine/air, +/area/station/engineering/atmos) +"kcd" = ( +/obj/structure/industrial_lift/public, +/turf/open/floor/plating/elevatorshaft, +/area/station/hallway/primary/starboard) +"kcf" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"kcg" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 1 + }, +/area/station/command/meeting_room/council) +"kco" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/purple/opposingcorners, +/obj/item/tattoo_kit, +/turf/open/floor/iron/dark, +/area/station/service/barber) +"kcr" = ( +/obj/structure/sink/kitchen/directional/west, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"kcG" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 4 + }, +/area/station/command/bridge) +"kcS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/security/sec, +/turf/open/floor/engine, +/area/station/security/lockers) +"kcU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"kdj" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/table/reinforced, +/obj/item/clothing/head/helmet/sec{ + pixel_y = 8; + pixel_x = -8 + }, +/obj/item/clothing/head/helmet/sec{ + pixel_y = 8 + }, +/obj/item/clothing/head/helmet/sec{ + pixel_y = 8; + pixel_x = 8 + }, +/obj/item/clothing/suit/armor/vest/alt/sec{ + pixel_x = -8 + }, +/obj/item/clothing/suit/armor/vest/alt/sec, +/obj/item/clothing/suit/armor/vest/alt/sec{ + pixel_x = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/station/ai_monitored/security/armory) +"kdk" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Holodeck Access" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/fitness/recreation) +"kdr" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Ports Outlet" + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"kdD" = ( +/obj/structure/cable, +/turf/open/floor/wood, +/area/station/commons/dorms/room1) +"kdH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/escape_pod) +"kdW" = ( +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/dark/small, +/area/station/cargo/storage) +"ket" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/science/circuits) +"keT" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/security/telescreen{ + desc = "Used for monitoring the engine."; + name = "Engine Monitor"; + network = list("engine"); + dir = 1; + pixel_y = 4 + }, +/obj/machinery/airalarm/directional/south, +/obj/machinery/firealarm/directional/east, +/obj/item/radio/intercom/directional/south{ + pixel_x = 26 + }, +/obj/machinery/camera/directional/east{ + c_tag = "Guard Post - Engineering"; + network = list("ss13","engine") + }, +/obj/machinery/light/cold/directional/south, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, +/turf/open/floor/iron, +/area/station/security/checkpoint/engineering) +"kfi" = ( +/obj/structure/bookcase/random/religion, +/turf/open/floor/wood, +/area/station/service/chapel) +"kfk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/suit_storage_unit/hos, +/obj/machinery/light/small/directional/north, +/turf/open/floor/engine, +/area/station/command/heads_quarters/hos) +"kfm" = ( +/obj/structure/cable/layer1, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/machinery/light/cold/directional/north, +/obj/structure/cable/layer3, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/aisat/maint) +"kfq" = ( +/obj/machinery/vending/imported, +/obj/effect/turf_decal/bot_white, +/obj/machinery/airalarm/directional/west, +/obj/machinery/light/warm/directional/west, +/turf/open/floor/iron/dark/small, +/area/station/command/meeting_room/council) +"kft" = ( +/obj/machinery/computer/records/security, +/obj/effect/turf_decal/box, +/obj/machinery/digital_clock/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/security/checkpoint/engineering) +"kfH" = ( +/obj/effect/mapping_helpers/broken_floor, +/mob/living/basic/cat_butcherer, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/abandon_surgery) +"kfI" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/dark_blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) +"kfP" = ( +/turf/open/floor/carpet, +/area/station/medical/psychology) +"kfS" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 1 + }, +/area/station/security/office) +"kgb" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/entry) +"kgz" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/tile, +/area/station/service/lawoffice) +"kgA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"kgG" = ( +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/ai_monitored/turret_protected/aisat/equipment) +"kgN" = ( +/obj/structure/closet/secure_closet/freezer/empty, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/cold/dim/directional/south, +/turf/open/floor/iron/kitchen/diagonal, +/area/station/maintenance/abandon_diner) +"kgP" = ( +/turf/open/openspace, +/area/station/hallway/secondary/exit/departure_lounge) +"kgX" = ( +/turf/open/floor/iron/dark, +/area/station/maintenance/disposal/incinerator) +"kgZ" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"khc" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/visible, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"khm" = ( +/obj/machinery/door/airlock/external{ + name = "MiniSat External Access" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/any/science/minisat, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/structure/cable/layer1, +/obj/structure/cable/layer3, +/turf/open/floor/plating, +/area/station/ai_monitored/turret_protected/aisat/maint) +"khs" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/commons/storage/primary) +"khB" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/carpet/green, +/area/station/hallway/secondary/exit/departure_lounge) +"khC" = ( +/obj/structure/lattice, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk/multiz/down{ + dir = 8 + }, +/turf/open/openspace, +/area/station/maintenance/aft/greater) +"khD" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/table/wood/poker, +/obj/item/reagent_containers/cup/glass/flask/gold{ + pixel_x = 5; + pixel_y = 9 + }, +/obj/item/lighter{ + color = "#d4af37"; + desc = "A lighter clad with a thin layer of gold foil. Fancy!"; + name = "Gilded Lighter"; + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/clothing/mask/cigarette/cigar{ + pixel_x = 4 + }, +/obj/item/clothing/mask/cigarette/cigar{ + pixel_x = 7 + }, +/obj/item/clothing/mask/cigarette/cigar{ + pixel_x = 10 + }, +/obj/machinery/light/warm/directional/east, +/turf/open/floor/wood/parquet, +/area/station/command/heads_quarters/captain) +"khL" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/mob/living/basic/bot/medbot/stationary, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"khQ" = ( +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/central/lesser) +"khR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/grunge{ + id_tag = "Cell3Privacy"; + name = "Cell 3" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/prison) +"kid" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/machinery/vending/cola/red, +/obj/effect/turf_decal/bot, +/obj/item/toy/figure/prisoner{ + pixel_y = 17; + pixel_x = 6 + }, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"kii" = ( +/obj/effect/turf_decal/tile/bar/fourcorners, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/checker, +/area/station/service/kitchen/diner) +"kiw" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/obj/machinery/light/cold/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/white/diagonal, +/area/station/commons/toilet/restrooms) +"kiy" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tcomms) +"kiH" = ( +/obj/structure/stairs/west, +/turf/open/floor/plating, +/area/station/command/heads_quarters/rd) +"kiP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/hfr_room) +"kiZ" = ( +/obj/machinery/rnd/production/techfab/department/cargo, +/obj/machinery/door/firedoor/border_only, +/obj/effect/turf_decal/tile/brown/half/contrasted, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/office) +"kjc" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/line{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/service/hydroponics) +"kje" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/machinery/duct, +/turf/open/misc/asteroid/moon, +/area/station/science/xenobiology) +"kjj" = ( +/obj/machinery/button/elevator/directional/south{ + id = "robo_mechbaylift"; + req_access = list("robotics"); + pixel_y = -24 + }, +/obj/effect/turf_decal/tile/dark_red{ + dir = 1 + }, +/obj/machinery/firealarm/directional/east, +/obj/machinery/light/cold/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/science/robotics/mechbay) +"kjm" = ( +/obj/effect/turf_decal/tile/brown/half/contrasted, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"kjn" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/structure/railing, +/obj/structure/sign/directions/evac/directional/east, +/turf/open/floor/iron/white/side{ + dir = 6 + }, +/area/station/hallway/primary/central) +"kjs" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/bed{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/service/barber) +"kjB" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/structure/cable, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/ai) +"kjG" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/landmark/start/hangover/closet, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/escape_pod) +"kjI" = ( +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/lunar_sand/plating, +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating, +/area/station/asteroid) +"kjK" = ( +/turf/closed/wall, +/area/station/command/heads_quarters/hop) +"kjS" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"kkj" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/firealarm/directional/north, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/pen{ + pixel_y = 6; + pixel_x = -2 + }, +/obj/item/toy/toy_xeno, +/turf/open/floor/iron/white, +/area/station/science/xenobiology) +"kko" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/tile, +/area/station/service/bar) +"kkt" = ( +/obj/structure/railing, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/iron, +/area/station/command/meeting_room/council) +"kku" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/engineering/gravity_generator) +"kkR" = ( +/obj/effect/turf_decal/siding/white{ + dir = 6 + }, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/machinery/washing_machine, +/obj/machinery/light/warm/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms) +"kkU" = ( +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/cafeteria{ + dir = 5 + }, +/area/station/service/kitchen/diner) +"kkV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/station/security/checkpoint/science/research) +"klg" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"klu" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/four, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/maintenance/department/security/upper) +"klA" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/glass/reinforced, +/area/station/hallway/secondary/command) +"klB" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/holopad/secure, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/station/command/heads_quarters/cmo) +"klC" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/station/engineering/atmos/upper) +"klU" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark/side, +/area/station/common/wrestling/arena) +"klV" = ( +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/smooth_corner, +/area/station/common/laser_tag) +"klY" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/green/filled/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 8 + }, +/area/station/service/hydroponics) +"kmd" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "pharmacy_shutters_2"; + name = "Chemlab Shutters" + }, +/obj/machinery/door/window/left/directional/south{ + name = "Chemistry Desk"; + req_access = list("pharmacy") + }, +/obj/item/reagent_containers/cup/beaker/large{ + pixel_y = 5 + }, +/obj/item/reagent_containers/dropper{ + pixel_y = -2 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/pharmacy) +"kmF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/virology) +"kmO" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos/office) +"kmP" = ( +/obj/structure/trash_pile, +/turf/open/floor/plating, +/area/station/maintenance/central/lesser) +"kmS" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/robotics/lab) +"kmY" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/security/office) +"knc" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral/full, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/smooth_large, +/area/station/cargo/lobby) +"kne" = ( +/obj/item/stack/cable_coil/five, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/frame/machine/secured, +/turf/open/floor/iron/dark/small, +/area/station/science/research) +"knM" = ( +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/machinery/vending/drugs, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"koa" = ( +/obj/structure/rack, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/bot, +/obj/machinery/light/cold/directional/east, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/small, +/area/station/security/checkpoint/escape) +"kob" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/engineering/atmos/office) +"koc" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"kod" = ( +/obj/machinery/conveyor{ + dir = 9; + id = "mining" + }, +/obj/machinery/light/directional/south, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plating, +/area/station/cargo/office) +"koe" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"kok" = ( +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_y = 8 + }, +/obj/item/pen{ + pixel_y = 8 + }, +/obj/item/toner{ + pixel_y = 2; + pixel_x = 2 + }, +/obj/item/toner{ + pixel_y = -2 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/lobby) +"kow" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"koC" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/disposal) +"koJ" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/box, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/detectives_office) +"koR" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/station/security/brig/upper) +"koU" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/wood/large, +/area/station/service/bar) +"koV" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/command/gateway) +"kpb" = ( +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 8 + }, +/obj/machinery/computer/operating{ + dir = 4 + }, +/obj/effect/turf_decal/box/white, +/turf/open/floor/iron/dark, +/area/station/medical/morgue) +"kpc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"kpd" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"kpq" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced/tinted, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/plating, +/area/station/ai_monitored/turret_protected/ai) +"kpu" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "Atmospherics Blast Door" + }, +/turf/open/floor/plating, +/area/station/engineering/atmos/office) +"kpv" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"kpy" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/chair/office, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/dark/side, +/area/station/command/heads_quarters/ce) +"kpO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/lockers) +"kpR" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"kpT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light_switch/directional/east, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/lockers) +"kpV" = ( +/obj/machinery/button/door/directional/west{ + id = "kitchen_privacy"; + pixel_y = -5 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/kitchen) +"kpW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/small/directional/north, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"kqm" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/simple/violet/visible{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/openspace, +/area/station/engineering/atmos/upper) +"kqs" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/pen{ + pixel_y = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/brigdoor/right/directional/south{ + req_one_access = list("security","hop"); + name = "Customs Desk" + }, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = 15; + pixel_y = 6 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"kqL" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/departure_lounge) +"kqN" = ( +/turf/closed/wall/r_wall, +/area/station/engineering/supermatter) +"kqU" = ( +/obj/structure/table, +/obj/effect/spawner/random/entertainment/lighter{ + pixel_x = -5; + pixel_y = 8 + }, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/item/storage/fancy/rollingpapers{ + pixel_y = 6; + pixel_x = 6 + }, +/obj/item/clothing/mask/cigarette/rollie/cannabis{ + pixel_y = 9 + }, +/obj/item/clothing/mask/cigarette/rollie/cannabis{ + pixel_y = 7; + pixel_x = 4 + }, +/obj/item/clothing/mask/cigarette/rollie/nicotine{ + pixel_y = 5; + pixel_x = -3 + }, +/obj/item/clothing/mask/cigarette/rollie/trippy{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/clothing/mask/cigarette/rollie/mindbreaker, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/iron/vaporwave, +/area/station/maintenance/department/security/upper) +"kqX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"kqY" = ( +/obj/machinery/light/small/directional/east, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/maintenance/aft/greater) +"kqZ" = ( +/obj/machinery/requests_console/auto_name/directional/east, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/mapping_helpers/requests_console/information, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/hfr_box/corner{ + pixel_x = -8; + pixel_y = 13 + }, +/obj/item/hfr_box/corner{ + pixel_x = 8; + pixel_y = 13 + }, +/obj/item/hfr_box/core{ + pixel_y = 5 + }, +/obj/item/hfr_box/corner{ + pixel_x = -10; + pixel_y = -3 + }, +/obj/item/hfr_box/corner{ + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/plating, +/area/station/engineering/atmos/hfr_room) +"kre" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/showroomfloor, +/area/station/medical/coldroom) +"krg" = ( +/obj/item/mmi, +/obj/structure/rack, +/obj/effect/spawner/random/maintenance, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"krl" = ( +/obj/structure/lattice, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/commons/storage/primary) +"krq" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/carpet/black, +/area/station/command/heads_quarters/ce) +"krw" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/security/checkpoint/service) +"krx" = ( +/obj/effect/turf_decal/tile/dark_red{ + dir = 1 + }, +/obj/machinery/computer/mechpad, +/obj/structure/fireaxecabinet/mechremoval/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/science/robotics/mechbay) +"krA" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/west, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"krB" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/commons/storage/tools) +"krC" = ( +/obj/effect/spawner/random/structure/girder, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"krJ" = ( +/obj/machinery/door/poddoor{ + id = "securestorage"; + name = "Secure Storage" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/button/door/directional/west{ + id = "securestorage"; + name = "Engineering Secure Storage"; + req_one_access = list("engine_equip"); + pixel_x = -30 + }, +/turf/open/floor/plating, +/area/station/engineering/storage_shared) +"krK" = ( +/obj/structure/extinguisher_cabinet/directional/south, +/obj/structure/table/glass, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/wrench{ + pixel_y = 4 + }, +/obj/item/clothing/glasses/science{ + pixel_y = 3 + }, +/obj/item/clothing/glasses/science{ + pixel_y = -2 + }, +/obj/machinery/camera/directional/south{ + c_tag = "Xenobiology Lab - Workdesks"; + network = list("ss13","xeno","rd") + }, +/turf/open/floor/iron/dark/small, +/area/station/science/xenobiology) +"ksb" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/openspace, +/area/station/ai_monitored/turret_protected/aisat/maint) +"ksv" = ( +/obj/machinery/firealarm/directional/east, +/obj/structure/disposalpipe/segment, +/obj/machinery/shower/directional/west{ + name = "emergency shower" + }, +/obj/structure/drain, +/obj/effect/turf_decal/siding/white/end{ + dir = 8 + }, +/turf/open/floor/iron/checker, +/area/station/science/research) +"ksy" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"ksz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"ksB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"ksC" = ( +/obj/structure/table, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/exit/departure_lounge) +"ksG" = ( +/obj/machinery/airalarm/directional/north, +/obj/structure/transit_tube/station/dispenser/reverse, +/obj/effect/turf_decal/box, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/dark/small, +/area/station/science/xenobiology/hallway) +"ksL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/structure/rack/gunrack, +/obj/item/gun/energy/ionrifle, +/obj/item/gun/energy/temperature/security, +/turf/open/floor/engine, +/area/station/ai_monitored/security/armory) +"ktc" = ( +/obj/item/stack/sheet/cardboard, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/department/security/lower) +"ktf" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central) +"ktt" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/science/xenobiology/hallway) +"ktu" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"ktv" = ( +/obj/item/food/deadmouse, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"ktA" = ( +/obj/structure/table, +/obj/item/camera_film{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/camera{ + pixel_x = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) +"ktE" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"kuc" = ( +/obj/structure/chair/stool/bar/directional/west, +/turf/open/floor/wood, +/area/station/service/abandoned_gambling_den) +"kue" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Library Desk" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/library) +"kuk" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=lowhall3"; + location = "lowhall2" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/corner{ + dir = 8 + }, +/area/station/hallway/secondary/entry) +"kul" = ( +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/blueshield) +"kuz" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/engineering/transit_tube) +"kuA" = ( +/obj/effect/turf_decal/vg_decals/atmos/mix, +/turf/open/floor/engine/vacuum, +/area/station/engineering/atmos/upper) +"kuK" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/primary/central/aft) +"kuN" = ( +/obj/item/radio/intercom/directional/north, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/pharmacy) +"kuV" = ( +/turf/open/openspace, +/area/station/maintenance/port/fore) +"kuW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"kvd" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/table/reinforced, +/obj/machinery/fax{ + fax_name = "Head of Security's Office"; + name = "Head of Security's Fax Machine" + }, +/turf/open/floor/carpet, +/area/station/command/heads_quarters/hos) +"kvi" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/external{ + name = "External Solar Access" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/open/floor/iron, +/area/station/maintenance/solars/port/aft) +"kvn" = ( +/turf/open/floor/engine, +/area/station/engineering/main) +"kvo" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"kvu" = ( +/obj/machinery/light/warm/directional/south, +/turf/open/openspace, +/area/station/engineering/main) +"kvL" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/maintenance/fore/lesser) +"kvO" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating, +/area/station/service/chapel/funeral) +"kvU" = ( +/obj/structure/frame/machine, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"kwp" = ( +/obj/structure/chair/pew/left{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/diagonal, +/area/station/security/courtroom) +"kwQ" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 10 + }, +/turf/open/openspace, +/area/station/engineering/atmos/upper) +"kwT" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"kxj" = ( +/obj/machinery/destructive_scanner, +/obj/effect/turf_decal/stripes/full, +/obj/effect/turf_decal/box/red, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/primary/central/aft) +"kxk" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/lunar_sand/plating, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"kxn" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/dark/full, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/prison) +"kxt" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/primary/central/fore) +"kxC" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/medical/pharmacy, +/obj/machinery/door/airlock/maintenance/external{ + name = "Chemistry Access" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/pharmacy) +"kxE" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/engineering/lobby) +"kxN" = ( +/obj/machinery/photocopier, +/obj/effect/turf_decal/bot, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/science/circuits) +"kxX" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/science/ordnance) +"kya" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted, +/obj/effect/turf_decal/tile/blue/half/contrasted, +/obj/effect/turf_decal/tile/purple/half/contrasted, +/obj/structure/table, +/obj/structure/railing, +/obj/item/clothing/head/soft/purple{ + pixel_y = 14 + }, +/obj/item/reagent_containers/cup/soda_cans/pwr_game{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/item/reagent_containers/cup/soda_cans/pwr_game{ + pixel_y = 3; + pixel_x = -3 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/common/arcade) +"kyb" = ( +/obj/structure/cable, +/obj/machinery/power/smes/full, +/turf/open/floor/plating, +/area/station/maintenance/department/science/xenobiology) +"kyh" = ( +/turf/closed/wall/r_wall, +/area/station/engineering/gravity_generator) +"kyj" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Genetics Lab Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/genetics, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/science/genetics) +"kyo" = ( +/obj/item/radio/intercom/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/command/meeting_room/council) +"kyB" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/station/science/robotics/augments) +"kyJ" = ( +/obj/structure/table/reinforced, +/obj/item/flashlight/lamp{ + pixel_x = 2; + pixel_y = 12 + }, +/obj/item/clipboard, +/obj/item/folder/yellow{ + pixel_x = -3 + }, +/obj/item/stamp/head/ce, +/obj/machinery/button/door/directional/west{ + id = "CEShutter"; + name = "Privacy Shutters Control"; + pixel_y = 8 + }, +/obj/machinery/button/door/directional/west{ + id = "securestorage"; + name = "Engineering Secure Storage"; + req_one_access = list("engine_equip"); + pixel_x = -30 + }, +/obj/machinery/keycard_auth/directional/west{ + pixel_y = -10 + }, +/turf/open/floor/carpet/black, +/area/station/command/heads_quarters/ce) +"kyL" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/corner, +/obj/machinery/camera/directional/east{ + c_tag = "MiniSat Telecomms Right"; + network = list("minisat") + }, +/obj/effect/mapping_helpers/apc/full_charge, +/obj/effect/mapping_helpers/apc/cell_10k, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"kyR" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/tcommsat/computer) +"kzg" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/marker_beacon/bronze, +/turf/open/openspace, +/area/station/engineering/main) +"kzh" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/executive, +/area/station/command/heads_quarters/hop) +"kzr" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/item/plunger{ + pixel_x = 12; + pixel_y = -6 + }, +/obj/item/plunger{ + pixel_x = 10; + pixel_y = -10 + }, +/obj/machinery/vending/wardrobe/chem_wardrobe, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"kzu" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/light/cold/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"kzv" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/service/hydroponics) +"kzz" = ( +/obj/structure/cable, +/obj/machinery/power/port_gen/pacman, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"kzF" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/command/teleporter, +/obj/machinery/door/airlock/command{ + name = "Teleportations Access" + }, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/teleporter) +"kzK" = ( +/obj/effect/turf_decal/tile/green, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/commons/dorms) +"kzR" = ( +/obj/structure/stairs/south, +/turf/open/floor/plating, +/area/station/service/kitchen/diner) +"kzX" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/glass/reinforced, +/area/station/science/xenobiology) +"kAa" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown/opposingcorners, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/window/spawner/directional/east, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/cargo/drone_bay) +"kAb" = ( +/turf/closed/wall/r_wall, +/area/station/engineering/supermatter/room) +"kAd" = ( +/obj/item/toy/basketball, +/obj/effect/turf_decal/trimline/dark_red/filled, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron, +/area/station/security/prison) +"kAp" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/white/side{ + dir = 8 + }, +/area/station/command/heads_quarters/rd) +"kAs" = ( +/obj/item/storage/box{ + pixel_y = 8; + pixel_x = 13 + }, +/obj/structure/table, +/obj/effect/turf_decal/bot, +/obj/structure/window/spawner/directional/west, +/obj/machinery/firealarm/directional/north, +/obj/item/storage/box/lights/mixed{ + pixel_y = 4 + }, +/obj/item/stack/package_wrap{ + pixel_x = 4 + }, +/obj/item/stack/package_wrap{ + pixel_y = 5; + pixel_x = 4 + }, +/obj/machinery/light/warm/directional/north, +/obj/item/hand_labeler, +/turf/open/floor/iron/dark/smooth_large, +/area/station/cargo/lobby) +"kAt" = ( +/obj/structure/table/glass, +/obj/machinery/computer/records/medical/laptop, +/obj/item/radio/headset/headset_medsci{ + pixel_x = 14; + pixel_y = 4 + }, +/turf/open/floor/glass/reinforced, +/area/station/science/genetics) +"kAy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/pump, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/half, +/area/station/science/ordnance) +"kAB" = ( +/obj/structure/chair/plastic{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/holding_cell) +"kAC" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/medical/medbay/central) +"kAX" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/openspace, +/area/space/nearstation) +"kBf" = ( +/obj/effect/mapping_helpers/airlock/access/all/command/captain, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Captain's Quarters" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/captain) +"kBw" = ( +/obj/machinery/atmospherics/pipe/multiz/pink/visible{ + dir = 4; + name = "Exfiltrate" + }, +/obj/effect/turf_decal/box, +/turf/open/floor/engine, +/area/station/engineering/atmos/hfr_room) +"kBL" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/iron/half, +/area/station/science/ordnance) +"kBT" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral/full, +/obj/effect/spawner/random/maintenance, +/obj/machinery/light/warm/directional/west, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/iron/dark/smooth_large, +/area/station/cargo/lobby) +"kBV" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/robot_debris/down, +/obj/structure/cable, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron, +/area/station/science/research/abandoned) +"kCp" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/primary/central/fore) +"kCs" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"kCv" = ( +/obj/machinery/atmospherics/components/trinary/filter/flipped{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/mapping_helpers/airalarm/all_access, +/obj/machinery/airalarm/directional/north, +/obj/machinery/light/warm/directional/north, +/turf/open/floor/iron, +/area/station/maintenance/disposal/incinerator) +"kCy" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/storage/box{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/crowbar/red, +/obj/machinery/light/warm/directional/south, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron, +/area/station/engineering/atmos/office) +"kCC" = ( +/obj/machinery/elevator_control_panel/directional/west{ + linked_elevator_id = "engi_SMlift"; + req_access = list("engineering"); + preset_destination_names = list("2"="Lower Deck","3"="Upper Deck") + }, +/obj/structure/industrial_lift, +/obj/effect/landmark/lift_id{ + specific_lift_id = "engi_SMlift" + }, +/turf/open/floor/plating, +/area/station/engineering/supermatter/room) +"kCD" = ( +/obj/machinery/portable_atmospherics/canister/plasma, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/ordnance) +"kCO" = ( +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/yellow{ + dir = 9 + }, +/turf/open/floor/iron/white, +/area/station/science/explab) +"kCX" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/machinery/door/airlock/medical/glass{ + name = "Paramedic Dispatch Access" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/paramedic) +"kDz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/chair/sofa/right{ + dir = 1; + color = "2c2c2c" + }, +/turf/open/floor/carpet, +/area/station/commons/dorms) +"kDE" = ( +/obj/effect/turf_decal/tile/neutral/half{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/medical/morgue) +"kDM" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"kDO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/small, +/area/station/cargo/storage) +"kEi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/hallway/primary/central) +"kEx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/wood/large, +/area/station/service/library) +"kEC" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/commons/storage/mining) +"kEI" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/construction/mining/aux_base) +"kEO" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/structure/cable, +/obj/machinery/door/poddoor{ + id = "securestorage"; + name = "Secure Storage" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/command/heads_quarters/ce) +"kES" = ( +/obj/structure/bed, +/obj/effect/landmark/start/prisoner, +/obj/item/bedsheet/brown, +/obj/machinery/button/curtain{ + id = "Cell3Privacy"; + pixel_x = 24; + pixel_y = 24 + }, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"kFb" = ( +/obj/structure/sink/kitchen/directional/west{ + desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; + name = "old sink" + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron, +/area/station/maintenance/department/security/upper) +"kFx" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 1 + }, +/obj/item/reagent_containers/cup/watering_can, +/obj/item/reagent_containers/cup/watering_can, +/obj/item/reagent_containers/cup/watering_can, +/obj/item/reagent_containers/cup/watering_can, +/obj/item/reagent_containers/cup/watering_can, +/turf/open/floor/grass, +/area/station/security/prison) +"kFD" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"kGp" = ( +/obj/effect/turf_decal/tile/yellow/half, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/edge, +/area/station/engineering/main) +"kGu" = ( +/obj/structure/table/wood, +/obj/machinery/recharger, +/obj/item/coin/antagtoken{ + pixel_x = -12 + }, +/turf/open/floor/carpet/cyan, +/area/station/command/heads_quarters/blueshield) +"kGw" = ( +/obj/machinery/camera/directional/west{ + c_tag = "Engineering - Upper Supermatter Room Port"; + network = list("ss13","engine") + }, +/turf/open/openspace, +/area/station/engineering/main) +"kGB" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair/office{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/wood/large, +/area/station/service/library) +"kGI" = ( +/obj/item/mod/module/plasma_stabilizer, +/obj/structure/rack/shelf, +/obj/item/mod/module/signlang_radio, +/obj/item/mod/module/thermal_regulator, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/storage) +"kGM" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/service/hydroponics/upper) +"kGO" = ( +/obj/structure/railing, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/cargo/sorting) +"kGX" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "AI Core shutters"; + name = "AI Core Shutters" + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/ai_monitored/turret_protected/ai) +"kHa" = ( +/obj/machinery/power/port_gen/pacman, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"kHc" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/hfr_room) +"kHh" = ( +/obj/machinery/vending/wardrobe/law_wardrobe, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/light/warm/directional/west, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/station/service/lawoffice) +"kHi" = ( +/obj/machinery/porta_turret/ai, +/obj/effect/turf_decal/stripes/blue/full, +/obj/effect/turf_decal/bot_white, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron/white, +/area/station/ai_monitored/turret_protected/ai_upload) +"kHl" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Brig Entrance Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/command/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/hallway/secondary/command) +"kHn" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/end, +/obj/machinery/camera/motion/directional/south{ + c_tag = "Vault"; + network = list("vault") + }, +/turf/open/floor/circuit/green, +/area/station/ai_monitored/command/nuke_storage) +"kHq" = ( +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/general/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"kHt" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/openspace, +/area/station/engineering/transit_tube) +"kHA" = ( +/turf/open/floor/wood, +/area/station/commons/dorms/room5) +"kHF" = ( +/obj/structure/stairs/west, +/obj/structure/railing, +/turf/open/floor/plating, +/area/station/hallway/secondary/recreation) +"kHL" = ( +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/station/security/courtroom) +"kHM" = ( +/obj/effect/turf_decal/tile/bar/fourcorners, +/obj/machinery/camera/directional/south{ + c_tag = "Canteen - Diner"; + network = list("ss13","bar") + }, +/turf/open/floor/iron/checker, +/area/station/service/kitchen/diner) +"kHX" = ( +/obj/effect/spawner/random/engineering/tank, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"kIg" = ( +/obj/effect/spawner/random/structure/crate, +/obj/effect/spawner/random/maintenance, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"kIi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/maintenance/port/fore) +"kIo" = ( +/obj/machinery/light/warm/directional/east, +/obj/structure/railing, +/turf/open/openspace, +/area/station/engineering/atmos/upper) +"kIr" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/maintenance/port/greater) +"kIw" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/port/lesser) +"kIE" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/structure/chair/sofa/bench/left, +/obj/effect/landmark/start/hangover, +/obj/effect/landmark/start/assistant, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/secondary/recreation) +"kIK" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"kIS" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/bot, +/obj/effect/spawner/random/vending/snackvend, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"kJi" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Chemistry Factory Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/chemistry, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/chemistry) +"kJu" = ( +/obj/machinery/status_display/ai/directional/west, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"kJQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible/layer2, +/turf/open/floor/plating, +/area/station/medical/virology) +"kJT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/item/wrench{ + pixel_y = -6 + }, +/obj/machinery/meter, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"kKb" = ( +/obj/structure/table/glass, +/obj/machinery/reagentgrinder{ + pixel_y = 7 + }, +/obj/item/slime_extract/grey{ + pixel_y = 8; + pixel_x = -10 + }, +/obj/item/slime_extract/grey{ + pixel_y = 3; + pixel_x = -10 + }, +/obj/item/stack/sheet/mineral/plasma{ + amount = 5 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron/dark/small, +/area/station/science/xenobiology) +"kKf" = ( +/obj/effect/spawner/liquids_spawner, +/turf/open/floor/lowered/iron/pool/cobble, +/area/station/common/spa) +"kKp" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/cargo/miningoffice) +"kKq" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"kKt" = ( +/obj/structure/lattice, +/obj/structure/window/spawner/directional/east, +/obj/structure/window/spawner/directional/north, +/turf/open/openspace, +/area/station/security/prison/upper) +"kKy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"kKA" = ( +/obj/machinery/shieldgen, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plating, +/area/station/engineering/storage_shared) +"kKH" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/machinery/door/poddoor/preopen{ + id = "engi"; + name = "Engineering Blast Door" + }, +/turf/open/floor/plating, +/area/station/engineering/storage) +"kKK" = ( +/obj/structure/lattice/catwalk, +/obj/structure/table, +/obj/item/clipboard, +/obj/item/paper_bin/carbon{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = -5; + pixel_y = 4 + }, +/turf/open/openspace, +/area/station/cargo/office) +"kKM" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/airalarm/directional/north, +/obj/structure/cable/layer3, +/obj/structure/cable/layer1, +/turf/open/openspace, +/area/station/ai_monitored/turret_protected/aisat/maint) +"kKP" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/brig) +"kLb" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/camera/directional/west{ + c_tag = "Canteen Lounge - Public"; + network = list("ss13","bar") + }, +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating_new/light, +/turf/open/floor/wood/tile, +/area/station/commons/lounge) +"kLv" = ( +/obj/machinery/camera/directional/east{ + c_tag = "Xenobiology Pens - Freezer"; + network = list("ss13","xeno","rd") + }, +/obj/machinery/light/cold/directional/south, +/obj/machinery/duct, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"kLw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/half, +/area/station/science/ordnance) +"kLx" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/light/warm/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/engineering/atmos/hfr_room) +"kLy" = ( +/obj/structure/plasticflaps/opaque{ + name = "Kitchen Deliveries" + }, +/obj/structure/window/spawner/directional/north, +/obj/structure/window/spawner/directional/south, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/kitchen) +"kLz" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/robotics/lab) +"kLD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"kLW" = ( +/obj/machinery/plumbing/ooze_sucker{ + mapping_id = "6" + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"kMl" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/obj/machinery/requests_console/auto_name/directional/north, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/machinery/light/small/directional/north, +/obj/machinery/computer/records/medical/laptop, +/turf/open/floor/iron/dark, +/area/station/medical/morgue) +"kMn" = ( +/turf/open/floor/wood, +/area/station/security/courtroom) +"kMq" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold/violet/visible{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"kMv" = ( +/turf/open/floor/glass, +/area/station/ai_monitored/turret_protected/ai) +"kMw" = ( +/obj/structure/table, +/obj/item/reagent_containers/condiment/enzyme{ + pixel_x = -10; + pixel_y = 16 + }, +/obj/item/reagent_containers/cup/rag{ + pixel_y = 10; + pixel_x = 7 + }, +/obj/item/reagent_containers/condiment/saltshaker{ + desc = "Salt. From space oceans, presumably. A staple of modern medicine."; + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/reagent_containers/condiment/peppermill{ + desc = "Often used to flavor food or make people sneeze. Fashionably moved to the left side of the table."; + pixel_x = -8 + }, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"kMD" = ( +/obj/effect/mapping_helpers/airlock/access/any/medical/surgery, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Primary Surgical Theatre" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/unres, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/surgery/theatre) +"kML" = ( +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/effect/turf_decal/siding/white, +/obj/machinery/computer/crew, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/medbay/lobby) +"kMS" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"kMW" = ( +/obj/effect/turf_decal/tile/dark_red/half{ + dir = 1 + }, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/dark/smooth_half, +/area/station/science/robotics/lab) +"kMZ" = ( +/turf/closed/wall, +/area/station/maintenance/port/greater) +"kNa" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/lunar_sand, +/obj/effect/turf_decal/lunar_sand/plating, +/obj/machinery/firealarm/directional/north, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"kNm" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/fish_feed{ + pixel_y = 12 + }, +/obj/item/fish_feed{ + pixel_y = 6; + pixel_x = 6 + }, +/obj/item/fish_feed{ + pixel_x = 2; + pixel_y = 18 + }, +/obj/item/bait_can/worm{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/bait_can/worm{ + pixel_y = -6; + pixel_x = 5 + }, +/turf/open/floor/wood, +/area/station/common/carpshop) +"kNp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/brig/entrance) +"kNw" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/item/defibrillator/loaded, +/obj/item/clothing/gloves/latex/nitrile, +/obj/item/clothing/gloves/latex/nitrile, +/obj/item/storage/belt/medical{ + pixel_y = 3 + }, +/obj/item/storage/belt/medical{ + pixel_y = 3 + }, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/effect/turf_decal/bot, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/storage) +"kNx" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/indigo, +/turf/open/space/openspace, +/area/space/nearstation) +"kNU" = ( +/obj/machinery/air_sensor/oxygen_tank, +/turf/open/floor/engine/o2, +/area/station/engineering/atmos) +"kNY" = ( +/obj/structure/sign/directions/evac/directional/south{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"kNZ" = ( +/obj/effect/turf_decal/lunar_sand, +/obj/effect/turf_decal/lunar_sand/plating, +/obj/machinery/camera/directional/south{ + c_tag = "MiniSat External North"; + network = list("minisat") + }, +/turf/open/floor/plating/airless, +/area/station/asteroid) +"kOd" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/openspace, +/area/station/security/prison/upper) +"kOA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/station/science/ordnance) +"kOC" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/box, +/obj/machinery/button/curtain{ + id = "frontbarbercurtains"; + pixel_x = 24 + }, +/obj/machinery/door/firedoor/border_only, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/camera/directional/east{ + c_tag = "Barbershop - Office"; + network = list("ss13","bar") + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/barber) +"kOF" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/digital_clock/directional/south, +/turf/open/floor/iron/dark/corner, +/area/station/commons/dorms) +"kOQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"kOR" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/structure/disposalpipe/segment, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/carpet, +/area/station/commons/vacant_room/office) +"kOX" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/openspace, +/area/station/hallway/primary/central) +"kPh" = ( +/obj/structure/girder, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/effect/spawner/structure/electrified_grille, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"kPr" = ( +/obj/machinery/door/airlock/virology/glass{ + name = "Isolation B" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/medical/virology, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/virology) +"kPv" = ( +/obj/structure/railing, +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/open/openspace, +/area/station/engineering/main) +"kPz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white, +/area/station/science/explab) +"kPC" = ( +/obj/machinery/door/airlock/hatch{ + name = "Maintenance Hatch" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"kPN" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"kPT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/station/service/chapel) +"kPY" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/openspace, +/area/station/maintenance/aft/greater) +"kQd" = ( +/obj/machinery/camera/directional/north{ + c_tag = "MiniSat AI Chamber South"; + network = list("aicore") + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/ai) +"kQr" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"kQt" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/turf_decal/tile/dark_red/half, +/turf/open/floor/iron/dark/smooth_half, +/area/station/science/robotics/lab) +"kQu" = ( +/obj/machinery/conveyor{ + dir = 10; + id = "mining" + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/cargo/office) +"kQv" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"kQx" = ( +/obj/structure/railing{ + dir = 9 + }, +/turf/open/openspace, +/area/station/medical/pharmacy) +"kQA" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/central/aft) +"kQK" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"kRe" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/neutral/anticorner{ + dir = 1 + }, +/turf/open/floor/iron/corner, +/area/station/commons/storage/mining) +"kRk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/nt_rep) +"kRo" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"kRu" = ( +/obj/machinery/door/airlock/hatch{ + name = "Maintenance Hatch" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"kRw" = ( +/obj/effect/turf_decal/bot, +/obj/item/storage/box/lights/mixed, +/obj/structure/closet/crate, +/obj/item/storage/belt/utility, +/obj/item/storage/toolbox/mechanical, +/obj/effect/spawner/random/maintenance/three, +/turf/open/floor/iron/large, +/area/station/cargo/storage) +"kRz" = ( +/obj/machinery/power/smes, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/maintenance/disposal/incinerator) +"kRC" = ( +/obj/structure/lattice, +/obj/structure/transit_tube/diagonal, +/turf/open/space/openspace, +/area/space/nearstation) +"kRE" = ( +/obj/machinery/door/poddoor/massdriver_chapel, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/station/service/chapel/funeral) +"kRF" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/light/cold/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/ai_monitored/command/nuke_storage) +"kRG" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/engineering/atmos/hfr_room) +"kRY" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -1; + pixel_y = 8 + }, +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/emergency{ + pixel_x = 3 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"kSm" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/turf/open/floor/glass/reinforced, +/area/station/security/warden) +"kSJ" = ( +/obj/machinery/growing/tray, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/service/hydroponics) +"kSK" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"kSP" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/recharge_station, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/primary/central/aft) +"kSV" = ( +/obj/effect/turf_decal/siding/white{ + dir = 6 + }, +/obj/structure/window/reinforced/tinted/frosted/spawner/directional/east, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/wood/parquet, +/area/station/medical/patients_rooms) +"kTg" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/structure/railing, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"kTh" = ( +/turf/closed/wall/r_wall, +/area/station/engineering/storage/tech) +"kTi" = ( +/obj/machinery/door/window/elevator/right/directional/south{ + elevator_mode = 1; + elevator_linked_id = "cargo_lobbylift" + }, +/obj/machinery/door/firedoor/border_only, +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/lobby) +"kTv" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/engineering/atmos/hfr_room) +"kTx" = ( +/turf/closed/wall/r_wall, +/area/station/medical/virology) +"kTz" = ( +/obj/structure/stairs/west, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"kTE" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics_shutters"; + name = "Robotics Privacy Shutters"; + dir = 1 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/science/robotics/lab) +"kTG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/wood/large, +/area/station/service/bar) +"kTN" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/mid_joiner{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/hydroponics) +"kUp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Arrivals Lounge" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/entry) +"kUt" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/hallway/primary/starboard) +"kUz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/portable_atmospherics/canister/anesthetic_mix, +/obj/effect/turf_decal/box, +/obj/machinery/atmospherics/components/unary/portables_connector{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/treatment_center) +"kUN" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/wood/tile, +/area/station/service/lawoffice) +"kUP" = ( +/obj/structure/table/wood, +/obj/item/book/bible, +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_red/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/service/chapel) +"kVl" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/machinery/holopad, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/item/wrench, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/science/server) +"kVp" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/structure/railing, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"kVz" = ( +/obj/structure/table, +/obj/item/paper/pamphlet/gateway{ + pixel_x = -1; + pixel_y = 3 + }, +/obj/item/paper/pamphlet/gateway{ + pixel_x = 6; + pixel_y = 10 + }, +/obj/item/paper/pamphlet/gateway{ + pixel_x = -5; + pixel_y = 7 + }, +/obj/item/paper/pamphlet/gateway{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/machinery/button/door/directional/south{ + id = "gatewaydoor"; + name = "Gateway Bolt Control"; + normaldoorcontrol = 1; + req_access = list("gateway"); + specialfunctions = 4 + }, +/obj/machinery/firealarm/directional/west, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron, +/area/station/command/gateway) +"kVD" = ( +/obj/structure/railing, +/obj/effect/turf_decal/bot, +/obj/structure/rack/shelf, +/obj/item/clothing/glasses/meson/engine{ + pixel_y = -4; + pixel_x = -4 + }, +/obj/item/clothing/glasses/meson/engine{ + pixel_x = -4 + }, +/obj/item/clothing/glasses/meson/engine{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/engineering/supermatter/room) +"kVG" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/stamp{ + pixel_x = 10; + pixel_y = 6 + }, +/obj/item/stamp/denied{ + pixel_x = 10 + }, +/turf/open/floor/iron/dark/smooth_half, +/area/station/cargo/office) +"kVW" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/secondary/exit) +"kWd" = ( +/obj/structure/table, +/obj/item/stack/cable_coil/five, +/obj/item/screwdriver, +/obj/effect/decal/cleanable/dirt, +/obj/item/grenade/firecracker{ + pixel_x = 3; + pixel_y = 14 + }, +/obj/item/grenade/firecracker{ + pixel_x = -3; + pixel_y = 9 + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"kWg" = ( +/obj/structure/sign/barber{ + pixel_x = 13 + }, +/turf/open/openspace, +/area/station/service/kitchen/diner) +"kWi" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/obj/effect/turf_decal/tile/dark/half/contrasted{ + dir = 1 + }, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"kWo" = ( +/obj/machinery/door/airlock/hatch{ + name = "Maintenance Hatch" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"kWr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/effect/turf_decal/tile/dark/diagonal_edge, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/execution/education) +"kWz" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/iron/white, +/area/station/science/xenobiology) +"kWJ" = ( +/obj/structure/table/glass, +/obj/item/gps/engineering{ + pixel_y = 6 + }, +/obj/item/binoculars, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/engineering/transit_tube) +"kWL" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + desc = "Controls the shutters in front of the prison wing."; + id = "brigprison"; + name = "Prison Wing Lockdown"; + pixel_y = -3; + req_access = list("brig") + }, +/obj/machinery/button/door{ + desc = "Controls the shutters over the cell windows."; + id = "tempbrigshutter"; + name = "Holding Cell Window Control"; + pixel_x = -6; + pixel_y = 7; + req_access = list("security") + }, +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/warden) +"kWP" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/station/engineering/main) +"kXd" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/bot, +/obj/machinery/camera/directional/west{ + c_tag = "Security - Equipment Room" + }, +/turf/open/floor/engine, +/area/station/security/lockers) +"kXk" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/engineering/atmos/office) +"kXm" = ( +/obj/machinery/computer/operating{ + name = "Robotics Operating Computer" + }, +/obj/effect/turf_decal/tile/dark_red/opposingcorners, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/iron/showroomfloor, +/area/station/science/robotics/augments) +"kXs" = ( +/turf/open/floor/iron/dark/smooth_half, +/area/station/cargo/storage) +"kXD" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold/general/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"kXU" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/central/aft) +"kYb" = ( +/obj/machinery/stasis{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue/full, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/treatment_center) +"kYf" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/science/ordnance) +"kYp" = ( +/obj/structure/table/wood, +/obj/item/taperecorder{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/flashlight/lamp/green{ + pixel_x = -7; + pixel_y = 12 + }, +/obj/item/restraints/handcuffs, +/turf/open/floor/wood/parquet, +/area/station/security/detectives_office) +"kYC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible, +/obj/machinery/meter, +/obj/effect/landmark/event_spawn, +/turf/open/floor/engine, +/area/station/engineering/main) +"kYD" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos/office) +"kYG" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/structure/sign/warning/docking, +/turf/open/floor/plating, +/area/station/security/corrections_officer) +"kYM" = ( +/obj/effect/spawner/random/structure/crate, +/obj/effect/spawner/random/maintenance/three, +/obj/machinery/light/small/directional/west, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"kYO" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/secure_closet/miner, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/camera/directional/east{ + c_tag = "Cargo - Mining Dock" + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) +"kYR" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/glass/reinforced, +/area/station/hallway/primary/central/fore) +"kYZ" = ( +/obj/structure/stairs/west, +/turf/open/floor/plating, +/area/station/science/xenobiology) +"kZe" = ( +/obj/structure/table, +/obj/item/radio/off{ + pixel_y = 6 + }, +/obj/item/radio/off{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/radio/off{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/radio/off, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/machinery/camera/directional/west{ + c_tag = "Bridge - Gateway" + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/command/gateway) +"kZf" = ( +/turf/open/floor/engine{ + name = "Holodeck Projector Floor" + }, +/area/station/holodeck/rec_center) +"kZk" = ( +/obj/structure/plasticflaps/opaque{ + name = "Atmospherics Deliveries" + }, +/turf/open/floor/iron/large, +/area/station/maintenance/port/fore) +"kZs" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 1 + }, +/obj/structure/table, +/obj/item/clothing/gloves/color/fyellow{ + pixel_y = 6 + }, +/obj/item/storage/belt/utility{ + pixel_y = -4 + }, +/obj/item/storage/belt/utility, +/obj/item/radio{ + pixel_x = -5; + pixel_y = -5 + }, +/obj/machinery/light/warm/directional/west, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/iron/dark, +/area/station/commons/storage/primary) +"kZL" = ( +/obj/effect/turf_decal/bot, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue/half, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/half, +/area/station/command/heads_quarters/hop) +"laa" = ( +/obj/structure/cable, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/machinery/flasher/directional/north{ + id = "AI"; + pixel_x = -22 + }, +/obj/machinery/power/apc/auto_name/directional/south{ + pixel_x = 25 + }, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/ai) +"laf" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"lag" = ( +/obj/machinery/door/airlock/engineering/glass/critical{ + heat_proof = 1; + name = "Supermatter Chamber" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "supermatter" + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"lai" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/service/hydroponics/upper) +"lak" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/structure/cable, +/obj/structure/railing, +/turf/open/floor/engine, +/area/station/engineering/main) +"lam" = ( +/obj/effect/turf_decal/siding/white{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/item/reagent_containers/cup/glass/waterbottle{ + pixel_y = 6; + pixel_x = -6 + }, +/obj/structure/table, +/obj/item/radio/intercom/directional/north, +/obj/machinery/light/warm/directional/west, +/turf/open/floor/wood/parquet, +/area/station/medical/patients_rooms) +"lat" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white/smooth_edge, +/area/station/medical/treatment_center) +"laB" = ( +/obj/item/clothing/head/cone{ + pixel_y = 6 + }, +/obj/effect/turf_decal/tile/red/real_red/opposingcorners{ + dir = 1 + }, +/obj/item/clothing/head/cone{ + pixel_x = 9; + pixel_y = -9 + }, +/turf/open/floor/iron/cafeteria, +/area/station/hallway/secondary/exit/escape_pod) +"laD" = ( +/obj/structure/table/glass, +/obj/machinery/computer/records/medical/laptop, +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/mid_joiner{ + dir = 1 + }, +/obj/machinery/light/cold/directional/west, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/white/smooth_large, +/area/station/security/medical) +"laE" = ( +/obj/effect/spawner/random/structure/crate, +/obj/effect/spawner/random/maintenance/eight, +/obj/effect/spawner/random/decoration/carpet, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"laM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/cargo/sorting) +"laO" = ( +/turf/open/space/basic, +/area/space) +"laS" = ( +/obj/effect/turf_decal/tile/purple/half{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/obj/machinery/computer/slime_market, +/turf/open/floor/iron/dark/smooth_half, +/area/station/science/xenobiology) +"laV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/command/gateway) +"laY" = ( +/obj/machinery/computer/teleporter, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/aisat/teleporter) +"lbF" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/item/kirbyplants/synthetic/plant28, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"lbK" = ( +/obj/structure/window/spawner/directional/north, +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/door/window/left/directional/west{ + name = "Service Deliveries"; + req_access = list("service") + }, +/obj/machinery/light/directional/south, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + location = "Service" + }, +/turf/open/floor/iron/large, +/area/station/hallway/secondary/service) +"lcb" = ( +/obj/effect/mapping_helpers/mail_sorting/service/theater, +/obj/structure/disposalpipe/sorting/mail/flip, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/tile, +/area/station/service/theater) +"lce" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/computer/atmos_control/nocontrol/master{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"lco" = ( +/obj/machinery/computer/atmos_control/mix_tank, +/obj/effect/turf_decal/box, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos/upper) +"lcv" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + name = "Engine Coolant Bypass"; + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"lcD" = ( +/obj/effect/spawner/random/structure/crate_abandoned, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"lcI" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/effect/landmark/start/chemist, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/medical/pharmacy) +"lcX" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/station/service/library/lounge) +"ldn" = ( +/obj/structure/lattice/catwalk, +/obj/structure/window/spawner/directional/east, +/obj/structure/window/spawner/directional/west, +/obj/structure/window/spawner/directional/north, +/obj/structure/marker_beacon/indigo, +/turf/open/openspace, +/area/station/security/brig/upper) +"ldq" = ( +/turf/closed/wall/r_wall, +/area/station/science/xenobiology/hallway) +"ldA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) +"ldC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit) +"ldK" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/vending/wardrobe/jani_wardrobe, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/service/janitor) +"ldM" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"ldO" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/external{ + name = "External Solar Access" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/open/floor/iron, +/area/station/maintenance/solars/starboard/fore) +"ldT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance/external/glass{ + name = "Lower Auxiliary Tool Storage" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/storage/tools) +"ldY" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/blue/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/cable/layer1, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/structure/cable/layer3, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/ai) +"leb" = ( +/obj/effect/landmark/event_spawn, +/obj/item/reagent_containers/cup/soup_pot, +/obj/item/food/grown/grass, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/service/kitchen/coldroom) +"lej" = ( +/obj/machinery/smoke_machine, +/turf/open/floor/plating, +/area/station/medical/chemistry) +"lex" = ( +/obj/structure/lattice, +/obj/item/stack/cable_coil/five, +/turf/open/space/basic, +/area/space/nearstation) +"ley" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/machinery/door/airlock/security{ + name = "Correction Officer Watch" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/corrections_officer) +"leN" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple/half{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/bitrunning/den) +"leT" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/primary/central/fore) +"leW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/cargo/storage) +"leY" = ( +/obj/machinery/telecomms/receiver/preset_left, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/station/tcommsat/server) +"lfi" = ( +/obj/effect/turf_decal/tile/dark_blue, +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/landmark/start/security_officer, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/security/office) +"lfs" = ( +/obj/structure/cable/multilayer/multiz, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/solars/port/aft) +"lfM" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/purple, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/white/side, +/area/station/science/ordnance/office) +"lfN" = ( +/obj/structure/flora/bush/jungle/c/style_random, +/obj/machinery/light/warm/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/turf_decal/weather/dirt, +/turf/open/floor/grass, +/area/station/medical/virology) +"lfS" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/box/white, +/obj/machinery/light/floor/has_bulb, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"lfV" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/turretid{ + control_area = "/area/station/ai_monitored/turret_protected/aisat_interior"; + name = "Antechamber Turret Control"; + req_access = list("minisat"); + pixel_y = -24 + }, +/obj/machinery/camera/motion/directional/south{ + c_tag = "MiniSat Antechamber"; + network = list("minisat") + }, +/mob/living/simple_animal/bot/secbot/pingsky, +/turf/open/floor/wood/large, +/area/station/tcommsat/computer) +"lgd" = ( +/obj/effect/turf_decal/tile/red/real_red{ + dir = 1 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/white/corner{ + dir = 4 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"lgn" = ( +/obj/item/clothing/suit/apron/chef{ + name = "Jim Norton's Quebecois Coffee apron"; + pixel_x = 16 + }, +/obj/item/clothing/head/soft/green{ + color = "#00a62e"; + desc = "It's a baseball hat in a tasteful green colour."; + name = "Jim Norton's Quebecois Coffee cap"; + pixel_x = 16 + }, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/carpet/green, +/area/station/hallway/secondary/exit/departure_lounge) +"lgq" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/light/small/directional/south, +/obj/structure/table/wood/fancy/green, +/obj/item/statuebust/hippocratic{ + pixel_y = 8 + }, +/turf/open/floor/wood, +/area/station/command/heads_quarters/nt_rep) +"lgx" = ( +/obj/machinery/atmospherics/components/unary/passive_vent{ + name = "server vent"; + dir = 4 + }, +/obj/machinery/rnd/server, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/station/science/server) +"lgC" = ( +/obj/machinery/corral_corner{ + mapping_id = "2" + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"lgE" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/service/hydroponics/upper) +"lgO" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/plating, +/area/station/cargo/storage) +"lgX" = ( +/turf/closed/wall/r_wall, +/area/station/security/checkpoint/engineering) +"lhf" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/box, +/obj/machinery/airalarm/directional/east, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/light/warm/directional/south, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos/hfr_room) +"lhh" = ( +/obj/item/radio/intercom/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/ai_monitored/turret_protected/aisat/maint) +"lhp" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay" + }, +/obj/effect/mapping_helpers/airlock/unres, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/obj/effect/mapping_helpers/airlock/access/any/medical/morgue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/medbay/lobby) +"lhq" = ( +/obj/structure/cable, +/obj/machinery/computer/turbine_computer, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark, +/area/station/maintenance/disposal/incinerator) +"lhu" = ( +/obj/structure/chair/sofa/bench/right, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/landmark/start/hangover, +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/entry) +"lhy" = ( +/obj/effect/spawner/random/structure/furniture_parts, +/obj/effect/spawner/random/engineering/flashlight, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"lhD" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/cup/beaker/cryoxadone{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/item/reagent_containers/cup/beaker/cryoxadone{ + pixel_x = 6; + pixel_y = 10 + }, +/obj/item/reagent_containers/cup/beaker/cryoxadone{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/reagent_containers/cup/beaker/cryoxadone{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/pill_bottle/mannitol, +/obj/item/reagent_containers/dropper{ + pixel_y = 6 + }, +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/treatment_center) +"lhE" = ( +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Cargo - Delivery Office" + }, +/obj/effect/turf_decal/stripes/box, +/obj/machinery/conveyor{ + id = "cargodisposals"; + dir = 5 + }, +/turf/open/floor/plating, +/area/station/cargo/sorting) +"lhF" = ( +/obj/machinery/atmospherics/pipe/smart/simple/brown/visible{ + dir = 10 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"lhI" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/service/hydroponics/garden) +"lhP" = ( +/obj/item/watertank/atmos, +/obj/structure/rack/shelf, +/obj/item/tank/internals/emergency_oxygen/engi/empty, +/obj/item/clothing/mask/gas, +/obj/item/clothing/glasses/meson, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"lhR" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/crayon{ + icon_state = "body" + }, +/obj/effect/mob_spawn/corpse/human/bartender, +/turf/open/floor/wood, +/area/station/maintenance/port/fore) +"liq" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Robotics Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/robotics, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/science/robotics/lab) +"lix" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/structure/table/reinforced, +/obj/item/ai_module/supplied/freeform{ + pixel_x = -2; + pixel_y = 8 + }, +/obj/item/ai_module/supplied/freeform, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/ai_monitored/turret_protected/ai_upload) +"liD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/item/radio/intercom/directional/west, +/obj/machinery/light/warm/directional/west, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"ljf" = ( +/obj/machinery/mecha_part_fabricator/maint, +/turf/open/floor/plating, +/area/station/science/research/abandoned) +"ljg" = ( +/obj/effect/turf_decal/tile/green/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/hallway/primary/central/fore) +"ljm" = ( +/obj/effect/mapping_helpers/mail_sorting/science/xenobiology, +/obj/effect/mapping_helpers/mail_sorting/science/research, +/obj/effect/mapping_helpers/mail_sorting/science/rd_office, +/obj/effect/mapping_helpers/mail_sorting/science/ordnance, +/obj/effect/mapping_helpers/mail_sorting/science/genetics, +/obj/effect/mapping_helpers/mail_sorting/science/experimentor_lab, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4 + }, +/obj/effect/mapping_helpers/mail_sorting/engineering/atmospherics, +/obj/effect/mapping_helpers/mail_sorting/engineering/ce_office, +/obj/effect/mapping_helpers/mail_sorting/engineering/general, +/obj/effect/mapping_helpers/mail_sorting/security/detectives_office, +/obj/effect/mapping_helpers/mail_sorting/security/general, +/obj/effect/mapping_helpers/mail_sorting/security/hos_office, +/obj/effect/mapping_helpers/mail_sorting/service/law_office, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"ljo" = ( +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"ljp" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/button/flasher{ + id = "holdingflash"; + pixel_x = -24; + pixel_y = -26 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/security/holding_cell) +"ljB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"ljC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 9 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"ljE" = ( +/obj/machinery/door/airlock{ + id_tag = "private_2"; + name = "Private Quarters 2" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms/room2) +"ljX" = ( +/obj/structure/stairs/west, +/turf/open/floor/plating, +/area/station/engineering/supermatter/room) +"lkb" = ( +/obj/effect/turf_decal/tile/green/opposingcorners, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/hallway/primary/central/fore) +"lkd" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green/half/contrasted, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"lkj" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/obj/structure/disposalpipe/junction, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white/diagonal, +/area/station/commons/toilet/auxiliary) +"lkn" = ( +/obj/structure/rack/shelf, +/obj/item/inducer{ + pixel_y = 5 + }, +/obj/item/inducer{ + pixel_x = 2 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"lkF" = ( +/obj/effect/spawner/random/engineering/tool, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"lkK" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/service/bar) +"lkM" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron, +/area/station/engineering/atmos/office) +"lkS" = ( +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/airlock/security/glass{ + name = "Transfer Center" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/medical) +"lkX" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=lowhall8"; + location = "lowhall7" + }, +/obj/effect/turf_decal/vg_decals/numbers/one, +/obj/effect/turf_decal/tile/red/real_red{ + dir = 4 + }, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"lle" = ( +/obj/structure/hedge, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/library) +"lli" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 6 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/openspace, +/area/space/nearstation) +"llp" = ( +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"llA" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner/directional/north, +/turf/open/floor/iron/stairs{ + dir = 8 + }, +/area/station/science/xenobiology) +"llT" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"lmh" = ( +/obj/effect/spawner/random/trash/cigbutt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"lmq" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/security/brig/entrance) +"lmy" = ( +/obj/effect/turf_decal/siding/dark_blue{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"lmC" = ( +/obj/structure/easel, +/obj/effect/decal/cleanable/dirt, +/obj/item/canvas/twentythree_twentythree{ + pixel_x = 3 + }, +/turf/open/floor/wood, +/area/station/maintenance/aft/greater) +"lmF" = ( +/obj/item/radio/intercom{ + broadcasting = 1; + listening = 0; + name = "Station Intercom (Court)" + }, +/obj/structure/table/reinforced, +/turf/open/floor/carpet/purple, +/area/station/security/courtroom) +"lmI" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"lmQ" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"lmZ" = ( +/obj/effect/turf_decal/tile/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red/real_red, +/turf/open/floor/iron/white/corner{ + dir = 4 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"lnf" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/station/maintenance/port/aft) +"lng" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"lnn" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "Atmospherics Blast Door" + }, +/turf/open/floor/plating, +/area/station/engineering/atmos/office) +"lnx" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark, +/area/station/commons/storage/primary) +"lnF" = ( +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/robotics/lab) +"lnQ" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/hallway/primary/central/aft) +"loi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/cargo/storage) +"lot" = ( +/turf/closed/wall, +/area/station/medical/patients_rooms) +"loE" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/brig/entrance) +"loF" = ( +/obj/machinery/conveyor{ + id = "mining"; + dir = 1 + }, +/turf/open/floor/plating, +/area/station/cargo/office) +"loO" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/machinery/holopad, +/obj/machinery/firealarm/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/cold/directional/west, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/security/brig/entrance) +"loS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/command/teleporter) +"loT" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/vending/tool, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark, +/area/station/commons/storage/primary) +"loZ" = ( +/obj/effect/turf_decal/box, +/obj/machinery/computer/atmos_control/oxygen_tank, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/light/warm/directional/east, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos/upper) +"lpc" = ( +/turf/closed/wall, +/area/station/ai_monitored/command/nuke_storage) +"lpd" = ( +/obj/structure/disposalpipe/trunk/multiz, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"lpi" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 5 + }, +/obj/effect/turf_decal/weather/snow, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/obj/structure/kitchenspike, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/service/kitchen/coldroom) +"lpo" = ( +/obj/structure/dresser, +/obj/item/flashlight/lamp/green{ + pixel_y = 16; + pixel_x = -6 + }, +/obj/effect/turf_decal/siding/wood, +/obj/item/toy/figure/captain{ + pixel_x = 6; + pixel_y = 14 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/wood/tile, +/area/station/command/heads_quarters/captain) +"lpx" = ( +/obj/structure/cable, +/obj/effect/turf_decal/caution{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/command/teleporter) +"lpy" = ( +/obj/machinery/door/airlock/hydroponics{ + name = "Hydroponics Bay" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/service/hydroponics, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/hydroponics/upper) +"lpC" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/maintenance/port/lesser) +"lpH" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) +"lpQ" = ( +/obj/effect/turf_decal/trimline/blue/end{ + dir = 1 + }, +/obj/effect/turf_decal/siding/white{ + dir = 5 + }, +/obj/machinery/shower/directional/north, +/obj/structure/drain, +/turf/open/floor/iron/white/small, +/area/station/medical/treatment_center) +"lqE" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/brig/entrance) +"lqY" = ( +/obj/structure/rack/shelf, +/obj/effect/spawner/random/maintenance/three, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"lrf" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/turf/open/floor/glass/reinforced, +/area/station/science/xenobiology) +"lrh" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"lrk" = ( +/obj/effect/turf_decal/tile/bar/half/contrasted, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/corner, +/area/station/service/kitchen/diner) +"lrs" = ( +/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/station/security/courtroom) +"lrI" = ( +/obj/structure/chair/sofa/left{ + color = "#462f1c" + }, +/turf/open/floor/carpet, +/area/station/medical/psychology) +"lrM" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"lrW" = ( +/obj/machinery/vending/mechcomp, +/turf/open/floor/iron, +/area/station/engineering/atmos/office) +"lsa" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/holopad, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/maintenance/disposal/incinerator) +"lsc" = ( +/obj/docking_port/stationary{ + dheight = 4; + dwidth = 4; + height = 9; + name = "SS13: Aux Base Zone"; + roundstart_template = /datum/map_template/shuttle/aux_base/default; + shuttle_id = "aux_base_zone"; + width = 9; + dir = 8 + }, +/turf/open/floor/plating, +/area/station/construction/mining/aux_base) +"lsp" = ( +/obj/effect/turf_decal/tile/blue, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"lsA" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"lsF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/hidden, +/obj/effect/spawner/random/maintenance/two, +/obj/effect/decal/cleanable/dirt, +/obj/item/stock_parts/capacitor, +/obj/structure/rack/shelf, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"lsM" = ( +/obj/machinery/light/blacklight/directional/west, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"lsO" = ( +/obj/effect/turf_decal/tile/green/opposingcorners, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/hallway/primary/central/fore) +"lsP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/tile/dark_red, +/turf/open/floor/iron/dark/smooth_corner, +/area/station/science/robotics/lab) +"ltl" = ( +/obj/effect/turf_decal/siding/white, +/obj/machinery/newscaster/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/commons/dorms) +"ltn" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/dark, +/area/station/common/laser_tag) +"ltF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible, +/obj/machinery/atmospherics/pipe/smart/simple/violet/visible{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"ltH" = ( +/obj/effect/spawner/random/mod/maint, +/obj/item/stack/sheet/cardboard, +/obj/structure/rack/shelf, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"ltI" = ( +/obj/effect/turf_decal/box, +/obj/machinery/computer/mech_bay_power_console, +/obj/effect/turf_decal/tile/dark_red{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron/dark/side, +/area/station/science/robotics/mechbay) +"ltJ" = ( +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/cafeteria{ + dir = 5 + }, +/area/station/service/kitchen/diner) +"ltR" = ( +/obj/effect/turf_decal/trimline/dark_red/arrow_cw, +/obj/effect/turf_decal/tile/dark_red{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/security/prison) +"ltV" = ( +/obj/structure/trash_pile, +/obj/effect/spawner/random/trash/food_packaging, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"lua" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 6 + }, +/turf/open/floor/plating, +/area/station/engineering/atmos) +"lue" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/station/service/abandoned_gambling_den) +"luj" = ( +/obj/machinery/light/small/directional/south, +/obj/machinery/corral_corner{ + mapping_id = "1" + }, +/obj/machinery/slime_pen_controller{ + mapping_id = "1"; + dir = 2 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"lux" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/library) +"luA" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/bitrunning/den) +"luC" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/wood, +/area/station/service/library/lounge) +"luG" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "AI Upload Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/locked, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/ai_monitored/turret_protected/ai_upload) +"luT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/science/ordnance) +"luW" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/iron/white/corner, +/area/station/hallway/primary/central) +"lvl" = ( +/obj/effect/mapping_helpers/mail_sorting/supply/qm_office, +/obj/structure/disposalpipe/sorting/mail, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"lvy" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/structure/table/reinforced, +/obj/item/ai_module/reset{ + pixel_x = 2; + pixel_y = 8 + }, +/obj/item/ai_module/reset/purge, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/ai_monitored/turret_protected/ai_upload) +"lvD" = ( +/obj/structure/lattice, +/obj/structure/railing{ + dir = 6 + }, +/obj/structure/window/spawner/directional/west, +/obj/structure/window/spawner/directional/east, +/obj/structure/window/spawner/directional/south, +/turf/open/openspace, +/area/station/service/hydroponics/upper) +"lvU" = ( +/obj/effect/turf_decal/lunar_sand, +/obj/effect/turf_decal/lunar_sand/plating, +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/plating/airless, +/area/station/asteroid) +"lwb" = ( +/obj/effect/turf_decal/tile/green/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/airalarm/directional/west, +/obj/structure/sign/poster/official/jim_nortons/directional/west, +/turf/open/floor/iron/checker{ + dir = 1 + }, +/area/station/common/wrestling/arena) +"lwm" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/blue/line{ + dir = 8 + }, +/obj/machinery/camera/directional/east{ + c_tag = "Security - Firing Range" + }, +/turf/open/floor/iron/dark, +/area/station/security/range) +"lwt" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/ordnance/office) +"lwz" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/side, +/area/station/hallway/primary/starboard) +"lwX" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/corner, +/area/station/hallway/secondary/recreation) +"lxc" = ( +/obj/machinery/light/cold/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"lxd" = ( +/obj/effect/turf_decal/siding/white{ + dir = 6 + }, +/obj/structure/table/reinforced, +/obj/machinery/light/warm/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/item/storage/fancy/coffee_cart_rack{ + pixel_x = -8; + pixel_y = 6 + }, +/obj/effect/spawner/random/food_or_drink/donkpockets{ + pixel_x = 4; + pixel_y = 6 + }, +/turf/open/floor/wood/large, +/area/station/medical/break_room) +"lxo" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction/flip, +/turf/open/floor/iron/white, +/area/station/hallway/primary/central/fore) +"lxs" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/obj/machinery/light/cold/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/ai_monitored/command/nuke_storage) +"lxv" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/cryo_cell, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/treatment_center) +"lxN" = ( +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/common/laser_tag) +"lxS" = ( +/obj/effect/turf_decal/box/blue, +/turf/open/floor/engine, +/area/station/engineering/atmos/hfr_room) +"lxW" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/effect/turf_decal/lunar_sand, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"lxY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/grass, +/area/station/service/hydroponics/garden) +"lyh" = ( +/obj/effect/turf_decal/tile/green, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/commons/dorms) +"lyo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/camera/directional/east{ + c_tag = "Science - Server Room"; + network = list("ss13","rd") + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/science/server) +"lyq" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"lyw" = ( +/turf/closed/wall/r_wall, +/area/station/command/bridge) +"lyU" = ( +/obj/structure/cable, +/obj/effect/spawner/random/structure/table_or_rack, +/obj/effect/spawner/random/engineering/tool, +/turf/open/floor/plating, +/area/station/maintenance/starboard/lesser) +"lza" = ( +/obj/structure/bed/maint, +/obj/machinery/light/small/broken/directional/north, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/iron/dark/small, +/area/station/security/prison) +"lzc" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/item/flashlight/lamp{ + pixel_x = -6; + pixel_y = 14 + }, +/obj/effect/spawner/random/food_or_drink/donkpockets{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/item/paper_bin{ + pixel_x = -10 + }, +/obj/item/pen{ + pixel_x = -10 + }, +/obj/item/radio/headset/headset_srv{ + pixel_x = 11; + pixel_y = 4 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/dark/diagonal, +/area/station/hallway/secondary/service) +"lzf" = ( +/obj/machinery/door/airlock/hatch{ + name = "Maintenance Hatch" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"lzn" = ( +/obj/effect/spawner/random/engineering/canister, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"lzq" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/turf/open/floor/plating, +/area/station/engineering/atmos) +"lzO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/item/radio/intercom/directional/south, +/obj/machinery/light/warm/directional/south, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"lzZ" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/command/meeting_room/council) +"lAm" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/common/wrestling/arena) +"lAu" = ( +/obj/effect/turf_decal/tile/dark_red{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/service/chapel/funeral) +"lAw" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"lAz" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/paramedic) +"lAB" = ( +/obj/machinery/power/emitter, +/turf/open/floor/plating, +/area/station/engineering/storage_shared) +"lAJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/central/aft) +"lAR" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/chair/wood{ + dir = 1 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/wood/tile, +/area/station/commons/lounge) +"lAU" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "sci-entrance" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/general, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/machinery/door/airlock/research{ + name = "Research and Development Lab" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/research) +"lBk" = ( +/obj/effect/turf_decal/siding/dark_blue{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/command/meeting_room/council) +"lBl" = ( +/obj/structure/chair/sofa/left{ + color = "2c2c2c" + }, +/turf/open/floor/carpet, +/area/station/commons/dorms) +"lBp" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Drone Bay Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/supply/general, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/cargo/drone_bay) +"lBs" = ( +/obj/structure/table, +/obj/item/wrench, +/obj/item/crowbar, +/turf/open/floor/iron/large, +/area/station/service/hydroponics) +"lBx" = ( +/obj/effect/turf_decal/siding/green/end{ + dir = 8 + }, +/obj/structure/reagent_dispensers/watertank/high, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/warning, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/hydroponics) +"lBB" = ( +/obj/structure/stairs/east, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/engineering/supermatter/room) +"lBK" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/central/lesser) +"lBN" = ( +/obj/effect/turf_decal/tile/dark_blue/half{ + dir = 1 + }, +/obj/structure/chair, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron/dark/smooth_half, +/area/station/security/interrogation) +"lBU" = ( +/turf/closed/wall/r_wall, +/area/station/hallway/secondary/command) +"lBY" = ( +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"lCk" = ( +/obj/item/kirbyplants/organic/plant21, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/aisat/equipment) +"lCv" = ( +/obj/machinery/computer/operating{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue/half{ + dir = 1 + }, +/obj/machinery/button/door/directional/south{ + id = "main_surgery"; + name = "privacy shutters control" + }, +/obj/effect/turf_decal/box/white, +/turf/open/floor/iron/dark/smooth_half, +/area/station/medical/surgery/theatre) +"lCL" = ( +/obj/structure/closet/crate/large, +/obj/effect/spawner/random/entertainment/plushie, +/obj/effect/spawner/random/entertainment/plushie, +/obj/effect/spawner/random/entertainment/plushie, +/obj/effect/spawner/random/entertainment/plushie, +/obj/effect/spawner/random/entertainment/plushie, +/turf/open/floor/plating, +/area/station/maintenance/central) +"lCO" = ( +/obj/effect/spawner/random/trash/garbage{ + spawn_scatter_radius = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"lCS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/common/cryopods) +"lCT" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/warm/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/computer/order_console/bitrunning, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"lCY" = ( +/obj/machinery/status_display/evac/directional/west, +/obj/machinery/light/directional/west, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red/real_red{ + dir = 1 + }, +/turf/open/floor/iron/white/corner{ + dir = 8 + }, +/area/station/hallway/secondary/exit/escape_pod) +"lDa" = ( +/obj/structure/table, +/obj/item/toy/cards/deck/wizoff{ + pixel_x = -7 + }, +/obj/item/toy/cards/deck/kotahi{ + pixel_x = 5 + }, +/obj/effect/turf_decal/tile/dark/full, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/prison) +"lDh" = ( +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/machinery/atmospherics/components/binary/valve/digital/on{ + dir = 4; + name = "Infiltrate Control" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos/hfr_room) +"lDi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/tcommsat/computer) +"lDz" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack/shelf, +/obj/item/pipe_dispenser{ + pixel_x = -1; + pixel_y = 2 + }, +/obj/item/pipe_dispenser{ + pixel_y = -2 + }, +/obj/item/pipe_dispenser{ + pixel_y = -6; + pixel_x = 1 + }, +/obj/machinery/firealarm/directional/south, +/obj/machinery/light/warm/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/engineering/supermatter/room) +"lDE" = ( +/obj/effect/turf_decal/tile/green, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/commons/dorms) +"lDL" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/item/kirbyplants/synthetic/plant29, +/turf/open/floor/iron/white, +/area/station/medical/pharmacy) +"lDX" = ( +/obj/structure/sign/painting/library{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/chair/wood{ + dir = 8 + }, +/turf/open/floor/carpet/green, +/area/station/service/library) +"lEe" = ( +/obj/structure/sink/directional/east, +/obj/structure/mirror/directional/west, +/obj/effect/turf_decal/siding/white{ + dir = 10 + }, +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/white/diagonal, +/area/station/commons/toilet/auxiliary) +"lEq" = ( +/obj/structure/rack/gunrack, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/requests_console/auto_name/directional/south, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/mapping_helpers/requests_console/information, +/obj/machinery/camera/motion/directional/south{ + c_tag = "Security - Armory" + }, +/obj/effect/spawner/random/armory/disablers, +/turf/open/floor/engine, +/area/station/ai_monitored/security/armory) +"lEB" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"lEC" = ( +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/airlock/engineering{ + name = "Starboard Quarter Solar Access" + }, +/obj/effect/mapping_helpers/airlock/unres, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/solars/starboard/aft) +"lEH" = ( +/obj/machinery/button/elevator/directional/north{ + id = "engi_SMlift"; + req_access = list("engineering") + }, +/obj/machinery/camera/directional/north{ + c_tag = "Engineering - Supermatter Chamber Port"; + network = list("ss13","engine"); + dir = 9 + }, +/turf/open/floor/engine, +/area/station/engineering/main) +"lFd" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"lFg" = ( +/obj/effect/turf_decal/tile/yellow/half{ + dir = 1 + }, +/obj/machinery/reagentgrinder{ + pixel_y = 9 + }, +/obj/item/stack/sheet/mineral/plasma{ + pixel_x = 6 + }, +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/smooth_edge{ + dir = 1 + }, +/area/station/medical/pharmacy) +"lFJ" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"lFV" = ( +/obj/effect/turf_decal/tile/blue/full, +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/treatment_center) +"lGh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"lGl" = ( +/obj/machinery/prisongate, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/window/preopen{ + dir = 4; + id = "brigprison"; + name = "Prison Gate Shutters" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/prison) +"lGm" = ( +/obj/machinery/requests_console/auto_name/directional/north, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/mapping_helpers/requests_console/information, +/obj/effect/mapping_helpers/requests_console/announcement, +/obj/structure/closet/secure_closet/freezer/cream_pie, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/service/theater) +"lGt" = ( +/obj/effect/turf_decal/tile/green/opposingcorners, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/hallway/primary/central) +"lGL" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/medical/psychology) +"lGO" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/service/barber) +"lGW" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/science/xenobiology/hallway) +"lHb" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/space, +/area/station/solars/starboard/aft) +"lHd" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/machinery/light/cold/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/escape) +"lHr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/department/security/lower) +"lHD" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/white/smooth_edge{ + dir = 8 + }, +/area/station/medical/treatment_center) +"lHJ" = ( +/obj/structure/table/glass, +/obj/item/storage/box/monkeycubes{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/storage/box/monkeycubes{ + pixel_x = 4 + }, +/obj/item/storage/box/syringes{ + pixel_x = 4 + }, +/obj/item/storage/box/beakers{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/gps/science{ + gpstag = "XENO0"; + pixel_y = 5; + pixel_x = -8 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/xenobiology) +"lHL" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/structure/closet{ + name = "brig officer's locker" + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/machinery/light/small/blacklight/directional/south, +/turf/open/floor/iron/dark, +/area/station/security/evidence) +"lHO" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/department/science/xenobiology) +"lHY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/machinery/light/warm/directional/north, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"lIe" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/starboard/lesser) +"lIm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/light/directional/south, +/obj/machinery/atm/directional/south, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/departure_lounge) +"lIJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"lIW" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central) +"lJh" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/command/captain, +/obj/machinery/door/airlock/corporate{ + id_tag = "BSdoor"; + name = "Blueshield's Office" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/blueshield) +"lJk" = ( +/obj/machinery/holopad/secure, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/small, +/area/station/medical/surgery/aft) +"lJr" = ( +/obj/effect/turf_decal/tile/blue/full, +/obj/effect/turf_decal/tile/dark_blue/full, +/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/bridge) +"lJu" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/machinery/atmospherics/pipe/multiz/supply/visible{ + dir = 4 + }, +/obj/structure/cable/multilayer/multiz, +/turf/open/floor/plating, +/area/station/tcommsat/server) +"lJz" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/hallway/primary/central) +"lJH" = ( +/obj/machinery/camera/directional/east{ + c_tag = "Security - Prisoner Prep"; + network = list("ss13","prison") + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/holding_cell) +"lJK" = ( +/obj/effect/turf_decal/stripes/blue/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull, +/area/space/nearstation) +"lJU" = ( +/turf/closed/wall/r_wall, +/area/station/hallway/secondary/entry) +"lKa" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_half, +/area/station/ai_monitored/turret_protected/aisat_interior) +"lKe" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/small/red/directional/south, +/turf/open/floor/iron/dark, +/area/station/service/chapel/funeral) +"lKt" = ( +/obj/structure/trash_pile, +/turf/open/floor/plating, +/area/station/maintenance/department/security/upper) +"lKw" = ( +/obj/machinery/digital_clock/directional/north, +/obj/effect/turf_decal/box/blue, +/obj/machinery/fishing_portal_generator, +/turf/open/floor/plastic, +/area/station/common/carpshop) +"lKS" = ( +/obj/machinery/button/elevator/directional/north{ + id = "arrivals_lift" + }, +/obj/machinery/camera/directional/north{ + c_tag = "Port Primary Hallway - Port" + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/primary/port) +"lKU" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/door/airlock/science{ + name = "Xenobiology Pens" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/xenobiology) +"lKY" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/machinery/door/airlock/security/glass{ + name = "EVA Equipment" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/eva) +"lLc" = ( +/obj/structure/table, +/obj/item/storage/medkit/regular, +/obj/item/storage/backpack/satchel/explorer{ + pixel_y = -10 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) +"lLw" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/science/genetics, +/obj/machinery/door/airlock/medical{ + name = "Genetics Lab" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/genetics) +"lLC" = ( +/obj/effect/turf_decal/tile/blue/full, +/obj/structure/table/glass, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/treatment_center) +"lLD" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/structure/rack/shelf, +/obj/item/radio/intercom/directional/north, +/obj/item/gps{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/gps{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_y = -6 + }, +/turf/open/floor/iron/dark, +/area/station/commons/storage/primary) +"lLG" = ( +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/iron/white/side{ + dir = 10 + }, +/area/station/science/ordnance) +"lLM" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/light/warm/directional/east, +/obj/structure/ore_box, +/turf/open/floor/iron/large, +/area/station/cargo/miningoffice) +"lLW" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central) +"lMa" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/girder/reinforced, +/turf/open/floor/iron/dark/smooth_large, +/area/station/common/laser_tag) +"lMc" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/chair/sofa/corner{ + dir = 4; + color = "#DE3A3A" + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/wood/tile, +/area/station/commons/lounge) +"lMg" = ( +/obj/machinery/firealarm/directional/north, +/obj/structure/table/glass, +/obj/item/computer_disk{ + pixel_y = 4; + pixel_x = -3 + }, +/obj/item/computer_disk{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/item/computer_disk{ + pixel_x = -3 + }, +/obj/item/book/manual/wiki/ordnance{ + pixel_x = 15; + pixel_y = 3 + }, +/obj/item/computer_disk/ordnance{ + pixel_x = 5; + pixel_y = -1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/ordnance/office) +"lMk" = ( +/obj/machinery/door/airlock/hatch{ + name = "Maintenance Hatch" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"lMy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/science/research) +"lMz" = ( +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Security Desk Maintenance" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/brig/entrance) +"lMC" = ( +/obj/structure/table/reinforced, +/obj/item/flashlight/seclite, +/obj/item/folder/red{ + pixel_x = 12; + pixel_y = 3 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/office) +"lMK" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/camera/directional/west{ + c_tag = "Bridge - Consultant Office" + }, +/obj/structure/displaycase/trophy, +/turf/open/floor/carpet/green, +/area/station/command/heads_quarters/nt_rep) +"lMU" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/iron/dark/corner, +/area/station/commons/dorms) +"lNk" = ( +/turf/closed/wall/r_wall, +/area/station/command/meeting_room/council) +"lNm" = ( +/obj/item/kirbyplants/organic/plant2, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/station/commons/vacant_room/office) +"lNp" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"lNq" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/space/basic, +/area/space/nearstation) +"lNF" = ( +/obj/structure/chair/pew/left, +/turf/open/floor/iron/chapel{ + dir = 8 + }, +/area/station/service/chapel) +"lNI" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Ordnance Lab Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/science/ordnance) +"lNT" = ( +/obj/structure/hedge, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "kitchen_privacy"; + name = "Kitchen Privacy Shutters" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/cafeteria{ + dir = 5 + }, +/area/station/service/kitchen) +"lOa" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"lOg" = ( +/obj/structure/table, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/item/storage/medkit/brute{ + pixel_y = 6; + pixel_x = 12 + }, +/obj/item/toy/dodgeball{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/toy/dodgeball{ + pixel_x = -6 + }, +/turf/open/floor/iron, +/area/station/common/wrestling/arena) +"lOp" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"lOw" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible{ + dir = 1 + }, +/turf/open/space/openspace, +/area/space/nearstation) +"lOx" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/station/service/library/lounge) +"lOQ" = ( +/obj/structure/transit_tube/crossing/horizontal, +/obj/structure/lattice, +/turf/open/space/openspace, +/area/space/nearstation) +"lOV" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron, +/area/station/maintenance/department/security/upper) +"lOX" = ( +/obj/structure/closet/radiation, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/station/maintenance/disposal/incinerator) +"lPf" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 10 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/engineering/atmos/hfr_room) +"lPg" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, +/turf/open/space/openspace, +/area/space/nearstation) +"lPh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/landmark/start/botanist, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/hydroponics) +"lPi" = ( +/obj/structure/grille/broken, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"lPl" = ( +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/service/janitor) +"lPs" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/iron/cafeteria{ + dir = 8 + }, +/area/station/common/cryopods) +"lPx" = ( +/obj/structure/chair/office/light, +/obj/effect/turf_decal/tile/dark_red/half{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/science/robotics/lab) +"lPJ" = ( +/obj/structure/girder, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/effect/spawner/structure/electrified_grille, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"lQj" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron, +/area/station/maintenance/port/lesser) +"lQk" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/medical/treatment_center) +"lQr" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/command) +"lQL" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"lQP" = ( +/obj/effect/turf_decal/siding/white{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/structure/bed{ + dir = 1 + }, +/obj/item/bedsheet/medical{ + dir = 1 + }, +/turf/open/floor/wood/parquet, +/area/station/medical/patients_rooms) +"lRp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/engineering/atmos/hfr_room) +"lRw" = ( +/obj/effect/turf_decal/tile/dark_blue/half, +/obj/item/kirbyplants/synthetic/plant27, +/turf/open/floor/iron/dark/smooth_half, +/area/station/security/interrogation) +"lRG" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Desk" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/medbay/lobby) +"lRJ" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Robotics Surgery Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/robotics, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/science/robotics/augments) +"lRK" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 1 + }, +/area/station/command/bridge) +"lSc" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/security/range) +"lSf" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"lSi" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_y = 3; + pixel_x = -14 + }, +/obj/item/pen{ + pixel_x = -14; + pixel_y = 4 + }, +/obj/item/clothing/glasses/meson{ + pixel_y = 7 + }, +/obj/item/reagent_containers/pill/patch/aiuri, +/obj/item/lighter{ + pixel_x = 12 + }, +/turf/open/floor/carpet/black, +/area/station/command/heads_quarters/ce) +"lSo" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"lSs" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"lSt" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/effect/spawner/random/maintenance/two, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"lSv" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"lSE" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/machinery/fax{ + fax_name = "Medical Bay Desk"; + name = "Medical Bay Desk Fax Machine" + }, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/turf_decal/siding/white{ + dir = 5 + }, +/obj/effect/turf_decal/siding/white/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/medbay/lobby) +"lSH" = ( +/obj/machinery/light/small/directional/east, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"lSJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/door/airlock/maintenance/external{ + name = "Paperwork Storage" + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"lSK" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/atmospheric_technician, +/turf/open/floor/iron, +/area/station/engineering/atmos/storage) +"lSL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"lSM" = ( +/obj/effect/spawner/random/structure/girder, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"lSN" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/vacuum/external, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"lSP" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/security/range) +"lSV" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/turf/open/floor/glass, +/area/station/service/kitchen) +"lSW" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/primary/central/fore) +"lTf" = ( +/obj/structure/closet/crate/coffin, +/obj/machinery/door/window/left/directional/north{ + name = "Coffin Storage"; + req_access = list("chapel_office") + }, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/chapel/funeral) +"lTg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet, +/area/station/medical/psychology) +"lTi" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_red/half{ + dir = 1 + }, +/obj/machinery/button/door/directional/north{ + id = "robotics_shutters"; + name = "Robotics Privacy Shuttles Control"; + pixel_x = 24; + req_access = list("robotics") + }, +/turf/open/floor/iron/dark/smooth_half, +/area/station/science/robotics/lab) +"lTk" = ( +/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, +/obj/machinery/door/airlock/maintenance{ + name = "Carp Pro Shop Desk" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/common/carpshop) +"lTm" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/commons/storage/tools) +"lTC" = ( +/obj/machinery/telecomms/bus/preset_two, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/station/tcommsat/server) +"lTE" = ( +/obj/machinery/light_switch/directional/south, +/turf/open/floor/iron, +/area/station/common/laser_tag) +"lTJ" = ( +/obj/structure/chair/pew/left, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/iron/chapel{ + dir = 8 + }, +/area/station/service/chapel) +"lTM" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"lTU" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/library) +"lTV" = ( +/obj/machinery/gulag_item_reclaimer{ + pixel_y = 28 + }, +/obj/machinery/recharger, +/obj/structure/table, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/dark, +/area/station/security/processing) +"lTY" = ( +/turf/closed/wall, +/area/station/engineering/storage/tech) +"lUa" = ( +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"lUb" = ( +/obj/effect/spawner/random/trash/mess, +/obj/item/storage/box, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"lUl" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/science/research) +"lUo" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"lUp" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/vending/engivend, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/station/engineering/storage) +"lUt" = ( +/obj/effect/turf_decal/lunar_sand, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"lUG" = ( +/obj/machinery/air_sensor/mix_tank, +/turf/open/floor/engine/vacuum, +/area/station/engineering/atmos/upper) +"lUI" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 9 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"lUS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light/floor/has_bulb, +/obj/effect/turf_decal/trimline/neutral, +/obj/effect/turf_decal/trimline/neutral, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"lVb" = ( +/obj/effect/turf_decal/tile/green/opposingcorners, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron, +/area/station/service/hydroponics/upper) +"lVo" = ( +/obj/structure/closet/crate/freezer/surplus_limbs, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/showroomfloor, +/area/station/medical/coldroom) +"lVz" = ( +/obj/effect/turf_decal/tile/red/real_red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"lVI" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/hallway/primary/port) +"lVK" = ( +/obj/structure/hedge, +/obj/structure/window/fulltile, +/turf/open/floor/iron/dark/smooth_large, +/area/station/common/wrestling/arena) +"lWk" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/machinery/firealarm/directional/south, +/obj/machinery/camera/directional/south{ + c_tag = "Medbay - Private Psychology Office"; + network = list("ss13","medbay") + }, +/turf/open/floor/wood/tile, +/area/station/medical/psychology) +"lWp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/chief_engineer, +/turf/open/floor/carpet/black, +/area/station/command/heads_quarters/ce) +"lWr" = ( +/obj/structure/hedge, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/window/fulltile, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/entry) +"lWw" = ( +/obj/machinery/airalarm/directional/east, +/obj/machinery/gbp_redemption{ + pixel_y = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/cargo/lobby) +"lWD" = ( +/obj/effect/mapping_helpers/burnt_floor, +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"lWF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"lWS" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible, +/turf/open/floor/engine, +/area/station/science/ordnance) +"lWW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/security/brig) +"lWY" = ( +/obj/structure/stairs/south, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/hallway/primary/starboard) +"lXa" = ( +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) +"lXb" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/iron/stairs{ + dir = 8 + }, +/area/station/service/salon) +"lXd" = ( +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted, +/turf/open/floor/iron/dark, +/area/station/medical/morgue) +"lXf" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/cargo/drone_bay) +"lXh" = ( +/obj/structure/table/glass, +/obj/item/plate, +/obj/item/food/jelliedtoast/slime{ + pixel_y = 1 + }, +/obj/machinery/light/warm/directional/east, +/turf/open/floor/glass/reinforced, +/area/station/science/xenobiology) +"lXl" = ( +/obj/effect/mapping_helpers/burnt_floor, +/obj/structure/easel, +/obj/item/canvas/twentyfour_twentyfour, +/turf/open/floor/wood, +/area/station/maintenance/aft/greater) +"lXp" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) +"lXA" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"lXH" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"lXP" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"lXX" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/iron/dark, +/area/station/maintenance/disposal/incinerator) +"lYb" = ( +/turf/closed/wall, +/area/station/security/checkpoint/customs) +"lYh" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"lYr" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/table, +/obj/item/storage/pill_bottle/happinesspsych{ + pixel_x = -5 + }, +/obj/item/storage/pill_bottle/psicodine{ + pixel_x = 5 + }, +/obj/effect/spawner/random/medical/injector, +/turf/open/floor/plating, +/area/station/maintenance/abandon_surgery) +"lYA" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/small, +/area/station/science/robotics/lab) +"lYC" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 10 + }, +/turf/open/floor/grass, +/area/station/science/genetics) +"lYG" = ( +/obj/effect/turf_decal/tile/blue/full, +/obj/effect/turf_decal/box/white, +/obj/machinery/computer/upload/ai{ + dir = 4 + }, +/obj/machinery/flasher/directional/south{ + id = "AI" + }, +/turf/open/floor/iron/large, +/area/station/ai_monitored/turret_protected/ai_upload) +"lYH" = ( +/obj/structure/trash_pile, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"lYI" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron/cafeteria{ + dir = 8 + }, +/area/station/service/salon) +"lZc" = ( +/obj/effect/spawner/random/structure/crate, +/obj/effect/spawner/random/maintenance/three, +/turf/open/floor/iron, +/area/station/maintenance/port/lesser) +"lZf" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/siding/wood/end{ + dir = 8 + }, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"lZi" = ( +/obj/structure/transit_tube/curved/flipped{ + dir = 1 + }, +/obj/structure/lattice, +/turf/open/space/openspace, +/area/space/nearstation) +"lZm" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/white/side{ + dir = 1 + }, +/area/station/hallway/primary/starboard) +"lZo" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible/layer2, +/turf/open/floor/engine, +/area/station/science/ordnance) +"lZx" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/science/xenobiology) +"lZK" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"lZN" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/iron/white/smooth_edge{ + dir = 4 + }, +/area/station/medical/treatment_center) +"lZR" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/command) +"lZS" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral/full, +/obj/effect/spawner/random/maintenance/four, +/obj/structure/rack/shelf, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron/dark/smooth_large, +/area/station/maintenance/aft/greater) +"lZY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/station/service/library/lounge) +"mag" = ( +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/machinery/firealarm/directional/west, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/security/execution/education) +"maj" = ( +/obj/structure/transit_tube/station/dispenser/reverse{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/engineering/transit_tube) +"mao" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/engineering/supermatter/room) +"mau" = ( +/obj/structure/stairs/south, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"maD" = ( +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmoshpherics Maintenance Access" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos/upper) +"maU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/firealarm/directional/west, +/obj/machinery/light/warm/directional/north, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"mbf" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/table/wood, +/turf/open/floor/wood/tile, +/area/station/commons/lounge) +"mbg" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/chair/office{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/tcommsat/computer) +"mbl" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/checkpoint/service) +"mbm" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/item/radio{ + desc = "An old handheld radio. You could use it, if you really wanted to."; + icon_state = "radio"; + name = "old radio"; + pixel_x = -14; + pixel_y = 17 + }, +/obj/structure/sign/warning/yes_smoking/circle/directional/north, +/turf/open/floor/iron/vaporwave, +/area/station/maintenance/department/security/upper) +"mbp" = ( +/obj/structure/chair/comfy{ + color = "#596479"; + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) +"mbq" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"mbv" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/bar/fourcorners, +/obj/effect/landmark/start/hangover, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/checker, +/area/station/service/kitchen/diner) +"mbx" = ( +/obj/structure/bed/double{ + dir = 4 + }, +/obj/effect/spawner/random/bedsheet/double{ + dir = 1 + }, +/turf/open/floor/wood, +/area/station/commons/dorms/room6) +"mby" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/spawner/random/structure/closet_private, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/commons/dorms/room6) +"mbC" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/rack, +/obj/structure/cable, +/obj/item/stack/sheet/mineral/plasma/five, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/iron, +/area/station/construction/mining/aux_base) +"mbS" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/machinery/fax{ + fax_name = "Detective's Office"; + name = "Detective's Fax Machine"; + pixel_y = 8 + }, +/obj/item/camera/detective{ + pixel_y = -6 + }, +/turf/open/floor/wood/parquet, +/area/station/security/detectives_office) +"mbZ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/entry) +"mcp" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/turf/open/floor/carpet/green, +/area/station/security/courtroom) +"mcK" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Escape Pod" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/exit/escape_pod) +"mcO" = ( +/obj/structure/trash_pile, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"mcT" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall3"; + location = "hall2" + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"mcV" = ( +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/aisat/teleporter) +"mcZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"mdE" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing, +/turf/open/openspace, +/area/station/engineering/main) +"mdI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/holding_cell) +"mdT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"mea" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/medical/psychology, +/obj/machinery/door/airlock/psych{ + id_tag = "psych_bolt"; + name = "Private Psych Room" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/psychology) +"mef" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/hallway/primary/starboard) +"meo" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"mep" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/mid_joiner{ + dir = 1 + }, +/turf/open/floor/iron/white/smooth_large, +/area/station/security/medical) +"meq" = ( +/obj/machinery/smartfridge, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/hydroponics/upper) +"mez" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics_shutters"; + name = "Robotics Privacy Shutters"; + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/robotics/lab) +"meK" = ( +/obj/effect/spawner/random/trash/food_packaging, +/obj/structure/disposalpipe/sorting/mail{ + dir = 4 + }, +/obj/effect/mapping_helpers/mail_sorting/supply/disposals, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"meQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/hfr_room) +"meR" = ( +/obj/machinery/holopad/secure, +/turf/open/floor/iron/white/herringbone, +/area/station/medical/patients_rooms) +"meS" = ( +/obj/structure/grille/broken, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"meX" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/obj/machinery/light/cold/directional/east, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/security/holding_cell) +"mfj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"mfs" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/iron, +/area/station/maintenance/disposal/incinerator) +"mfu" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/brig/entrance) +"mfG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/medical/morgue) +"mfQ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/filingcabinet, +/obj/machinery/firealarm/directional/west, +/obj/item/radio/intercom/directional/west{ + pixel_y = 20 + }, +/obj/machinery/light/warm/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/security/checkpoint/service) +"mfT" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) +"mfV" = ( +/turf/closed/wall, +/area/station/security/range) +"mgk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/cargo/miningoffice) +"mgl" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/turf/open/floor/eighties, +/area/station/common/arcade) +"mgD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/carpet/black, +/area/station/command/heads_quarters/ce) +"mgE" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"mgH" = ( +/obj/structure/sign/warning/vacuum/external/directional/south, +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/lattice, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/light/small/directional/south, +/turf/open/openspace, +/area/station/maintenance/department/science/xenobiology) +"mgJ" = ( +/obj/effect/turf_decal/siding/white, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"mgK" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/escape_pod) +"mgW" = ( +/obj/effect/turf_decal/siding/dark, +/turf/open/floor/glass/reinforced, +/area/station/hallway/primary/central/fore) +"mhe" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/structure/chair, +/obj/machinery/camera/directional/north{ + c_tag = "Public Mining Dock" + }, +/turf/open/floor/plating, +/area/station/commons/storage/mining) +"mhs" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmoshpherics Engine Access" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos/office) +"mhx" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/bot_blue, +/obj/structure/bed/roller{ + dir = 4 + }, +/obj/structure/railing, +/turf/open/floor/iron/white, +/area/station/hallway/primary/central) +"mhK" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Entertainer Lounge Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/service/theatre, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/service/theater) +"mhW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/aisat/equipment) +"mhX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Arrivals Lounge" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/status_display/ai/directional/south, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/entry) +"mib" = ( +/obj/effect/turf_decal/bot_white, +/obj/machinery/gravity_generator/main, +/turf/open/floor/engine, +/area/station/engineering/gravity_generator) +"mic" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Engineering Guard's Office" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/checkpoint/engineering) +"mij" = ( +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "common-mining" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/external/glass{ + name = "Auxiliary Common Dock Airlock" + }, +/turf/open/floor/plating, +/area/station/commons/storage/mining) +"mim" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/turf/open/floor/iron/white/side{ + dir = 4 + }, +/area/station/hallway/primary/central/fore) +"mir" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"miy" = ( +/obj/structure/railing, +/turf/open/floor/glass/reinforced, +/area/station/hallway/primary/starboard) +"miB" = ( +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"miH" = ( +/obj/machinery/computer/atmos_control/oxygen_tank, +/obj/effect/turf_decal/box, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/turf/open/floor/engine, +/area/station/engineering/atmos) +"miJ" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/white, +/area/station/medical/pharmacy) +"miL" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 1 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/primary/central/aft) +"mjb" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull, +/area/station/asteroid) +"mji" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 4 + }, +/area/station/security/medical) +"mjI" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/hfr_room) +"mjO" = ( +/obj/machinery/vending/medical, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm/directional/north, +/obj/machinery/camera/directional/north{ + c_tag = "Medbay - Storage"; + network = list("ss13","medbay") + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/storage) +"mjV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"mkd" = ( +/obj/effect/spawner/random/trash/grime, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/central) +"mke" = ( +/obj/structure/rack, +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/obj/item/multitool, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/teleporter) +"mki" = ( +/obj/effect/turf_decal/tile/dark_blue/half{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/security/office) +"mkm" = ( +/obj/structure/disposalpipe/junction/yjunction{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"mkn" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/dark/end{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central/fore) +"mkr" = ( +/obj/effect/mapping_helpers/burnt_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"mkz" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/openspace, +/area/station/maintenance/department/security/upper) +"mkC" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/security/checkpoint/medical) +"mkK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red/real_red{ + dir = 4 + }, +/turf/open/floor/iron/white/corner{ + dir = 1 + }, +/area/station/commons/storage/mining) +"mkN" = ( +/obj/effect/spawner/random/trash/garbage, +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/openspace, +/area/station/maintenance/starboard/fore) +"mkO" = ( +/obj/structure/chair/plastic, +/turf/open/floor/wood, +/area/station/command/meeting_room/council) +"mls" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/command/general, +/obj/effect/mapping_helpers/airlock/access/any/command/minisat, +/obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Access" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/iron/dark/smooth_large, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"mlC" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"mlD" = ( +/obj/effect/turf_decal/box/corners, +/obj/machinery/atmospherics/pipe/smart/manifold/violet/visible{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"mlE" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/service/library) +"mlJ" = ( +/obj/machinery/light/cold/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/atm/directional/north, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"mlU" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/table/reinforced, +/obj/item/clothing/head/helmet/toggleable/riot{ + pixel_y = 10; + pixel_x = -9 + }, +/obj/item/clothing/head/helmet/toggleable/riot{ + pixel_y = 10 + }, +/obj/item/clothing/head/helmet/toggleable/riot{ + pixel_y = 10; + pixel_x = 9 + }, +/obj/item/clothing/suit/armor/riot{ + pixel_x = -8 + }, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/suit/armor/riot{ + pixel_x = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/engine, +/area/station/ai_monitored/security/armory) +"mlW" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/station_map/engineering/directional/east, +/turf/open/floor/iron/white/side, +/area/station/medical/medbay/lobby) +"mlX" = ( +/obj/structure/hedge, +/obj/structure/window/fulltile, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/command) +"mmg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"mmp" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"mmF" = ( +/obj/structure/lattice/catwalk, +/obj/structure/ladder, +/obj/machinery/firealarm/directional/east, +/obj/machinery/camera/directional/east{ + c_tag = "Xenobiology Pens - Upper Starboard"; + network = list("ss13","xeno","rd") + }, +/turf/open/openspace, +/area/station/science/xenobiology) +"mmK" = ( +/turf/open/openspace, +/area/station/service/kitchen) +"mmL" = ( +/obj/effect/turf_decal/arrows/white{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/engine, +/area/station/engineering/atmos/hfr_room) +"mmM" = ( +/obj/item/watertank, +/obj/structure/table, +/obj/item/radio/intercom/directional/north, +/obj/machinery/light/directional/north, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/iron/large, +/area/station/service/hydroponics) +"mmP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/edge, +/area/station/maintenance/aft/upper) +"mnf" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow/half{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/turf/open/floor/iron/white/smooth_edge{ + dir = 1 + }, +/area/station/medical/pharmacy) +"mnk" = ( +/obj/machinery/door/airlock/qm{ + name = "Quartermaster's Quarters" + }, +/obj/effect/mapping_helpers/airlock/access/any/supply/qm, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/qm) +"mnq" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/common/laser_tag) +"mnx" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"mnD" = ( +/obj/machinery/computer/records/medical{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/detectives_office) +"mnF" = ( +/obj/structure/sign/poster/contraband/wildcat/directional/east, +/obj/effect/spawner/random/entertainment/arcade{ + dir = 8 + }, +/obj/effect/decal/cleanable/confetti, +/obj/machinery/light/blacklight/directional/east, +/turf/open/floor/eighties, +/area/station/common/arcade) +"mnQ" = ( +/obj/structure/chair/office, +/obj/structure/cable, +/obj/effect/landmark/start/atmospheric_technician, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/office) +"moa" = ( +/obj/effect/turf_decal/arrows{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/cargo/storage) +"mob" = ( +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_half, +/area/station/security/checkpoint/supply) +"mow" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side, +/area/station/hallway/primary/port) +"moF" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/corrections_officer) +"moI" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/main) +"moK" = ( +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"moL" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/dark/diagonal_edge, +/obj/machinery/microwave{ + pixel_y = 6 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron/kitchen/diagonal, +/area/station/security/prison) +"moV" = ( +/obj/machinery/chem_dispenser/drinks{ + pixel_y = 6; + pixel_x = -2 + }, +/obj/structure/table/reinforced, +/turf/open/floor/wood, +/area/station/command/meeting_room/council) +"moZ" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/emcloset, +/obj/effect/landmark/start/hangover/closet, +/turf/open/floor/plating, +/area/station/commons/storage/mining) +"mpa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"mpc" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark/corner, +/area/station/commons/dorms) +"mpS" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/two, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/station/ai_monitored/command/nuke_storage) +"mpW" = ( +/obj/effect/turf_decal/tile/dark_blue, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/security/holding_cell) +"mqr" = ( +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/escape) +"mqv" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/glass/reinforced, +/area/station/hallway/primary/port) +"mqF" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/mob/living/simple_animal/bot/floorbot{ + name = "Offixer Tilesky" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/tcommsat/computer) +"mqP" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/machinery/light/warm/directional/west, +/turf/open/floor/iron, +/area/station/engineering/atmos/hfr_room) +"mqQ" = ( +/obj/machinery/duct, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"mrc" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/rack/shelf, +/obj/item/tank/jetpack/carbondioxide{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/tank/jetpack/carbondioxide{ + pixel_x = -5 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron, +/area/station/engineering/storage) +"mrf" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/openspace, +/area/station/hallway/primary/central) +"mrv" = ( +/obj/structure/lattice, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/space/openspace, +/area/space/nearstation) +"mrS" = ( +/turf/closed/wall, +/area/station/security/eva) +"mrU" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"mrX" = ( +/obj/effect/spawner/random/techstorage/rnd_secure_all, +/obj/effect/turf_decal/bot, +/obj/structure/rack/shelf, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/storage/tech) +"msi" = ( +/obj/item/stack/cable_coil, +/obj/effect/turf_decal/lunar_sand/plating, +/obj/effect/turf_decal/lunar_sand, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"msj" = ( +/obj/effect/landmark/start/ai/secondary, +/obj/item/radio/intercom/directional/south{ + freerange = 1; + frequency = 1447; + listening = 0; + name = "Private Channel" + }, +/obj/item/radio/intercom/directional/east{ + freerange = 1; + listening = 0; + name = "Common Channel" + }, +/obj/item/radio/intercom/directional/north{ + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_x = 27 + }, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/ai) +"msn" = ( +/obj/structure/cable/multilayer/multiz, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"msp" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/transit_tube, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"msy" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"msz" = ( +/turf/open/floor/wood, +/area/station/commons/dorms/room2) +"msA" = ( +/obj/structure/hoop{ + dir = 8 + }, +/obj/machinery/light/warm/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron, +/area/station/security/prison) +"msI" = ( +/obj/machinery/modular_computer/preset/engineering, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/small, +/area/station/maintenance/department/electrical) +"msZ" = ( +/obj/machinery/shower/directional/north, +/turf/open/floor/iron/freezer, +/area/station/security/prison) +"mta" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 1 + }, +/obj/structure/cable, +/mob/living/basic/pet/potty, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/service/hydroponics) +"mtb" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/customs) +"mtd" = ( +/obj/structure/cable, +/obj/effect/spawner/random/trash/garbage, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/department/eva) +"mtu" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall10"; + location = "hall9" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/commons/dorms) +"mtx" = ( +/obj/structure/barricade/security, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"mtE" = ( +/obj/effect/turf_decal/siding/dark_blue/corner{ + dir = 1 + }, +/obj/item/kirbyplants/organic/plant22, +/turf/open/floor/iron/dark, +/area/station/command/meeting_room/council) +"mtI" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark/corner, +/area/station/commons/dorms) +"mtK" = ( +/turf/closed/wall, +/area/station/maintenance/department/science/xenobiology) +"mtN" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners, +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/bot_white, +/obj/item/book/manual/wiki/robotics_cyborgs{ + pixel_y = 7 + }, +/obj/machinery/airalarm/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/science/robotics/lab) +"mtR" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"mtT" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/turf/open/floor/iron, +/area/station/maintenance/starboard/greater) +"mua" = ( +/turf/open/floor/iron, +/area/station/maintenance/fore/lesser) +"mug" = ( +/obj/machinery/button/door/directional/west{ + id = "private_6"; + name = "Privacy Bolts"; + normaldoorcontrol = 1; + pixel_y = 9; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/commons/dorms/room6) +"muk" = ( +/obj/structure/closet/secure_closet/brig{ + id = "crgcell"; + name = "Cargo Cell Locker" + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/security/checkpoint/supply) +"mum" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/obj/machinery/door/airlock/external{ + name = "Engineering External Access" + }, +/turf/open/floor/plating, +/area/station/engineering/supermatter/room) +"mut" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"muu" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/structure/tank_dispenser, +/obj/item/toy/figure/atmos{ + pixel_y = 17 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos/storage) +"muW" = ( +/obj/effect/spawner/random/trash/garbage, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/ash, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/wrapping, +/turf/open/floor/plating, +/area/station/maintenance/central) +"muZ" = ( +/obj/effect/decal/cleanable/wrapping, +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"mvf" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch" + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/hallway/secondary/exit/departure_lounge) +"mvr" = ( +/obj/machinery/telecomms/message_server/preset, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/station/tcommsat/server) +"mvw" = ( +/obj/structure/railing, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/spawner/random/maintenance/three, +/obj/structure/rack/shelf, +/turf/open/floor/iron, +/area/station/maintenance/department/security/lower) +"mvF" = ( +/obj/structure/toilet/greyscale{ + dir = 4 + }, +/obj/machinery/light/small/directional/west, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"mvM" = ( +/obj/effect/spawner/random/engineering/material, +/obj/structure/closet, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"mvN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/kitchen/rollingpin{ + pixel_y = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/kitchen/diagonal, +/area/station/maintenance/abandon_diner) +"mvW" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tcomms) +"mwq" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/landmark/event_spawn, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"mwA" = ( +/obj/structure/chair/plastic{ + dir = 1 + }, +/obj/machinery/light/warm/directional/east, +/turf/open/floor/wood, +/area/station/command/meeting_room/council) +"mwK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/hfr_room) +"mwL" = ( +/obj/structure/aquarium/prefilled, +/obj/item/fish_feed{ + pixel_x = 6; + pixel_y = 19 + }, +/obj/item/toy/figure/dsquad{ + pixel_x = -10; + pixel_y = 16 + }, +/turf/open/floor/carpet/green, +/area/station/command/heads_quarters/nt_rep) +"mwX" = ( +/obj/machinery/quantum_server, +/turf/open/floor/catwalk_floor, +/area/station/bitrunning/den) +"mwZ" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"mxa" = ( +/obj/structure/hedge, +/obj/structure/window/fulltile, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/pharmacy) +"mxb" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Customs Post Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/command/hop, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"mxc" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/light/cold/directional/south, +/obj/machinery/status_display/evac/directional/south, +/obj/item/kirbyplants/organic/plant21, +/turf/open/floor/wood/large, +/area/station/tcommsat/computer) +"mxe" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"mxg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/cargo_technician, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/cargo/storage) +"mxq" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"mxx" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/rack, +/obj/item/storage/medkit/regular{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/toolbox/emergency{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/backpack/satchel/explorer, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/commons/storage/mining) +"mxG" = ( +/obj/effect/turf_decal/vg_decals/atmos/carbon_dioxide, +/turf/open/floor/engine/co2, +/area/station/engineering/atmos/upper) +"mxK" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/purple, +/area/station/service/barber) +"mxO" = ( +/obj/effect/turf_decal/tile/green/opposingcorners, +/turf/open/floor/iron/checker{ + dir = 1 + }, +/area/station/hallway/secondary/recreation) +"mxV" = ( +/obj/effect/spawner/random/trash/food_packaging, +/obj/machinery/light/small/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"mxW" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"mye" = ( +/obj/machinery/door/poddoor/incinerator_ordmix, +/turf/open/floor/engine/vacuum, +/area/station/science/ordnance/burnchamber) +"mym" = ( +/obj/machinery/telecomms/broadcaster/preset_right, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/station/tcommsat/server) +"myo" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/primary/port) +"myp" = ( +/obj/effect/decal/cleanable/wrapping, +/obj/structure/closet/crate/cardboard, +/mob/living/basic/mothroach, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"myq" = ( +/obj/effect/turf_decal/siding/dark_blue{ + dir = 1 + }, +/obj/structure/chair/comfy{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/command/meeting_room/council) +"myP" = ( +/obj/structure/lattice, +/obj/structure/window/spawner/directional/east, +/obj/structure/window/spawner/directional/west, +/turf/open/openspace, +/area/station/commons/fitness/recreation) +"mzg" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 8 + }, +/area/station/security/brig) +"mzj" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/item/radio/intercom/prison/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/kitchen{ + dir = 1 + }, +/area/station/security/prison) +"mzm" = ( +/obj/effect/turf_decal/tile/dark_red, +/obj/machinery/airalarm/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/science/robotics/augments) +"mzq" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/layer_manifold/pink/visible{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/engineering/atmos/hfr_room) +"mzr" = ( +/obj/machinery/door/airlock/research/glass/incinerator/ordmix_exterior{ + name = "Burn Chamber Airlock" + }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, +/turf/open/floor/engine/vacuum, +/area/station/science/ordnance/burnchamber) +"mzv" = ( +/obj/structure/table/wood, +/obj/machinery/coffeemaker{ + pixel_y = 8 + }, +/turf/open/floor/iron/dark, +/area/station/command/meeting_room/council) +"mzz" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/service/janitor) +"mzA" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/secondary/command) +"mzI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/tile, +/area/station/commons/lounge) +"mzQ" = ( +/obj/machinery/telecomms/broadcaster/preset_left, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/station/tcommsat/server) +"mAc" = ( +/obj/structure/cable, +/obj/machinery/power/terminal, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating, +/area/station/maintenance/solars/starboard/fore) +"mAf" = ( +/obj/structure/chair/plastic{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/item/cigbutt/roach, +/turf/open/floor/iron/vaporwave, +/area/station/maintenance/department/security/upper) +"mAk" = ( +/obj/effect/turf_decal/tile/brown/half/contrasted, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/lobby) +"mAs" = ( +/obj/structure/closet/secure_closet/brig{ + id = "scicell"; + name = "Science Cell Locker" + }, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron, +/area/station/security/checkpoint/science/research) +"mAt" = ( +/obj/effect/turf_decal/siding/white{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/paramedic) +"mAx" = ( +/obj/effect/spawner/random/trash/mopbucket, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/maintenance/department/security/upper) +"mAy" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/service/chapel) +"mAz" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, +/turf/open/floor/glass/reinforced/plasma/airless, +/area/space/nearstation) +"mAA" = ( +/obj/effect/turf_decal/tile/purple/diagonal_centre, +/obj/effect/turf_decal/siding/white{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/diagonal, +/area/station/science/breakroom) +"mAE" = ( +/obj/machinery/vending/barbervend, +/obj/effect/turf_decal/tile/purple/half/contrasted, +/obj/effect/turf_decal/tile/purple, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/service/barber) +"mAY" = ( +/obj/structure/table/glass, +/obj/item/book/manual/wiki/infections{ + pixel_y = 7 + }, +/obj/item/reagent_containers/dropper{ + pixel_y = 3 + }, +/obj/item/reagent_containers/syringe/antiviral, +/obj/item/reagent_containers/spray/cleaner, +/obj/effect/turf_decal/siding/white, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"mBi" = ( +/obj/structure/bed{ + dir = 4 + }, +/obj/item/bedsheet/medical{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"mBj" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/common/carpshop) +"mBl" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/light/small/directional/west, +/turf/open/openspace, +/area/station/maintenance/solars/port/aft) +"mBp" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "maint-toggle2"; + name = "Maintenance Secure Shutters"; + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"mBw" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/iron, +/area/station/maintenance/aft/greater) +"mBB" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/effect/turf_decal/vg_decals/numbers/two, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/secondary/entry) +"mBF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/visible, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"mBM" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/chair/office{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/station/command/heads_quarters/nt_rep) +"mBS" = ( +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/diagonal, +/area/station/security/courtroom) +"mBX" = ( +/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/cargo/lobby) +"mCg" = ( +/obj/machinery/door/airlock{ + id_tag = "Toilet2x"; + name = "Toilet Unit 2" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/toilet/auxiliary) +"mCj" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/command/bridge) +"mCl" = ( +/obj/effect/turf_decal/tile/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/turf/open/floor/iron/white/corner{ + dir = 4 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"mCB" = ( +/obj/structure/frame/computer, +/obj/effect/decal/cleanable/glass, +/obj/effect/turf_decal/lunar_sand, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"mCF" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/tile/bar/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/light/warm/directional/east, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/service/kitchen/diner) +"mCK" = ( +/obj/effect/turf_decal/siding/white{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/sink/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/medical/treatment_center) +"mCY" = ( +/obj/structure/bed/double, +/obj/effect/spawner/random/bedsheet/double, +/turf/open/floor/wood, +/area/station/commons/dorms/room1) +"mDl" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/light/cold/no_nightlight/directional/east, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"mDo" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/turf/open/floor/glass/reinforced, +/area/station/hallway/primary/central/fore) +"mDs" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atm/directional/south, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"mDx" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/landmark/start/station_engineer, +/obj/item/clothing/head/cone{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/clothing/head/cone{ + pixel_x = -6; + pixel_y = 11 + }, +/obj/item/clothing/head/cone{ + pixel_x = -6; + pixel_y = 14 + }, +/turf/open/floor/iron, +/area/station/engineering/storage) +"mDC" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/security/entrance, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/warning, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/security/glass{ + id_tag = "outerbrig"; + name = "Brig Entrance" + }, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/security/brig/entrance) +"mDL" = ( +/obj/machinery/door/airlock/command{ + name = "Head of Personnel's Office" + }, +/obj/effect/mapping_helpers/airlock/access/any/command/hop, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/hop) +"mDO" = ( +/turf/open/floor/glass/reinforced/plasma/airless, +/area/space/nearstation) +"mDR" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/obj/machinery/airalarm/directional/east, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white/diagonal, +/area/station/commons/toilet/restrooms) +"mDV" = ( +/obj/machinery/atmospherics/components/tank/air{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/department/science/xenobiology) +"mDX" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/button/flasher{ + id = "brigflashdoorz1"; + name = "Flash Control"; + pixel_x = -30; + pixel_y = 7; + req_access = list("security") + }, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/security/brig/entrance) +"mEa" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/vacuum/external, +/turf/open/floor/plating, +/area/station/science/ordnance) +"mEk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/box, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/breakroom) +"mEr" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/netpod, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/bitrunning/den) +"mEH" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/ladder, +/obj/effect/landmark/generic_maintenance_landmark, +/turf/open/floor/plating, +/area/station/maintenance/solars/port/aft) +"mEJ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/iron/small, +/area/station/engineering/atmos/office) +"mEN" = ( +/obj/structure/ladder, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"mEQ" = ( +/obj/effect/turf_decal/tile/purple/half{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/smooth_edge{ + dir = 1 + }, +/area/station/command/heads_quarters/rd) +"mFg" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/medical/psychology, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/psych{ + name = "Private Psych Room" + }, +/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/psychology) +"mFn" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/secondary/recreation) +"mFq" = ( +/obj/structure/lattice, +/obj/structure/window/spawner/directional/south, +/obj/structure/window/spawner/directional/east, +/obj/structure/window/spawner/directional/north, +/turf/open/openspace, +/area/station/cargo/drone_bay) +"mFu" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit) +"mFz" = ( +/obj/item/clothing/head/helmet/skull, +/obj/item/reagent_containers/cup/glass/flask, +/turf/open/floor/plating, +/area/station/hallway/primary/central/fore) +"mFG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"mFM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/brig/entrance) +"mFO" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/turf/open/openspace, +/area/station/engineering/atmos/upper) +"mFS" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/effect/spawner/random/maintenance/two, +/obj/item/poster/random_contraband, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"mFV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"mGa" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/mob/living/basic/mouse/white{ + desc = "This mouse smells faintly of alcohol."; + name = "Mik" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/service/abandoned_gambling_den) +"mGK" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/bot, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/vending/wardrobe/atmos_wardrobe, +/turf/open/floor/iron, +/area/station/engineering/atmos/storage) +"mGT" = ( +/turf/closed/wall/r_wall, +/area/station/security/checkpoint/medical) +"mGZ" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/box, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/light/warm/directional/west, +/obj/machinery/camera/directional/north{ + c_tag = "Cargo - Desk"; + dir = 9 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/cargo/office) +"mHf" = ( +/obj/structure/table, +/obj/item/stack/sheet/iron/twenty, +/obj/effect/spawner/random/maintenance/three, +/turf/open/floor/iron/small, +/area/station/maintenance/port/aft) +"mHz" = ( +/obj/machinery/light/cold/directional/east, +/obj/machinery/firealarm/directional/east, +/turf/open/openspace, +/area/station/science/cytology) +"mHI" = ( +/turf/closed/wall, +/area/station/commons/vacant_room/office) +"mHO" = ( +/obj/machinery/computer/station_alert{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"mHT" = ( +/obj/item/shard, +/obj/effect/decal/cleanable/glass, +/obj/structure/disposalpipe/segment, +/obj/machinery/light/small/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"mHX" = ( +/obj/effect/landmark/start/shaft_miner, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/cargo/miningoffice) +"mIa" = ( +/obj/structure/lattice, +/obj/structure/railing, +/obj/structure/window/spawner/directional/east, +/obj/structure/window/spawner/directional/west, +/obj/structure/window/spawner/directional/south, +/turf/open/openspace, +/area/station/security/brig/upper) +"mIg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/small/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"mIm" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/aisat/teleporter) +"mIs" = ( +/obj/structure/table, +/obj/item/folder/yellow, +/obj/effect/spawner/random/maintenance/three, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"mIC" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/service/hydroponics/upper) +"mID" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/eva) +"mIF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/engineering/atmos/hfr_room) +"mIL" = ( +/obj/machinery/airalarm/directional/south, +/obj/effect/spawner/random/food_or_drink/booze{ + pixel_y = 6; + spawn_loot_count = 2; + spawn_random_offset = 2 + }, +/obj/structure/table, +/obj/machinery/light/warm/directional/west, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron/dark/small, +/area/station/cargo/drone_bay) +"mJb" = ( +/obj/effect/spawner/random/structure/grille, +/obj/structure/sign/poster/random/directional/south, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"mJc" = ( +/obj/machinery/atmospherics/components/binary/crystallizer{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"mJj" = ( +/obj/item/reagent_containers/cup/glass/bottle/vodka/badminka, +/obj/structure/closet, +/obj/effect/spawner/random/maintenance, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"mJw" = ( +/turf/open/openspace, +/area/station/commons/fitness/recreation) +"mJG" = ( +/turf/open/floor/iron/dark/side, +/area/station/common/wrestling/arena) +"mJL" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/structure/table, +/obj/item/stack/sheet/iron/fifty{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/stack/sheet/plasteel/twenty{ + pixel_x = 3; + pixel_y = -2 + }, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/cable_coil, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/hfr_room) +"mJM" = ( +/obj/effect/spawner/random/structure/girder, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"mJT" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_red/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/service/chapel) +"mJW" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/ladder, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/solars/starboard/aft) +"mJZ" = ( +/obj/structure/table/reinforced, +/obj/item/lightreplacer{ + pixel_y = -5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/visible{ + dir = 4 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 8 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_y = 3; + pixel_x = -10 + }, +/obj/item/stock_parts/cell/high, +/obj/item/flashlight{ + pixel_y = -14 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"mKk" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"mKr" = ( +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"mKs" = ( +/obj/structure/stairs/south, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/hallway/primary/starboard) +"mKy" = ( +/obj/effect/turf_decal/tile/bar/fourcorners, +/obj/machinery/holopad, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/checker, +/area/station/service/kitchen/diner) +"mKL" = ( +/obj/structure/bodycontainer/morgue, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/effect/turf_decal/bot_white, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/morgue) +"mKM" = ( +/obj/machinery/atm/directional/west, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"mKO" = ( +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = -7 + }, +/obj/item/pen{ + pixel_x = -3; + pixel_y = -7 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"mKR" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners{ + dir = 1 + }, +/obj/structure/chair/stool/bar/directional/south, +/obj/effect/decal/cleanable/dirt, +/mob/living/basic/cockroach, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/checker, +/area/station/maintenance/abandon_diner) +"mKS" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/brigdoor/left/directional/east{ + name = "Access Desk"; + req_access = list("hop") + }, +/obj/machinery/door/window/right/directional/west{ + name = "Access Queue" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/folder/blue, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "hop"; + name = "Privacy Shutters" + }, +/turf/open/floor/iron, +/area/station/command/heads_quarters/hop) +"mKU" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 1 + }, +/obj/effect/mapping_helpers/mail_sorting/science/experimentor_lab, +/obj/effect/mapping_helpers/mail_sorting/science/ordnance, +/obj/effect/mapping_helpers/mail_sorting/science/rd_office, +/obj/effect/mapping_helpers/mail_sorting/science/research, +/obj/effect/mapping_helpers/mail_sorting/science/xenobiology, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"mLf" = ( +/obj/effect/turf_decal/siding/dark, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/blacklight/directional/east, +/turf/open/floor/eighties, +/area/station/common/arcade) +"mLg" = ( +/obj/structure/stairs/west, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/engineering/supermatter/room) +"mLj" = ( +/obj/machinery/door/poddoor/shutters{ + id = "maint-toggle1"; + name = "Maintenance Secure Shutters"; + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"mLo" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"mLq" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/brig/entrance) +"mLs" = ( +/turf/closed/wall/r_wall, +/area/station/hallway/primary/port) +"mLy" = ( +/obj/effect/spawner/random/structure/furniture_parts, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"mLK" = ( +/obj/item/kirbyplants/organic/plant6, +/turf/open/floor/wood/large, +/area/station/service/bar) +"mMb" = ( +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/morgue) +"mMc" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/engineering/gravity_generator) +"mMk" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/station/engineering/atmos/upper) +"mMo" = ( +/obj/structure/closet/crate/cardboard/mothic, +/obj/item/instrument/musicalmoth, +/obj/item/food/vendor_snacks/moth_bag/cheesecake{ + pixel_x = -4 + }, +/obj/item/food/vendor_snacks/moth_bag/cheesecake/honey{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/item/trash/vendor_trash/moth_bag{ + pixel_y = -4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"mMv" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"mMz" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/science/xenobiology) +"mMG" = ( +/obj/machinery/airalarm/directional/west, +/obj/structure/table/glass, +/obj/item/folder/white{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/iron/dark/small, +/area/station/science/circuits) +"mNa" = ( +/obj/machinery/conveyor{ + id = "QMLoad2" + }, +/obj/machinery/door/poddoor{ + id = "QMLoaddoor2"; + name = "Supply Dock Offloading Door" + }, +/turf/open/floor/plating, +/area/station/cargo/storage) +"mNv" = ( +/obj/docking_port/stationary/mining_home{ + dir = 2 + }, +/turf/open/space/basic, +/area/space) +"mNS" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/power/terminal{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/solars/starboard/aft) +"mNU" = ( +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) +"mOc" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/light/cold/no_nightlight/directional/south, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"mOw" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/ai) +"mOA" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + name = "justice injector"; + dir = 8 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/security/execution/education) +"mOK" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2, +/obj/machinery/air_sensor/ordnance_freezer_chamber, +/turf/open/floor/engine/vacuum, +/area/station/science/ordnance/freezerchamber) +"mOO" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/maintenance/disposal/incinerator) +"mOT" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/hallway/primary/port) +"mOW" = ( +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high{ + pixel_x = -5; + pixel_y = 8 + }, +/obj/item/stock_parts/cell/high{ + pixel_x = 7; + pixel_y = 8 + }, +/obj/item/stock_parts/cell/high, +/obj/structure/table, +/turf/open/floor/iron/small, +/area/station/science/robotics/lab) +"mPb" = ( +/obj/structure/table/wood, +/obj/item/folder/blue{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/paper/fluff/ids_for_dummies, +/obj/item/stamp/centcom{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stamp/denied{ + pixel_x = -7; + pixel_y = 9 + }, +/obj/item/stamp{ + pixel_x = -7; + pixel_y = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/requests_console/auto_name/directional/south, +/obj/effect/mapping_helpers/requests_console/information, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/mapping_helpers/requests_console/announcement, +/turf/open/floor/wood, +/area/station/command/heads_quarters/nt_rep) +"mPi" = ( +/obj/machinery/light/warm/directional/east, +/turf/open/floor/wood, +/area/station/commons/dorms) +"mPk" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/machinery/door/airlock/corporate/glass{ + name = "Meeting Hall" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) +"mPl" = ( +/obj/machinery/light/small/red/directional/north, +/turf/open/floor/iron/dark/small, +/area/station/command/gateway) +"mPp" = ( +/obj/machinery/door/airlock/hatch{ + name = "Maintenance Hatch" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"mPu" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/incinerator_input, +/turf/open/floor/engine, +/area/station/maintenance/disposal/incinerator) +"mPF" = ( +/obj/machinery/door/airlock{ + id_tag = "Toilet2"; + name = "Toilet Unit 2" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/toilet/restrooms) +"mPG" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/structure/chair/sofa/bench/right, +/obj/effect/landmark/start/hangover, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/secondary/recreation) +"mPO" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/checkpoint/medical) +"mPQ" = ( +/obj/item/knife/butcher, +/turf/open/floor/iron/freezer, +/area/station/maintenance/abandon_diner) +"mQb" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/item/radio/intercom/directional/south, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/service/barber) +"mQg" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/machinery/light/cold/directional/south, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/ai_monitored/turret_protected/aisat_interior) +"mQi" = ( +/obj/machinery/requests_console/auto_name/directional/north, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/mapping_helpers/requests_console/information, +/obj/effect/mapping_helpers/requests_console/announcement, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/ai_monitored/command/storage/eva) +"mQm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/trinary/mixer{ + dir = 4 + }, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/science/ordnance) +"mQs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"mQu" = ( +/turf/closed/wall, +/area/station/hallway/secondary/exit/escape_pod) +"mQz" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"mQD" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners{ + dir = 1 + }, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"mQF" = ( +/obj/structure/sign/poster/random/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"mQG" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/camera/directional/west{ + c_tag = "Engineering - Supermatter Chamber Airlocks"; + network = list("ss13","engine") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"mQH" = ( +/obj/structure/table, +/obj/item/knife/butcher, +/obj/item/kitchen/rollingpin{ + pixel_y = 4 + }, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"mQN" = ( +/obj/structure/chair/office/light, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"mQO" = ( +/obj/structure/table, +/obj/item/reagent_containers/cup/glass/bottle/beer/light{ + pixel_y = 10 + }, +/obj/item/reagent_containers/cup/glass/bottle/beer/light{ + pixel_y = 6; + pixel_x = -6 + }, +/obj/item/reagent_containers/cup/glass/bottle/beer/light{ + pixel_y = 6; + pixel_x = 6 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/machinery/light/cold/directional/south, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/security/brig/entrance) +"mQU" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/entry) +"mQW" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/openspace, +/area/station/hallway/primary/central) +"mRg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance/external/glass{ + name = "Public Pharmacy" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/pharmacy) +"mRn" = ( +/obj/machinery/power/floodlight, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"mRq" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/wood, +/area/station/commons/dorms) +"mRw" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 1 + }, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/item/radio/intercom/directional/west, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/service/hydroponics) +"mRD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/dark/visible{ + dir = 1 + }, +/obj/machinery/button/ignition/incinerator/atmos{ + pixel_x = -6; + pixel_y = 35 + }, +/obj/machinery/button/door/incinerator_vent_atmos_aux{ + pixel_x = -6; + pixel_y = 25 + }, +/obj/machinery/button/door/incinerator_vent_atmos_main{ + pixel_x = 7; + pixel_y = 25 + }, +/obj/machinery/airlock_controller/incinerator_atmos{ + pixel_y = 34; + pixel_x = 7 + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/maintenance/disposal/incinerator) +"mRH" = ( +/obj/structure/table, +/obj/item/folder/white{ + pixel_y = 3 + }, +/obj/item/reagent_containers/dropper{ + pixel_y = 5; + pixel_x = -1 + }, +/obj/item/reagent_containers/syringe{ + pixel_y = 11; + pixel_x = -5 + }, +/obj/item/reagent_containers/cup/beaker{ + pixel_x = 7; + pixel_y = 11 + }, +/obj/item/pen/red, +/obj/machinery/camera/directional/north{ + c_tag = "Virology Isolation B"; + network = list("ss13","medbay") + }, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"mRJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/hallway/secondary/command) +"mRP" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/structure/sign/poster/contraband/pwr_game/directional/north, +/obj/machinery/light/blacklight/directional/east, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/common/arcade) +"mRR" = ( +/obj/structure/industrial_lift, +/obj/effect/landmark/lift_id{ + specific_lift_id = "cargo_lobbylift" + }, +/turf/open/floor/plating, +/area/station/cargo/storage) +"mRT" = ( +/obj/machinery/atmospherics/components/tank/air{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/aisat/equipment) +"mRZ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown/opposingcorners, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/door/window/right/directional/east{ + name = "Drone Launchsite" + }, +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/cargo/drone_bay) +"mSj" = ( +/obj/structure/chair/office, +/obj/effect/turf_decal/tile/blue/half/contrasted, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/customs) +"mSo" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/item/kirbyplants/synthetic/plant28, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"mSq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"mSD" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/command) +"mSW" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/hallway/primary/port) +"mTf" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/barricade/security, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"mTi" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/simple/violet/visible{ + dir = 10 + }, +/turf/open/space/openspace, +/area/space/nearstation) +"mTn" = ( +/obj/machinery/power/smes/engineering, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"mTF" = ( +/obj/effect/turf_decal/tile/green/opposingcorners, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/checker{ + dir = 1 + }, +/area/station/hallway/primary/central/fore) +"mTL" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/visible{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible/layer1{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump/off/general/visible/layer5{ + dir = 4; + name = "Burner Output to Port" + }, +/obj/effect/turf_decal/box, +/turf/open/floor/engine, +/area/station/science/ordnance) +"mTP" = ( +/turf/closed/mineral/random/stationside/moon, +/area/station/cargo/storage) +"mTQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/box, +/obj/machinery/light/cold/directional/east, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/machinery/rnd/production/circuit_imprinter/department/science, +/obj/structure/disposalpipe/segment, +/obj/machinery/button/door/directional/east{ + id = "rndlab1"; + name = "Privacy Control"; + req_access = list("science") + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/research) +"mUe" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/primary/central/aft) +"mUg" = ( +/obj/machinery/suit_storage_unit/rd, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm/directional/south, +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/rd) +"mUk" = ( +/obj/machinery/computer/telecomms/monitor{ + network = "tcommsat" + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/small, +/area/station/tcommsat/computer) +"mUt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/kitchen/diagonal, +/area/station/maintenance/abandon_diner) +"mUA" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/security/brig/entrance) +"mUH" = ( +/obj/structure/table/wood, +/obj/structure/sign/painting/library{ + pixel_y = -32 + }, +/obj/structure/sign/painting/library{ + pixel_x = -32 + }, +/obj/item/flashlight/lamp/green{ + pixel_y = 3; + pixel_x = -6 + }, +/turf/open/floor/wood, +/area/station/service/library/lounge) +"mUS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/maintenance/disposal/incinerator) +"mVp" = ( +/turf/open/floor/glass/reinforced, +/area/station/hallway/secondary/exit/departure_lounge) +"mVE" = ( +/turf/closed/wall/r_wall, +/area/station/command/heads_quarters/cmo) +"mVJ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"mVK" = ( +/obj/machinery/door/airlock/freezer{ + critical_machine = 1; + name = "Dormitory Showers" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/toilet/restrooms) +"mVN" = ( +/obj/structure/rack, +/obj/item/mod/core/standard, +/obj/item/stock_parts/cell/high, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"mVS" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/checker, +/area/station/maintenance/abandon_diner) +"mVT" = ( +/obj/machinery/light/small/directional/south, +/obj/machinery/power/port_gen/pacman, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/engineering/storage_shared) +"mVV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"mVX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/science/xenobiology) +"mVZ" = ( +/obj/machinery/light/cold/directional/west, +/obj/structure/closet/secure_closet{ + name = "contraband locker"; + req_access = list("armory") + }, +/obj/effect/spawner/random/maintenance/three, +/obj/effect/spawner/random/contraband/armory, +/obj/effect/spawner/random/contraband/armory, +/obj/effect/spawner/random/contraband/armory, +/obj/effect/spawner/random/contraband/armory, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/engine, +/area/station/ai_monitored/security/armory) +"mWa" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/engineering/transit_tube) +"mWv" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "Cell2Privacy"; + name = "curtain" + }, +/turf/open/floor/plating, +/area/station/security/prison) +"mWA" = ( +/obj/effect/spawner/random/structure/steam_vent, +/obj/structure/sign/poster/random/directional/east, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"mWH" = ( +/obj/machinery/door/poddoor/shutters{ + id = "visitation"; + name = "Visitation Shutters"; + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/left/directional/east, +/obj/machinery/door/window/left/directional/west, +/obj/structure/table/reinforced, +/obj/machinery/camera/directional/south{ + c_tag = "Security - Visitation Counter"; + network = list("ss13","prison") + }, +/turf/open/floor/iron, +/area/station/security/prison/visit) +"mWM" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"mWO" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) +"mWV" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/machinery/airalarm/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/security/brig/entrance) +"mXa" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light/warm/directional/west, +/obj/machinery/newscaster/directional/west, +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high/empty{ + pixel_y = 4 + }, +/obj/item/stock_parts/cell/high/empty, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/lobby) +"mXl" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/security/holding_cell) +"mXy" = ( +/obj/machinery/door/window/brigdoor/right/directional/south{ + name = "Cell 1"; + req_access = list("security"); + id = "Cell 1" + }, +/turf/open/floor/glass/reinforced, +/area/station/security/holding_cell) +"mXV" = ( +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron, +/area/station/maintenance/department/security/upper) +"mXZ" = ( +/obj/structure/table, +/obj/item/stack/sheet/iron/fifty{ + pixel_y = 6; + pixel_x = 6 + }, +/obj/item/stack/sheet/iron/fifty{ + pixel_y = 6; + pixel_x = -6 + }, +/obj/item/stack/rods/fifty, +/obj/item/stack/sheet/plasteel{ + amount = 10; + pixel_x = 4 + }, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = -4 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/iron, +/area/station/construction/mining/aux_base) +"mYe" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/structure/cable, +/obj/machinery/door/poddoor{ + id = "securestorage"; + name = "Secure Storage" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/command/heads_quarters/ce) +"mYf" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/landmark/blobstart, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"mYm" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/effect/spawner/random/engineering/material_cheap, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"mYp" = ( +/obj/effect/spawner/random/trash/garbage{ + spawn_scatter_radius = 1 + }, +/obj/structure/closet, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, +/obj/item/reagent_containers/pill/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"mYs" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/engine, +/area/station/science/ordnance/testlab) +"mYt" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/hfr_room) +"mYy" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/iron/checker{ + dir = 1 + }, +/area/station/hallway/primary/central/fore) +"mYL" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"mYR" = ( +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/airlock/engineering{ + name = "Port Bow Solar Access" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/solars/port/fore) +"mZy" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/dresser, +/obj/item/kirbyplants/organic/plant12{ + pixel_y = 22; + pixel_x = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/commons/dorms/room2) +"mZD" = ( +/obj/structure/railing{ + dir = 6 + }, +/obj/machinery/light/small/directional/north, +/turf/open/openspace, +/area/station/maintenance/aft/upper) +"mZN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/escape_pod) +"mZQ" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Chapel" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/chapel) +"naa" = ( +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/service) +"nag" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/window/spawner/directional/south, +/obj/structure/window/spawner/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/lattice, +/turf/open/openspace, +/area/station/security/holding_cell) +"nal" = ( +/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/engineering/lobby) +"nau" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/siding/wood, +/obj/effect/spawner/random/vending/snackvend, +/turf/open/floor/iron/small, +/area/station/commons/storage/mining) +"naJ" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/command) +"naV" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/security/holding_cell) +"nbc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/cable/multilayer/multiz, +/obj/machinery/camera/directional/north{ + c_tag = "Solar Maintenance - Aft Port" + }, +/turf/open/floor/plating, +/area/station/maintenance/solars/port/aft) +"nbC" = ( +/obj/effect/spawner/random/structure/crate, +/obj/effect/spawner/random/maintenance/three, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"nbG" = ( +/obj/structure/rack, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/spawner/random/engineering/toolbox, +/obj/item/reagent_containers/pill/maintenance, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) +"nbN" = ( +/obj/item/stack/rods/two, +/turf/open/space/basic, +/area/space) +"nbQ" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/bot, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/aisat/equipment) +"nbV" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, +/obj/machinery/door/airlock/science/glass{ + name = "Observation Gallery" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/xenobiology) +"ncf" = ( +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_corner, +/area/station/common/wrestling/arena) +"ncg" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) +"nci" = ( +/obj/structure/railing, +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/iron/stairs{ + dir = 4 + }, +/area/station/engineering/atmos/upper) +"ncq" = ( +/obj/machinery/door/airlock/maintenance/external{ + name = "Abandoned Gambling Den" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/service/abandoned_gambling_den) +"nct" = ( +/obj/machinery/door/airlock/wood{ + name = "Detective's Office" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/detective, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/detectives_office) +"ncx" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/light/warm/directional/east, +/turf/open/openspace, +/area/station/construction/mining/aux_base) +"ncE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/diagonal, +/area/station/ai_monitored/security/armory) +"ncW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"ncX" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/window/spawner/directional/north, +/obj/structure/window/spawner/directional/south, +/obj/structure/window/spawner/directional/west, +/turf/open/openspace, +/area/station/security/brig/upper) +"ndb" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/security/warden) +"ndh" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/external{ + name = "External Solar Access" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/open/floor/iron, +/area/station/maintenance/solars/starboard/fore) +"ndi" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/item/stock_parts/matter_bin, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"ndr" = ( +/obj/effect/turf_decal/tile/green/fourcorners, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"ndx" = ( +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"ndA" = ( +/obj/machinery/button/door/directional/west{ + id = "Xtestlab"; + layer = 4; + name = "Secure Creature Pen Blast Door"; + req_access = list("xenobiology") + }, +/obj/machinery/power/shieldwallgen/xenobiologyaccess, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"ndH" = ( +/obj/machinery/power/smes/battery_pack/large, +/turf/open/floor/plating, +/area/station/maintenance/department/electrical) +"ndJ" = ( +/obj/item/reagent_containers/cup/bucket, +/obj/item/mop, +/obj/effect/spawner/random/maintenance, +/obj/structure/rack/shelf, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"neb" = ( +/turf/closed/wall, +/area/station/medical/coldroom) +"new" = ( +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/maintenance/port/aft) +"neG" = ( +/obj/effect/turf_decal/vg_decals/atmos/mix, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos/upper) +"neM" = ( +/obj/structure/closet/emcloset, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/department/security/upper) +"neS" = ( +/obj/structure/table/glass, +/obj/item/healthanalyzer, +/obj/item/clothing/mask/breath/medical{ + pixel_x = 10 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 16 + }, +/obj/effect/turf_decal/siding/white, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"neU" = ( +/obj/effect/turf_decal/tile/dark_red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/service/chapel/funeral) +"neX" = ( +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/machinery/door/airlock/silver{ + name = "Recovery Ward" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/patients_rooms) +"neZ" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/command/nuke_storage) +"nfx" = ( +/obj/structure/sign/poster/random/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"nfA" = ( +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"nfC" = ( +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/machinery/door/airlock/freezer{ + name = "Auxiliary Coldroom" + }, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"nfK" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/engineering/atmos/office) +"nfU" = ( +/turf/closed/wall, +/area/station/security/interrogation) +"nfV" = ( +/obj/machinery/gateway/centerstation, +/turf/open/floor/iron/dark/small, +/area/station/command/gateway) +"ngm" = ( +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"ngu" = ( +/obj/machinery/door/airlock/hatch{ + name = "Maintenance Hatch" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"ngv" = ( +/obj/item/radio{ + pixel_x = -3 + }, +/obj/item/flashlight, +/obj/effect/spawner/random/structure/table_or_rack, +/obj/item/crowbar/red, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"ngz" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central) +"ngB" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"ngC" = ( +/obj/machinery/camera/directional/east{ + c_tag = "MiniSat Solar Bay"; + network = list("minisat") + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/south, +/obj/structure/cable/multilayer/connected, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/aisat/maint) +"ngI" = ( +/obj/machinery/atmospherics/pipe/smart/simple/violet/visible, +/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"ngQ" = ( +/obj/effect/spawner/random/trash/hobo_squat, +/obj/effect/spawner/random/maintenance, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"ngY" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"ngZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/department/security/upper) +"nhf" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrous_output{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/open/floor/engine/n2o, +/area/station/engineering/atmos/upper) +"nhk" = ( +/obj/structure/girder, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/effect/spawner/structure/electrified_grille, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"nhB" = ( +/obj/machinery/conveyor{ + id = "cargodisposals"; + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/light/warm/directional/south, +/obj/structure/plasticflaps, +/turf/open/floor/plating, +/area/station/cargo/sorting) +"nhD" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/machinery/suit_storage_unit/mining, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) +"nhI" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack/shelf, +/obj/item/stock_parts/subspace/ansible{ + pixel_y = 6 + }, +/obj/item/stock_parts/subspace/ansible, +/obj/item/stock_parts/subspace/ansible{ + pixel_y = -6 + }, +/obj/item/stock_parts/subspace/crystal{ + pixel_y = 2; + pixel_x = 2 + }, +/obj/item/stock_parts/subspace/crystal{ + pixel_y = 2; + pixel_x = -2 + }, +/obj/item/stock_parts/subspace/crystal{ + pixel_y = -3 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/storage/tcomms) +"nhR" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/tile, +/area/station/commons/lounge) +"nhS" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plating, +/area/station/engineering/gravity_generator) +"nhT" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"nhW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/commons/vacant_room/commissary) +"nid" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/engineering/supermatter/room) +"niw" = ( +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Holodeck Maintenance" + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"niz" = ( +/obj/effect/landmark/start/cyborg, +/obj/machinery/recharge_station, +/obj/effect/turf_decal/stripes/white/line, +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/aisat/equipment) +"niY" = ( +/obj/effect/turf_decal/siding/white, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/common/laser_tag) +"niZ" = ( +/obj/machinery/computer/upload/borg{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue/full, +/obj/effect/turf_decal/box/white, +/obj/machinery/camera/motion/directional/south{ + c_tag = "Bridge - AI Upload"; + network = list("aicore") + }, +/obj/machinery/flasher/directional/south{ + id = "AI" + }, +/turf/open/floor/iron/large, +/area/station/ai_monitored/turret_protected/ai_upload) +"njf" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"njh" = ( +/obj/structure/chair/stool/directional/south, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/light/small/blacklight/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/maintenance/abandon_surgery) +"njr" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/structure/table, +/obj/item/ai_module/toy_ai{ + pixel_y = 16; + pixel_x = -6 + }, +/obj/effect/spawner/random/aimodule/harmless, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/ai_monitored/turret_protected/ai_upload) +"njD" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/bot, +/obj/structure/rack/shelf, +/obj/machinery/light/cold/directional/north, +/obj/item/gun/energy/e_gun/dragnet{ + pixel_y = 4 + }, +/obj/item/gun/energy/e_gun/dragnet{ + pixel_y = -4 + }, +/turf/open/floor/engine, +/area/station/ai_monitored/security/armory) +"njJ" = ( +/turf/closed/wall, +/area/station/science/robotics/lab) +"njS" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm/directional/north, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/small, +/area/station/security/checkpoint/escape) +"njZ" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/commons/storage/mining) +"nke" = ( +/obj/structure/railing, +/turf/open/openspace, +/area/station/maintenance/port/lesser) +"nkr" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/commons/fitness/recreation) +"nkt" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/item/kirbyplants/organic/plant6, +/obj/structure/railing, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 1 + }, +/obj/machinery/light/warm/directional/west, +/turf/open/floor/wood/tile, +/area/station/commons/lounge) +"nkv" = ( +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"nkz" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"nkE" = ( +/obj/effect/turf_decal/tile/green/opposingcorners{ + dir = 1 + }, +/obj/structure/sign/directions/evac/directional/south{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/corner, +/area/station/hallway/primary/central/fore) +"nkF" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Bouncer's Overlook Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/service/kitchen/diner) +"nkH" = ( +/obj/structure/chair/pew/left{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/diagonal, +/area/station/security/courtroom) +"nkM" = ( +/obj/effect/turf_decal/tile/dark_blue/anticorner{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_corner, +/area/station/security/brig/entrance) +"nkP" = ( +/obj/structure/disposalpipe/sorting/mail/flip, +/obj/effect/mapping_helpers/mail_sorting/security/detectives_office, +/obj/effect/mapping_helpers/mail_sorting/security/general, +/obj/effect/mapping_helpers/mail_sorting/service/law_office, +/obj/effect/mapping_helpers/mail_sorting/security/hos_office, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"nkW" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Chapel - Entrance" + }, +/obj/structure/table/wood, +/obj/item/book/bible{ + pixel_y = 6 + }, +/obj/item/book/bible{ + pixel_y = 1; + pixel_x = -4 + }, +/obj/item/food/grown/poppy{ + pixel_x = 5; + pixel_y = -2 + }, +/turf/open/floor/wood, +/area/station/service/chapel) +"nkX" = ( +/obj/machinery/button/elevator/directional/north{ + id = "departures_lift" + }, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"nkZ" = ( +/obj/structure/railing, +/obj/structure/cable/layer1, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/cable/layer3, +/turf/open/floor/glass, +/area/station/ai_monitored/turret_protected/ai) +"nld" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"nle" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/small/directional/north, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/openspace, +/area/station/hallway/primary/central) +"nlu" = ( +/obj/machinery/door/airlock/hatch{ + name = "Maintenance Hatch" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"nlv" = ( +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/machinery/door/airlock/maintenance/external{ + name = "Betting Lair" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"nlA" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/spawner/random/trash/food_packaging, +/turf/open/floor/iron, +/area/station/maintenance/aft/greater) +"nlC" = ( +/obj/effect/decal/cleanable/blood, +/obj/machinery/processor{ + pixel_y = 1 + }, +/obj/machinery/light/cold/dim/directional/south, +/turf/open/floor/iron/freezer, +/area/station/maintenance/abandon_diner) +"nlG" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/glass, +/area/station/service/barber) +"nlK" = ( +/obj/machinery/dna_infuser, +/obj/item/infuser_book{ + pixel_x = -6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/requests_console/auto_name/directional/east, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/mapping_helpers/requests_console/information, +/obj/item/toy/figure/geneticist{ + pixel_x = 9; + pixel_y = 12 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/genetics) +"nmg" = ( +/obj/effect/turf_decal/tile/blue/half{ + dir = 1 + }, +/obj/machinery/smartfridge/organ, +/obj/machinery/light/cold/no_nightlight/directional/south, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark/smooth_half, +/area/station/medical/surgery/theatre) +"nml" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/turf/open/floor/carpet, +/area/station/commons/dorms) +"nmx" = ( +/obj/effect/turf_decal/tile/dark_red/diagonal_centre, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/diagonal, +/area/station/security/courtroom) +"nmF" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4; + name = "Air to Distro" + }, +/obj/effect/turf_decal/box/white, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/aisat/equipment) +"nmG" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron, +/area/station/maintenance/department/security/upper) +"nmV" = ( +/obj/structure/frame/machine, +/obj/item/stack/cable_coil/five, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"nmY" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/spawner/random/trash/food_packaging, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"nnt" = ( +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"nnv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/station/maintenance/solars/port/aft) +"nny" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/exit/departure_lounge) +"nnz" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"nnC" = ( +/obj/effect/turf_decal/tile/bar/fourcorners, +/obj/structure/chair, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/checker, +/area/station/service/kitchen/diner) +"nnN" = ( +/obj/machinery/light/warm/directional/north, +/turf/open/openspace, +/area/station/engineering/atmos/upper) +"nnQ" = ( +/obj/item/plant_analyzer{ + pixel_y = -15; + pixel_x = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/grass, +/area/station/service/hydroponics/garden) +"noa" = ( +/obj/effect/turf_decal/tile/dark_blue, +/obj/structure/chair/stool/directional/west, +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/security/prison/visit) +"nog" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"nok" = ( +/obj/effect/turf_decal/tile/blue, +/obj/machinery/duct, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"nom" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/mob/living/basic/bot/cleanbot{ + name = "Soapficcer Cleansky" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/tcommsat/computer) +"not" = ( +/turf/closed/wall/r_wall, +/area/station/hallway/primary/starboard) +"now" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Virology Service Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/virology, +/obj/machinery/atmospherics/components/binary/valve/on{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/medical/virology) +"noM" = ( +/obj/effect/turf_decal/tile/blue/full, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/treatment_center) +"noW" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, +/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"npd" = ( +/obj/machinery/smartfridge/disks{ + pixel_y = 6 + }, +/obj/structure/table/glass, +/obj/item/storage/box/disks{ + pixel_y = -6; + pixel_x = 4 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/machinery/light/cold/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/white/small, +/area/station/science/genetics) +"npi" = ( +/obj/effect/turf_decal/tile/green/opposingcorners{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/iron/checker, +/area/station/common/wrestling/arena) +"npk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"npp" = ( +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/service/library) +"npq" = ( +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/corrections_officer) +"nps" = ( +/obj/machinery/light/warm/directional/east, +/turf/open/openspace, +/area/station/engineering/atmos/upper) +"npw" = ( +/obj/machinery/airalarm/directional/north, +/obj/machinery/photocopier, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/bot, +/obj/machinery/button/door/directional/east{ + id = "consultantprivacy"; + name = "Privacy Shutters Control"; + pixel_y = 24 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/nt_rep) +"npF" = ( +/obj/effect/turf_decal/siding/white, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/structure/table, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms) +"npL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/effect/turf_decal/tile/dark/diagonal_edge, +/obj/machinery/light/cold/directional/south, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/execution/education) +"npN" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"npV" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/firealarm/directional/south, +/obj/item/kirbyplants/organic/plant22, +/obj/structure/cable, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/hallway/secondary/recreation) +"npW" = ( +/obj/machinery/camera/directional/south{ + c_tag = "Arrivals - Upper Hallway" + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"npX" = ( +/obj/effect/landmark/atmospheric_sanity/ignore_area, +/turf/open/openspace, +/area/station/security/prison/upper) +"npZ" = ( +/obj/effect/turf_decal/lunar_sand/plating, +/obj/machinery/light/cold/directional/north, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/glass/reinforced, +/area/station/science/xenobiology) +"nqi" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/spawner/random/structure/grille, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"nqk" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/security/checkpoint/service) +"nqs" = ( +/obj/structure/table, +/obj/item/folder/white{ + pixel_y = 6 + }, +/obj/item/pen/red{ + pixel_y = 9; + pixel_x = -2 + }, +/obj/item/reagent_containers/syringe{ + pixel_y = -1; + pixel_x = -5 + }, +/obj/item/reagent_containers/dropper{ + pixel_y = 3; + pixel_x = -1 + }, +/obj/item/reagent_containers/cup/beaker{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/machinery/camera/directional/south{ + c_tag = "Virology Isolation A"; + network = list("ss13","medbay") + }, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"nqx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/airalarm/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera/motion/directional/south{ + c_tag = "Engineering - Secure Tech Storage"; + network = list("ss13","engine") + }, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) +"nqL" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/obj/effect/turf_decal/tile/blue, +/obj/structure/chair/office{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/engineering/atmos/hfr_room) +"nqN" = ( +/obj/structure/cable, +/obj/machinery/light/floor/has_bulb, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"nqS" = ( +/obj/structure/closet/secure_closet/exile, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron, +/area/station/command/gateway) +"nqW" = ( +/obj/structure/stairs/east, +/obj/structure/sign/directions/evac/directional/north{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/exit/departure_lounge) +"nra" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/sign/painting/library{ + pixel_x = -32 + }, +/turf/open/floor/carpet/green, +/area/station/service/library) +"nrd" = ( +/obj/structure/reflector/box, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"nrk" = ( +/obj/structure/table/wood, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/wood, +/area/station/commons/dorms/room6) +"nrn" = ( +/obj/structure/hedge, +/obj/structure/window/fulltile, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/medbay/lobby) +"nrv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/robotics/lab) +"nrB" = ( +/obj/machinery/door/window/brigdoor/left/directional/east{ + name = "Science Cell"; + req_access = list("security") + }, +/turf/open/floor/catwalk_floor/iron, +/area/station/security/checkpoint/science/research) +"nrG" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/command/general, +/obj/effect/mapping_helpers/airlock/access/any/command/minisat, +/obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Server Control Room" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/tcommsat/computer) +"nrJ" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"nrK" = ( +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/station/commons/vacant_room/office) +"nrL" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/turf/open/openspace, +/area/station/maintenance/aft/greater) +"nrM" = ( +/obj/effect/spawner/random/vending/snackvend, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central/aft) +"nrS" = ( +/turf/open/openspace, +/area/station/ai_monitored/turret_protected/aisat/maint) +"nsa" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/dark_red, +/obj/item/clothing/gloves/latex, +/obj/item/clothing/mask/surgical, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 12 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/dark, +/area/station/science/robotics/augments) +"nsb" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_red{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark/side, +/area/station/common/wrestling/arena) +"nsp" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/iron/stairs{ + dir = 8 + }, +/area/station/service/library/lounge) +"nsq" = ( +/obj/structure/stairs/south, +/turf/open/floor/plating, +/area/station/service/janitor) +"nsu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/turf/open/floor/wood, +/area/station/service/chapel) +"nsx" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"nsH" = ( +/obj/machinery/camera/directional/east{ + c_tag = "MiniSat External South-West"; + network = list("minisat") + }, +/turf/open/space/basic, +/area/space) +"nsV" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/computer/nanite_cloud_controller, +/turf/open/floor/iron/dark/small, +/area/station/science/circuits) +"nsY" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/solars/starboard/fore) +"nsZ" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/storage) +"nts" = ( +/obj/effect/turf_decal/lunar_sand, +/obj/effect/turf_decal/lunar_sand/plating, +/turf/open/floor/plating/airless, +/area/station/asteroid) +"ntG" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/power/terminal, +/turf/open/floor/plating, +/area/station/maintenance/solars/port/fore) +"ntI" = ( +/obj/effect/decal/cleanable/wrapping, +/obj/structure/floodlight_frame, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"ntN" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/mob/living/basic/parrot/poly, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/command/heads_quarters/ce) +"ntX" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/white/side{ + dir = 6 + }, +/area/station/hallway/primary/central) +"ntY" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/construction/mining/aux_base) +"nuj" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/camera/directional/south{ + c_tag = "Xenobiology Pens - Upper Aft"; + network = list("ss13","xeno","rd") + }, +/turf/open/openspace, +/area/station/science/xenobiology) +"nul" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/stripes/box, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/storage) +"nun" = ( +/obj/machinery/status_display/ai/directional/east, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_red/opposingcorners, +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/service/chapel) +"nup" = ( +/obj/structure/sign/warning/secure_area/directional/east, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"nuA" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/external{ + name = "External Solar Access" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/open/floor/iron, +/area/station/maintenance/solars/port/fore) +"nuF" = ( +/obj/effect/turf_decal/tile/purple/diagonal_centre, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/structure/chair/sofa/left, +/obj/machinery/camera/directional/north{ + c_tag = "Science - Breakroom"; + dir = 9; + network = list("ss13","rd") + }, +/obj/effect/landmark/start/scientist, +/turf/open/floor/iron/white/diagonal, +/area/station/science/breakroom) +"nuI" = ( +/obj/structure/cable/multilayer/multiz, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"nuS" = ( +/obj/structure/railing, +/obj/machinery/door/firedoor/border_only, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"nuU" = ( +/obj/structure/stairs/east, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"nuY" = ( +/obj/structure/railing, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/machinery/turretid{ + control_area = "/area/station/ai_monitored/turret_protected/ai_upload"; + icon_state = "control_stun"; + name = "AI Upload turret control"; + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/command/meeting_room/council) +"nvh" = ( +/obj/machinery/camera/directional/north{ + c_tag = "MiniSat External Upper South-East"; + network = list("minisat") + }, +/turf/open/space/openspace, +/area/space) +"nvv" = ( +/obj/docking_port/stationary/escape_pod{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"nvx" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall20"; + location = "hall19" + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"nvB" = ( +/obj/structure/table, +/obj/item/rcl/pre_loaded, +/obj/item/stack/pipe_cleaner_coil/random{ + pixel_y = 3 + }, +/obj/item/stack/pipe_cleaner_coil/random{ + pixel_x = 3 + }, +/obj/item/stack/pipe_cleaner_coil/random{ + pixel_x = -3 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) +"nvJ" = ( +/obj/structure/table, +/obj/structure/lattice/catwalk, +/obj/item/electronics/apc, +/obj/item/electronics/apc{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/electronics/airlock{ + pixel_x = -4 + }, +/obj/item/electronics/airlock{ + pixel_y = 3; + pixel_x = 2 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/openspace, +/area/station/commons/storage/tools) +"nvK" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/obj/machinery/power/smes, +/turf/open/floor/plating, +/area/station/maintenance/solars/port/fore) +"nvN" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 4 + }, +/obj/effect/turf_decal/box/red, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"nvT" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/commons/storage/tools) +"nvV" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"nvW" = ( +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"nvZ" = ( +/obj/effect/turf_decal/siding/white, +/turf/open/floor/iron/white/small, +/area/station/science/genetics) +"nwa" = ( +/obj/machinery/light/small/directional/south, +/obj/machinery/duct, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"nwj" = ( +/obj/structure/table/reinforced, +/obj/item/folder/blue{ + pixel_y = 6; + pixel_x = -4 + }, +/obj/item/folder/red{ + pixel_y = 4; + pixel_x = 4 + }, +/obj/item/pen{ + pixel_y = 4 + }, +/obj/item/pen, +/turf/open/floor/carpet/purple, +/area/station/security/courtroom) +"nwm" = ( +/obj/structure/cable/multilayer/multiz, +/obj/effect/turf_decal/stripes/end, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"nws" = ( +/obj/machinery/button/door/directional/west{ + id = "commissary"; + name = "Commissary Shutter Access"; + pixel_y = 5; + pixel_x = -22 + }, +/obj/machinery/button/door/directional/west{ + id = "vacant_space"; + name = "Privacy Bolts"; + normaldoorcontrol = 1; + pixel_y = -5; + specialfunctions = 4; + pixel_x = -22 + }, +/obj/structure/chair/plastic{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/commons/vacant_room/commissary) +"nww" = ( +/obj/machinery/pdapainter/medbay, +/obj/effect/turf_decal/bot, +/obj/item/toy/figure/cmo{ + pixel_y = 15 + }, +/turf/open/floor/carpet/blue, +/area/station/command/heads_quarters/cmo) +"nwA" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Mix to Distro" + }, +/obj/machinery/camera/directional/north{ + c_tag = "Atmospherics - Distribution Loop"; + network = list("ss13","engine") + }, +/turf/open/floor/engine, +/area/station/engineering/atmos) +"nxa" = ( +/turf/closed/wall/r_wall, +/area/station/asteroid) +"nxf" = ( +/obj/effect/turf_decal/tile/red/real_red/opposingcorners, +/obj/effect/turf_decal/tile/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/turf/open/floor/iron/white/corner{ + dir = 4 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"nxr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/airalarm/directional/south, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/solars/port/fore) +"nxA" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"nxI" = ( +/obj/structure/closet/secure_closet/cytology, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/lunar_sand, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/iron/dark, +/area/station/science/cytology) +"nxX" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 8 + }, +/area/station/command/meeting_room/council) +"nya" = ( +/obj/effect/turf_decal/tile/blue/half{ + dir = 8 + }, +/obj/structure/table/optable, +/obj/machinery/defibrillator_mount/directional/east, +/obj/item/restraints/handcuffs, +/obj/item/clothing/mask/muzzle, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/maintenance/abandon_surgery) +"nyc" = ( +/obj/structure/rack, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"nyi" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral/full, +/obj/effect/landmark/start/cargo_technician, +/turf/open/floor/iron/dark/smooth_large, +/area/station/cargo/lobby) +"nyx" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos) +"nyJ" = ( +/obj/structure/table/wood/poker, +/obj/effect/spawner/random/entertainment/deck, +/obj/effect/spawner/random/entertainment/cigarette, +/turf/open/floor/wood/tile, +/area/station/commons/lounge) +"nzg" = ( +/obj/structure/stairs/north, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"nzB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Departures Lounge" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/exit/departure_lounge) +"nzN" = ( +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/obj/effect/turf_decal/siding/red{ + dir = 4 + }, +/obj/machinery/computer/security{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/security/warden) +"nzR" = ( +/obj/effect/turf_decal/siding/dark_blue{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"nAa" = ( +/obj/structure/table, +/obj/item/storage/bag/ore, +/obj/item/pickaxe, +/obj/item/mining_scanner, +/obj/item/flashlight, +/obj/item/gps/mining, +/obj/item/clothing/glasses/meson, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/dark/corner, +/area/station/commons/storage/mining) +"nAd" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/eva) +"nAu" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/cafeteria{ + dir = 8 + }, +/area/station/service/salon) +"nAy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Tech Storage" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/tech_storage, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/storage/tech) +"nAC" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/service/hydroponics) +"nAS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/storage/mining) +"nAW" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/bot_blue, +/obj/structure/bed/roller{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/hallway/primary/central) +"nAZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/wood, +/area/station/command/meeting_room/council) +"nBe" = ( +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/aisat/teleporter) +"nBi" = ( +/obj/machinery/door/firedoor, +/obj/machinery/smartfridge, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/hydroponics) +"nBm" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/folder/blue{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/paper_bin{ + pixel_y = 14; + pixel_x = -6 + }, +/obj/item/pen{ + pixel_y = 14; + pixel_x = -6 + }, +/obj/item/computer_disk/medical{ + pixel_x = -3 + }, +/obj/item/computer_disk/medical{ + pixel_x = 3 + }, +/obj/machinery/light/warm/directional/south, +/turf/open/floor/carpet/blue, +/area/station/command/heads_quarters/cmo) +"nBq" = ( +/obj/effect/turf_decal/tile/dark_green/half/contrasted, +/obj/effect/turf_decal/siding/white, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/science/circuits) +"nBI" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall7"; + location = "hall6" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"nCa" = ( +/obj/structure/plasticflaps/opaque{ + name = "Security Deliveries" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/brig/entrance) +"nCe" = ( +/obj/machinery/door/airlock{ + id_tag = "Toilet1x"; + name = "Toilet Unit 1" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/toilet/auxiliary) +"nCn" = ( +/obj/effect/turf_decal/tile/dark_blue/half, +/obj/machinery/light/cold/directional/south, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_half, +/area/station/security/brig) +"nCr" = ( +/obj/structure/lattice/catwalk, +/obj/structure/window/spawner/directional/east, +/obj/structure/window/spawner/directional/west, +/obj/structure/window/spawner/directional/north, +/obj/structure/window/spawner/directional/south, +/obj/structure/marker_beacon/indigo, +/turf/open/openspace, +/area/station/security/holding_cell) +"nCx" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/effect/turf_decal/box/corners, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"nCy" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"nCz" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer4, +/turf/open/openspace, +/area/station/engineering/atmos/hfr_room) +"nCG" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"nCH" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner/directional/north, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/security/checkpoint/supply) +"nCU" = ( +/obj/structure/railing{ + dir = 10 + }, +/obj/structure/trash_pile, +/obj/effect/spawner/random/clothing/gloves, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/railing, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"nCW" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"nDb" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 9 + }, +/obj/machinery/status_display/ai/directional/south, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"nDi" = ( +/obj/effect/turf_decal/siding/white, +/obj/structure/table/reinforced, +/obj/machinery/firealarm/directional/south, +/obj/machinery/coffeemaker, +/turf/open/floor/wood/large, +/area/station/medical/break_room) +"nDp" = ( +/obj/structure/rack/shelf, +/obj/effect/spawner/random/engineering/flashlight, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/fuel_pellet, +/obj/effect/spawner/random/maintenance/three, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"nDw" = ( +/obj/effect/turf_decal/tile/dark_red/diagonal_centre, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/diagonal, +/area/station/security/courtroom) +"nDx" = ( +/turf/open/floor/iron, +/area/station/engineering/supermatter/room) +"nDF" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hos) +"nDP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/wood, +/area/station/service/library/lounge) +"nDQ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/frame/machine{ + anchored = 1 + }, +/turf/open/space/basic, +/area/space/nearstation) +"nDS" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/disposalpipe/trunk/multiz{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/end, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"nEd" = ( +/obj/machinery/computer/security/mining{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/box, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"nEJ" = ( +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"nEK" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/exit/departure_lounge) +"nEN" = ( +/obj/structure/table, +/obj/machinery/requests_console/auto_name/directional/west, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"nES" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/small, +/area/station/science/research) +"nEV" = ( +/obj/structure/lattice/catwalk, +/obj/structure/window/spawner/directional/east, +/obj/structure/window/spawner/directional/west, +/obj/structure/window/spawner/directional/north, +/obj/structure/window/spawner/directional/south, +/obj/structure/marker_beacon/indigo, +/turf/open/openspace, +/area/station/security/brig/upper) +"nFi" = ( +/obj/machinery/door/window/brigdoor/left/directional/west{ + name = "Research Director's Consoles"; + req_access = list("rd") + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple/half{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/smooth_edge{ + dir = 8 + }, +/area/station/command/heads_quarters/rd) +"nFy" = ( +/obj/effect/turf_decal/lunar_sand/plating, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/glass/reinforced, +/area/station/science/xenobiology) +"nGd" = ( +/obj/machinery/modular_computer/preset/engineering{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/box, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"nGo" = ( +/obj/effect/turf_decal/tile/red/real_red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"nGt" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/station/solars/port/aft) +"nGD" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall19"; + location = "hall18" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"nGG" = ( +/obj/structure/chair/sofa/left/brown{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/station/security/detectives_office) +"nGJ" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/manifold/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/visible{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer4{ + dir = 6 + }, +/turf/open/floor/engine/vacuum, +/area/station/science/ordnance/freezerchamber) +"nGL" = ( +/obj/effect/turf_decal/tile/bar/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/checker, +/area/station/service/kitchen/diner) +"nHe" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/iron/white/side, +/area/station/science/ordnance) +"nHl" = ( +/obj/item/storage/medkit/emergency, +/obj/item/clothing/mask/breath, +/obj/item/stack/medical/suture/emergency, +/obj/structure/rack/shelf, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"nHn" = ( +/obj/structure/grille/broken, +/obj/structure/cable, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"nHx" = ( +/obj/item/folder/blue{ + pixel_y = 4 + }, +/obj/item/pen{ + pixel_y = 4 + }, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/obj/structure/table/reinforced, +/turf/open/floor/iron/diagonal, +/area/station/security/courtroom) +"nHB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/engine, +/area/station/science/explab) +"nHH" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Dormitories" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/common/cryopods) +"nHQ" = ( +/obj/effect/decal/cleanable/ash, +/turf/open/floor/engine/vacuum, +/area/station/science/ordnance/burnchamber) +"nHZ" = ( +/obj/effect/turf_decal/lunar_sand/plating, +/turf/open/floor/plating/airless, +/area/station/asteroid) +"nIa" = ( +/obj/structure/disposalpipe/junction/yjunction{ + dir = 8 + }, +/obj/machinery/light/small/directional/east, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"nIG" = ( +/obj/effect/turf_decal/caution/stand_clear{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/commons/storage/mining) +"nIH" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/item/kirbyplants/organic/plant10, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/glass, +/area/station/service/barber) +"nIJ" = ( +/obj/structure/lattice, +/obj/structure/window/spawner/directional/north, +/obj/structure/window/spawner/directional/south, +/turf/open/openspace, +/area/station/commons/fitness/recreation) +"nJx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/dark_blue, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"nJD" = ( +/obj/structure/railing, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"nJE" = ( +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_red/opposingcorners, +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/service/chapel) +"nJH" = ( +/obj/structure/closet/crate/trashcart/filled, +/obj/effect/spawner/random/medical/medkit, +/turf/open/floor/plating, +/area/station/maintenance/department/bridge) +"nJQ" = ( +/obj/effect/turf_decal/arrows{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) +"nJU" = ( +/obj/machinery/modular_computer/preset/curator, +/turf/open/floor/carpet/green, +/area/station/service/library/lounge) +"nKb" = ( +/obj/machinery/light_switch/directional/east, +/turf/open/floor/wood, +/area/station/command/meeting_room/council) +"nKd" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"nKg" = ( +/obj/structure/rack/shelf, +/obj/item/reagent_containers/hypospray/medipen, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/item/reagent_containers/hypospray/medipen, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/iron/white, +/area/station/medical/pharmacy) +"nKn" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit) +"nKp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/storage) +"nKB" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/department/security/upper) +"nKD" = ( +/obj/machinery/door/airlock/external{ + name = "Labor Camp Shuttle Airlock"; + shuttledocked = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/security/corrections_officer) +"nKJ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"nKK" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/wood/tile, +/area/station/service/theater) +"nKR" = ( +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/space/openspace, +/area/space/nearstation) +"nKZ" = ( +/obj/structure/railing, +/turf/open/openspace, +/area/station/maintenance/starboard/fore) +"nLE" = ( +/obj/structure/railing, +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/simple/violet/visible{ + dir = 4 + }, +/turf/open/openspace, +/area/station/engineering/atmos/upper) +"nLW" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/white/corner{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/station/service/library/lounge) +"nMt" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/port/fore) +"nMz" = ( +/obj/effect/turf_decal/tile/bar/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/service/kitchen/diner) +"nMF" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/side, +/area/station/science/genetics) +"nMG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/bridge) +"nMN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"nMO" = ( +/obj/effect/turf_decal/tile/neutral/half{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/medical/morgue) +"nMP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/bot_white, +/obj/structure/mannequin, +/turf/open/floor/iron/dark, +/area/station/medical/morgue) +"nMV" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/hallway/primary/central) +"nNb" = ( +/obj/structure/chair, +/turf/open/floor/iron/small, +/area/station/maintenance/port/aft) +"nNi" = ( +/obj/structure/railing, +/turf/open/openspace, +/area/station/engineering/atmos/upper) +"nNk" = ( +/obj/effect/turf_decal/trimline/green/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/mid_joiner{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/service/hydroponics) +"nNF" = ( +/obj/machinery/requests_console/auto_name/directional/east, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/mapping_helpers/requests_console/announcement, +/obj/effect/mapping_helpers/requests_console/information, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain) +"nNG" = ( +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) +"nNO" = ( +/obj/structure/trash_pile, +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/mapping_helpers/burnt_floor, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/glass, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/central) +"nNW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/hfr_room) +"nOe" = ( +/obj/structure/lattice, +/obj/effect/spawner/random/structure/grille, +/turf/open/space/basic, +/area/space/nearstation) +"nOi" = ( +/obj/structure/tank_holder/extinguisher, +/turf/open/floor/glass/reinforced, +/area/station/science/xenobiology) +"nOs" = ( +/obj/effect/turf_decal/tile/yellow/half, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction/flip, +/turf/open/floor/iron/white/smooth_edge, +/area/station/medical/pharmacy) +"nOt" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/railing, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/wood/large, +/area/station/tcommsat/computer) +"nOH" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos/office) +"nOM" = ( +/obj/machinery/door/airlock/medical{ + name = "Tertiary Surgical Theatre" + }, +/obj/effect/mapping_helpers/airlock/welded, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/abandon_surgery) +"nOP" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/station/engineering/atmos/hfr_room) +"nPr" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/iron, +/area/station/engineering/supermatter/room) +"nPt" = ( +/obj/effect/turf_decal/tile/blue/full, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/treatment_center) +"nPu" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/spawner/random/engineering/tracking_beacon, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) +"nPA" = ( +/obj/structure/table/wood, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/wood, +/area/station/commons/dorms/room3) +"nPC" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/command/heads_quarters/hos) +"nPJ" = ( +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/spawner/random/medical/medkit, +/obj/item/storage/medkit/regular{ + pixel_y = -6 + }, +/obj/structure/table/glass, +/turf/open/floor/iron/dark, +/area/station/medical/treatment_center) +"nPO" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/solars/port/fore) +"nQa" = ( +/obj/effect/turf_decal/siding/white/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white/corner, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/commons/dorms) +"nQh" = ( +/turf/closed/wall, +/area/station/hallway/secondary/command) +"nQw" = ( +/obj/structure/sign/painting/library{ + pixel_x = 32 + }, +/obj/machinery/cassette/mailbox, +/turf/open/floor/carpet/green, +/area/station/service/library/lounge) +"nQA" = ( +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"nQB" = ( +/turf/closed/wall, +/area/station/service/chapel) +"nQL" = ( +/turf/open/floor/iron/white/small, +/area/station/science/genetics) +"nQM" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/vacuum/external, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/processing) +"nQZ" = ( +/turf/closed/wall, +/area/station/medical/virology) +"nRh" = ( +/turf/closed/wall/r_wall, +/area/station/ai_monitored/command/nuke_storage) +"nRy" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"nRK" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/trash_pile, +/turf/open/floor/iron, +/area/station/maintenance/aft/greater) +"nRX" = ( +/obj/effect/turf_decal/tile/dark_blue/half{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/security/medical) +"nRY" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/visible, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"nRZ" = ( +/obj/effect/turf_decal/siding/dark_red{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue, +/obj/effect/turf_decal/siding/white/corner{ + dir = 8 + }, +/obj/structure/window/fulltile, +/turf/open/floor/iron/dark/smooth_large, +/area/station/common/laser_tag) +"nSa" = ( +/obj/machinery/atmospherics/pipe/bridge_pipe/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"nSe" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hopqueue"; + name = "HoP Queue Shutters" + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) +"nSi" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/light/warm/directional/east, +/obj/effect/turf_decal/box/corners, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"nSj" = ( +/obj/structure/railing, +/turf/open/openspace, +/area/station/maintenance/aft/upper) +"nSr" = ( +/obj/effect/turf_decal/lunar_sand/plating, +/obj/machinery/corral_corner{ + mapping_id = "6" + }, +/obj/machinery/duct, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"nSt" = ( +/obj/effect/turf_decal/arrows/red{ + dir = 4; + pixel_x = -15 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/hfr_room) +"nSu" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"nSD" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/delivery, +/obj/machinery/light/directional/west, +/obj/effect/landmark/start/hangover/closet, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"nSE" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/chair/wood{ + dir = 1 + }, +/obj/machinery/firealarm/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood/parquet, +/area/station/command/heads_quarters/captain) +"nSI" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/dark/end{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/entry) +"nSJ" = ( +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 9 + }, +/turf/open/floor/engine, +/area/station/science/ordnance) +"nSY" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/medical/medbay/lobby) +"nTd" = ( +/obj/effect/turf_decal/tile/green/opposingcorners{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/checker, +/area/station/hallway/primary/central) +"nTg" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/machinery/camera/directional/south{ + c_tag = "Science - Genetics Pen"; + network = list("ss13","rd") + }, +/turf/open/misc/dirt/planet, +/area/station/science/genetics) +"nTn" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/corral_corner{ + mapping_id = "3" + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"nTr" = ( +/obj/effect/turf_decal/stripes/blue/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/diagonal, +/area/station/ai_monitored/security/armory) +"nTw" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/maintenance/port/aft) +"nTA" = ( +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/box, +/obj/machinery/newscaster/directional/east, +/obj/machinery/computer/department_orders/service{ + dir = 8 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/hallway/secondary/service) +"nTG" = ( +/obj/effect/turf_decal/tile/green, +/obj/item/radio/intercom/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/hallway/primary/port) +"nTQ" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/turf/open/floor/glass/reinforced, +/area/station/security/warden) +"nUb" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/hallway/primary/central/aft) +"nUi" = ( +/obj/machinery/space_heater, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, +/obj/machinery/atmospherics/components/unary/portables_connector/layer2, +/turf/open/floor/plating, +/area/station/medical/virology) +"nUq" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/openspace, +/area/station/maintenance/department/security/upper) +"nUw" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"nUx" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/iron, +/area/station/maintenance/port/aft) +"nUC" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/airalarm/directional/west, +/obj/machinery/light/warm/directional/west, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/service/bar) +"nUD" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"nUH" = ( +/obj/machinery/door/window/brigdoor/left/directional/west{ + req_access = list("security"); + name = "Orderly Cell" + }, +/turf/open/floor/catwalk_floor/iron, +/area/station/security/checkpoint/engineering) +"nVe" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron/white/side, +/area/station/medical/medbay/lobby) +"nVg" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/station/command/heads_quarters/cmo) +"nVj" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/escape) +"nVk" = ( +/obj/machinery/light/warm/directional/south, +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ + filter_type = list(/datum/gas/nitrogen); + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"nVE" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/radio/intercom/directional/west, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood, +/area/station/medical/psychology) +"nVQ" = ( +/obj/structure/sign/directions/evac/directional/east, +/obj/machinery/light/directional/east, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"nVS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/structure/rack/gunrack, +/obj/effect/spawner/armory_spawn/smg, +/turf/open/floor/engine, +/area/station/ai_monitored/security/armory) +"nVY" = ( +/turf/closed/wall/r_wall, +/area/station/security/range) +"nWa" = ( +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/main) +"nWm" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/machinery/light/warm/directional/west, +/turf/open/floor/carpet, +/area/station/medical/psychology) +"nWr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/construction/mining/aux_base) +"nWs" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack/shelf, +/obj/item/stock_parts/subspace/filter{ + pixel_y = 5; + pixel_x = 4 + }, +/obj/item/stock_parts/subspace/filter{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/item/stock_parts/subspace/filter{ + pixel_x = -4; + pixel_y = -5 + }, +/obj/item/stock_parts/subspace/filter{ + pixel_x = 4; + pixel_y = -5 + }, +/obj/item/stock_parts/subspace/filter, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/storage/tcomms) +"nWI" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/glass/reinforced, +/area/station/hallway/secondary/entry) +"nWK" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/science/xenobio, +/obj/machinery/door/airlock/science/glass{ + name = "Specialized Research Access" + }, +/obj/effect/mapping_helpers/airlock/access/any/science/ordnance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/explab) +"nWL" = ( +/obj/effect/turf_decal/tile/dark_blue, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/security/holding_cell) +"nWR" = ( +/obj/structure/sign/poster/random/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"nWW" = ( +/obj/machinery/airalarm/directional/south, +/turf/open/floor/engine, +/area/station/engineering/main) +"nXd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/office) +"nXl" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/landmark/start/hangover/closet, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/escape_pod) +"nXw" = ( +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar/fourcorners, +/turf/open/floor/iron/checker, +/area/station/service/kitchen/diner) +"nXx" = ( +/mob/living/basic/chicken/brown{ + forced_gender = "male" + }, +/turf/open/floor/grass, +/area/station/service/hydroponics/upper) +"nXz" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Garden Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/service/hydroponics/garden) +"nXC" = ( +/obj/effect/spawner/random/structure/steam_vent, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"nXE" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"nXV" = ( +/obj/structure/chair/plastic{ + dir = 4 + }, +/obj/item/cigbutt/roach, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/machinery/light/blacklight/directional/west, +/turf/open/floor/iron/vaporwave, +/area/station/maintenance/department/security/upper) +"nYb" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"nYd" = ( +/obj/effect/turf_decal/tile/green/opposingcorners, +/obj/structure/sign/directions/evac/directional/south{ + dir = 4 + }, +/obj/machinery/camera/directional/south{ + c_tag = "Upper Central Primary Hallway - Service Dormitories" + }, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/hallway/primary/central/fore) +"nYi" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/rack/shelf, +/obj/item/pickaxe{ + pixel_x = 5 + }, +/obj/item/shovel, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"nYk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/brig/entrance) +"nYv" = ( +/obj/item/storage/toolbox/artistic{ + pixel_y = 3; + pixel_x = -2 + }, +/obj/structure/table/wood, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/sign/painting/library{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/station/maintenance/aft/greater) +"nYz" = ( +/obj/structure/table, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/exit/departure_lounge) +"nYA" = ( +/obj/structure/railing, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/command/gateway) +"nYB" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"nYC" = ( +/obj/effect/turf_decal/siding/white{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/sink/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/medical/treatment_center) +"nYH" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/spawner/random/trash/food_packaging, +/turf/open/floor/iron, +/area/station/maintenance/port/aft) +"nYX" = ( +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/turf/open/floor/iron/diagonal, +/area/station/security/courtroom) +"nZi" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/security/holding_cell) +"nZr" = ( +/obj/effect/spawner/random/structure/girder, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"nZs" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/maintenance/fore/lesser) +"nZC" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/bronze, +/turf/open/openspace, +/area/station/commons/storage/primary) +"oaf" = ( +/obj/effect/turf_decal/siding/white{ + dir = 5 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/small, +/area/station/common/cryopods) +"oah" = ( +/obj/structure/table/wood, +/obj/effect/spawner/random/bureaucracy/folder{ + spawn_random_offset = 4 + }, +/obj/effect/spawner/random/bureaucracy/folder{ + spawn_random_offset = 4 + }, +/obj/effect/spawner/random/bureaucracy/folder{ + spawn_random_offset = 4 + }, +/obj/item/camera_film{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/machinery/button/door/directional/south{ + id = "vac-office"; + name = "Privacy Shutters Control"; + pixel_x = 24 + }, +/turf/open/floor/carpet, +/area/station/commons/vacant_room/office) +"oan" = ( +/obj/structure/safe, +/obj/item/card/id/advanced/silver/reaper, +/obj/item/lazarus_injector, +/obj/effect/turf_decal/bot, +/obj/item/stack/spacecash/c1000, +/obj/item/stack/spacecash/c1000, +/obj/item/gun/energy/disabler, +/turf/open/floor/iron/dark/smooth_large, +/area/station/ai_monitored/command/nuke_storage) +"oar" = ( +/obj/structure/window/spawner/directional/south, +/obj/structure/window/spawner/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/lattice, +/turf/open/openspace, +/area/station/security/holding_cell) +"oax" = ( +/obj/structure/railing, +/turf/open/openspace, +/area/station/science/xenobiology) +"oaD" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/pen{ + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/hop) +"oaE" = ( +/obj/effect/turf_decal/siding/white, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/obj/effect/turf_decal/tile/purple/diagonal_centre, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/diagonal, +/area/station/science/breakroom) +"oaJ" = ( +/obj/structure/sign/poster/random/directional/south, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"oaV" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/digital_clock/directional/south, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/microwave{ + pixel_y = 2 + }, +/obj/structure/sign/poster/official/random/directional/east, +/turf/open/floor/iron/small, +/area/station/engineering/lobby) +"obs" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/airalarm/directional/east, +/turf/open/openspace, +/area/station/medical/pharmacy) +"obt" = ( +/obj/effect/turf_decal/trimline/dark_red/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark_red/corner, +/obj/effect/turf_decal/tile/dark_red{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/security/prison) +"obu" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"obE" = ( +/obj/machinery/door/airlock/bathroom{ + name = "Auxiliary Restroom" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/toilet/auxiliary) +"oca" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/engineering/atmos/hfr_room) +"och" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/computer/rdconsole, +/turf/open/floor/glass/reinforced, +/area/station/science/research) +"ocj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/science/ordnance) +"ocl" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/storage/mining) +"ocm" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners{ + dir = 1 + }, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"ocs" = ( +/obj/structure/curtain, +/turf/open/floor/iron/white/herringbone, +/area/station/medical/patients_rooms) +"ocv" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"ocz" = ( +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"ocB" = ( +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"ocM" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/cup/glass/bottle/holywater{ + pixel_x = -1; + pixel_y = 2 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/wood/large, +/area/station/service/chapel/office) +"ocZ" = ( +/obj/effect/turf_decal/tile/green/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/dark/corner, +/area/station/hallway/primary/central/fore) +"odH" = ( +/turf/closed/wall, +/area/station/service/hydroponics/garden) +"odI" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_red/opposingcorners, +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/service/chapel) +"odK" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/white/herringbone, +/area/station/medical/patients_rooms) +"odN" = ( +/obj/structure/table, +/obj/item/folder/blue{ + pixel_y = 6; + pixel_x = -4 + }, +/obj/item/folder{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) +"odW" = ( +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/mid_joiner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/medical/morgue) +"odX" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/blueshield) +"oeh" = ( +/obj/docking_port/stationary/mining_home/common, +/turf/open/space/basic, +/area/space/nearstation) +"oen" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green, +/turf/open/floor/wood, +/area/station/commons/dorms/room5) +"oey" = ( +/obj/structure/bookcase/random/nonfiction, +/turf/open/floor/wood, +/area/station/service/library/lounge) +"oeN" = ( +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/brig/entrance) +"ofb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/warm/directional/north, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/hfr_room) +"ofd" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/secondary/command) +"ofe" = ( +/obj/machinery/camera/directional/north{ + c_tag = "MiniSat External South"; + network = list("minisat") + }, +/turf/open/space/basic, +/area/space) +"ofh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/medical/medbay/central) +"ofj" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_red/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/service/chapel) +"ofo" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/obj/machinery/modular_computer/preset/civilian, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/yellow{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/science/explab) +"ofy" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/corner, +/area/station/hallway/secondary/recreation) +"ofC" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/chair/wood, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/station/medical/psychology) +"ofD" = ( +/obj/structure/hedge, +/obj/structure/window/fulltile, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/library) +"ofE" = ( +/obj/structure/fluff/paper/stack{ + dir = 9 + }, +/obj/structure/fluff/paper{ + dir = 9 + }, +/obj/item/pen{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/pen/blue{ + pixel_x = 7; + pixel_y = 8 + }, +/turf/open/floor/wood, +/area/station/maintenance/starboard/fore) +"ofF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Holodeck" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "holodeck" + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/recreation) +"ofG" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/landmark/start/hangover/closet, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/departure_lounge) +"ofY" = ( +/obj/effect/spawner/random/trash/food_packaging, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"ogc" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/chicken_grinder, +/turf/open/openspace, +/area/station/service/hydroponics/upper) +"ogl" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Diner Maintenance" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"ogm" = ( +/obj/structure/rack/shelf, +/obj/item/clothing/suit/hazardvest{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/clothing/suit/hazardvest{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/effect/spawner/random/engineering/flashlight{ + pixel_y = 5; + pixel_x = 2 + }, +/obj/effect/spawner/random/engineering/flashlight{ + pixel_x = -2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/station/engineering/supermatter/room) +"ogu" = ( +/obj/effect/turf_decal/tile/dark_red, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/science/robotics/augments) +"ogx" = ( +/obj/item/kirbyplants/organic/plant2, +/turf/open/floor/carpet, +/area/station/medical/psychology) +"ogC" = ( +/turf/closed/wall, +/area/station/medical/break_room) +"ogU" = ( +/obj/machinery/holopad, +/turf/open/floor/iron/dark, +/area/station/cargo/office) +"ogV" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron, +/area/station/maintenance/aft/greater) +"ohk" = ( +/obj/machinery/computer/order_console/mining, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/sign/poster/random/directional/north, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/iron/dark/smooth_large, +/area/station/maintenance/port/greater) +"ohm" = ( +/obj/item/kirbyplants/synthetic/plant26, +/turf/open/floor/carpet/cyan, +/area/station/command/heads_quarters/blueshield) +"ohn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plating, +/area/station/engineering/supermatter/room) +"ohI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet, +/area/station/security/detectives_office) +"ohQ" = ( +/obj/machinery/computer/crew{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/obj/machinery/airalarm/directional/south, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"ohU" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/camera/directional/west{ + c_tag = "Upper Central Primary Hallway - Science" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/machinery/vending/robotics, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/primary/central/aft) +"oii" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/structure/sign/directions/evac/directional/south{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"oim" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/department/security/upper) +"oir" = ( +/obj/machinery/atmospherics/pipe/smart/simple/general/visible{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/iron/white/corner{ + dir = 8 + }, +/area/station/science/ordnance) +"oiw" = ( +/obj/machinery/light/small/directional/east, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/maintenance/port/aft) +"oiN" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"oiX" = ( +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/brig/upper) +"ojb" = ( +/obj/structure/chair/pew/right{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/diagonal, +/area/station/security/courtroom) +"ojf" = ( +/obj/structure/chair/comfy{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/wood, +/area/station/commons/dorms/room2) +"ojT" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/yellow/visible, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/machinery/meter, +/turf/open/floor/engine, +/area/station/engineering/atmos) +"ojU" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"okb" = ( +/obj/effect/turf_decal/lunar_sand, +/obj/effect/turf_decal/lunar_sand/plating, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"oke" = ( +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","xeno","rd") + }, +/obj/machinery/corral_corner{ + mapping_id = "4" + }, +/obj/machinery/slime_pen_controller{ + mapping_id = "4"; + dir = 2 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"okh" = ( +/turf/open/floor/iron/dark, +/area/station/command/meeting_room/council) +"okv" = ( +/turf/closed/wall/r_wall, +/area/station/engineering/transit_tube) +"okz" = ( +/turf/open/floor/iron/cafeteria{ + dir = 5 + }, +/area/station/service/kitchen/diner) +"okL" = ( +/obj/structure/chair/sofa/bench/left, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/landmark/start/hangover, +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/entry) +"okY" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"olb" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/machinery/firealarm/directional/east, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/quartermaster, +/turf/open/floor/iron/dark/small, +/area/station/command/heads_quarters/qm) +"olc" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Medbay - Foyer"; + network = list("ss13","medbay") + }, +/obj/machinery/light/cold/directional/east, +/obj/machinery/atm/directional/east, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/medbay/lobby) +"olm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/circuitboard/machine/smes{ + pixel_y = -9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/department/electrical) +"olw" = ( +/obj/machinery/airalarm/directional/south, +/obj/machinery/light/warm/directional/south, +/obj/machinery/recharge_station, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/lobby) +"oly" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 8 + }, +/obj/effect/turf_decal/box/corners, +/turf/open/floor/engine, +/area/station/engineering/atmos/hfr_room) +"olD" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/station/engineering/supermatter/room) +"olG" = ( +/obj/effect/turf_decal/tile/yellow/half{ + dir = 1 + }, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/turf/open/floor/iron/white/smooth_edge{ + dir = 1 + }, +/area/station/medical/pharmacy) +"olR" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/table/reinforced, +/turf/open/floor/iron, +/area/station/science/robotics/mechbay) +"omi" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/iron/white/side{ + dir = 1 + }, +/area/station/science/research) +"oml" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/iron/edge, +/area/station/commons/lounge) +"omn" = ( +/turf/open/floor/iron/small, +/area/station/science/research) +"omq" = ( +/obj/structure/sign/warning/explosives/alt/directional/west, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/engine, +/area/station/science/ordnance/testlab) +"omr" = ( +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 8 + }, +/obj/machinery/light/cold/directional/south, +/obj/structure/hedge, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/science/circuits) +"omw" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/maintenance/disposal/incinerator) +"omJ" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Mix to Distro" + }, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"omP" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/engineering/storage) +"omT" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/machinery/firealarm/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Security - Lower Checkpoint" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/security/brig/entrance) +"ona" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad" + }, +/obj/structure/plasticflaps, +/turf/open/floor/plating, +/area/station/cargo/storage) +"one" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"oni" = ( +/turf/open/openspace, +/area/station/maintenance/solars/port/fore) +"onk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"onl" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/security/corrections_officer) +"onm" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/purple, +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = 13; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = 13; + pixel_y = 4 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/science/explab) +"onp" = ( +/obj/machinery/computer/shuttle/mining, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/construction/mining/aux_base) +"ony" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/light/warm/directional/north, +/obj/structure/cable, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/service/library) +"onC" = ( +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/cargo/office) +"onE" = ( +/obj/effect/spawner/random/engineering/flashlight, +/obj/structure/rack, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"onI" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/kirbyplants/organic/plant6, +/turf/open/floor/wood/tile, +/area/station/commons/lounge) +"onY" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/frame/machine, +/turf/open/floor/iron, +/area/station/maintenance/fore/lesser) +"oof" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/trunk/multiz/down{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/openspace, +/area/station/maintenance/starboard/fore) +"oog" = ( +/obj/structure/industrial_lift/public, +/obj/effect/landmark/lift_id{ + specific_lift_id = "arrivals_lift" + }, +/turf/open/floor/plating/elevatorshaft, +/area/station/hallway/primary/port) +"oos" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"oox" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/treatment_center) +"ooR" = ( +/obj/machinery/chem_master, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/machinery/firealarm/directional/north, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/pharmacy) +"ooX" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Starboard Primary Hallway - Port" + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/hallway/primary/starboard) +"ooZ" = ( +/obj/structure/girder, +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/department/bridge) +"opk" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/science/ordnance) +"opo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, +/obj/structure/cable, +/turf/open/floor/grass, +/area/station/medical/virology) +"opq" = ( +/obj/structure/railing{ + dir = 5 + }, +/turf/open/openspace, +/area/station/engineering/atmos/hfr_room) +"opx" = ( +/obj/machinery/computer/security/telescreen{ + network = list("xeno"); + pixel_y = 26 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/light/cold/directional/north, +/obj/machinery/modular_computer/preset/civilian, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/white, +/area/station/science/xenobiology) +"opN" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/turf/open/floor/glass/reinforced, +/area/station/security/warden) +"oqc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, +/obj/effect/landmark/start/virologist, +/obj/effect/turf_decal/tile/green/opposingcorners, +/turf/open/floor/iron/white, +/area/station/medical/virology) +"oqd" = ( +/obj/structure/girder, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/spawner/structure/electrified_grille, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"oqt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/grunge{ + name = "Public Courtroom Seating" + }, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/courtroom) +"oqv" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/service{ + name = "Private Spa" + }, +/obj/effect/mapping_helpers/airlock/access/any/service/general, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/service/salon) +"oqw" = ( +/obj/effect/turf_decal/tile/yellow/half, +/obj/structure/chair/office/light, +/obj/effect/landmark/start/chemist, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/white/smooth_edge, +/area/station/medical/pharmacy) +"oqB" = ( +/obj/machinery/telecomms/server/presets/command, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/circuit/telecomms/mainframe, +/area/station/tcommsat/server) +"oqH" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/small, +/area/station/commons/toilet/auxiliary) +"oqO" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/medical/pharmacy) +"orm" = ( +/obj/effect/turf_decal/box/white{ + color = "#EFB341" + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/hfr_room) +"orr" = ( +/obj/structure/flora/bush/sparsegrass/style_random, +/turf/open/misc/dirt/planet, +/area/station/science/genetics) +"orP" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/structure/window/spawner/directional/east, +/obj/item/food/muffin/berry{ + pixel_x = -4 + }, +/obj/item/food/muffin/berry{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/food/muffin/berry{ + pixel_x = 5 + }, +/obj/item/food/muffin/berry{ + pixel_x = 5; + pixel_y = 6 + }, +/turf/open/floor/wood/tile, +/area/station/hallway/secondary/exit/departure_lounge) +"orS" = ( +/obj/structure/rack/shelf, +/obj/effect/turf_decal/box/blue, +/obj/item/fishing_rod{ + pixel_x = 6 + }, +/obj/item/fishing_rod, +/obj/item/fishing_rod{ + pixel_y = 6 + }, +/turf/open/floor/plastic, +/area/station/common/carpshop) +"orV" = ( +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch" + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"orX" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/item/reagent_containers/cup/glass/drinkingglass/shotglass{ + pixel_y = 11; + pixel_x = 6 + }, +/obj/item/reagent_containers/cup/glass/drinkingglass/shotglass{ + pixel_x = -7; + pixel_y = 9 + }, +/obj/item/food/twobread, +/turf/open/floor/wood, +/area/station/maintenance/starboard/fore) +"orZ" = ( +/obj/structure/barricade/wooden/crude, +/obj/effect/mapping_helpers/airlock/welded, +/obj/machinery/door/airlock/mining{ + name = "Abandoned Near-Station Mining Dock" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"osc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/trash_pile, +/turf/open/floor/plating, +/area/station/maintenance/disposal) +"osg" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"osh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"osi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/chem_master, +/turf/open/floor/iron/dark/small, +/area/station/science/xenobiology) +"osk" = ( +/obj/machinery/light/small/directional/east, +/obj/structure/cable, +/turf/open/floor/wood, +/area/station/commons/dorms/room6) +"osl" = ( +/obj/effect/turf_decal/siding/white{ + dir = 6 + }, +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/obj/structure/disposalpipe/segment, +/obj/item/radio/intercom/directional/east, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/diagonal, +/area/station/commons/toilet/auxiliary) +"osq" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"osr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"oss" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/tile, +/area/station/commons/lounge) +"osE" = ( +/obj/machinery/holopad, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"osL" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain/cloth/fancy/mechanical{ + id = "backbarbercurtains" + }, +/turf/open/floor/plating, +/area/station/service/barber) +"osM" = ( +/obj/effect/turf_decal/tile/dark_blue/half, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/security/brig) +"osX" = ( +/obj/effect/decal/cleanable/oil/slippery, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/robotics/lab) +"otd" = ( +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/bar/fourcorners, +/turf/open/floor/iron/checker, +/area/station/service/kitchen/diner) +"oto" = ( +/obj/structure/cable, +/turf/open/floor/wood, +/area/station/commons/dorms/room6) +"ott" = ( +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/obj/machinery/atmospherics/components/trinary/filter/atmos/co2{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"otD" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/obj/machinery/requests_console/auto_name/directional/east, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/mapping_helpers/requests_console/information, +/obj/machinery/light/cold/directional/east, +/obj/machinery/research/anomaly_refinery, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/science/ordnance/testlab) +"otG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/half{ + dir = 1 + }, +/turf/open/floor/iron/white/smooth_corner, +/area/station/medical/pharmacy) +"otO" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/command/storage/eva) +"otP" = ( +/obj/effect/turf_decal/lunar_sand, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating/airless, +/area/station/asteroid) +"otS" = ( +/obj/machinery/door/morgue{ + name = "Confession Booth (Chaplain)"; + req_access = list("chapel_office") + }, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/chapel/office) +"otT" = ( +/obj/structure/closet/secure_closet/brig{ + id = "medcell"; + name = "Medical Cell Locker" + }, +/turf/open/floor/catwalk_floor/iron, +/area/station/security/checkpoint/medical) +"otY" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/hfr_room) +"oui" = ( +/obj/structure/ore_vein/iron, +/turf/open/misc/asteroid/moon/airless, +/area/station/asteroid) +"our" = ( +/obj/machinery/firealarm/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"oux" = ( +/obj/effect/spawner/random/structure/table_or_rack, +/obj/effect/spawner/random/medical/surgery_tool, +/obj/item/bodybag, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"ouz" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/railing{ + dir = 5 + }, +/turf/open/openspace, +/area/station/science/xenobiology) +"ouH" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/item/surgery_tray/morgue, +/turf/open/floor/iron/dark, +/area/station/medical/morgue) +"ouR" = ( +/obj/machinery/camera/directional/north{ + c_tag = "MiniSat External Upper South-West"; + network = list("minisat") + }, +/turf/open/space/openspace, +/area/space) +"ouS" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/recreation) +"ouZ" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/engineering/atmos/hfr_room) +"ovj" = ( +/obj/item/radio/intercom/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/command/meeting_room/council) +"ovm" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "Atmospherics Blast Door" + }, +/turf/open/floor/plating, +/area/station/engineering/atmos/upper) +"ovI" = ( +/turf/closed/wall, +/area/station/hallway/secondary/service) +"ovK" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/turf_decal/box/corners, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/plasma, +/turf/open/floor/engine, +/area/station/maintenance/disposal/incinerator) +"ovQ" = ( +/obj/effect/turf_decal/vg_decals/atmos/nitrous_oxide, +/turf/open/floor/engine/n2o, +/area/station/engineering/atmos/upper) +"ovW" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/supply/mining, +/obj/machinery/door/airlock/mining/glass{ + name = "Mining Office" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/cargo/miningoffice) +"owa" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/airlock/security{ + name = "Permabrig Visitation"; + id_tag = "visit_bolt" + }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/prison/visit) +"owd" = ( +/obj/machinery/atmospherics/pipe/bridge_pipe/supply/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/violet/visible, +/turf/open/floor/engine, +/area/station/engineering/atmos) +"owu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line, +/obj/effect/landmark/blobstart, +/obj/structure/cable, +/obj/effect/landmark/generic_maintenance_landmark, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"oxi" = ( +/obj/effect/spawner/random/structure/girder, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"oxt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"oxu" = ( +/mob/living/basic/bot/medbot/autopatrol, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"oxw" = ( +/obj/structure/moisture_trap, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"oxB" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"oxQ" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/fyellow/old, +/obj/item/storage/toolbox/electrical, +/obj/item/multitool, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"oxR" = ( +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/qm) +"oyb" = ( +/obj/machinery/modular_computer/preset/research{ + dir = 8 + }, +/turf/open/floor/glass/reinforced, +/area/station/command/heads_quarters/rd) +"oye" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Chapel Maintenance" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/service/chapel) +"oyu" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"oyz" = ( +/obj/structure/cable/layer1, +/obj/structure/cable/layer3, +/turf/open/floor/plating, +/area/station/ai_monitored/turret_protected/aisat/maint) +"oyB" = ( +/obj/structure/rack, +/obj/item/reagent_containers/pill/maintenance, +/obj/effect/spawner/random/maintenance/three, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"oyF" = ( +/obj/effect/spawner/random/trash/graffiti, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"oyL" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 9 + }, +/turf/open/space/basic, +/area/space) +"oyX" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"ozf" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) +"ozj" = ( +/obj/effect/turf_decal/vg_decals/atmos/nitrogen, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos/upper) +"ozr" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/machinery/airalarm/directional/north, +/obj/machinery/light/cold/directional/north, +/obj/machinery/washing_machine, +/turf/open/floor/iron/kitchen{ + dir = 1 + }, +/area/station/security/prison) +"ozO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/common/wrestling/arena) +"ozS" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/psychologist, +/turf/open/floor/wood, +/area/station/medical/psychology) +"ozV" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/engineering/atmos/hfr_room) +"ozX" = ( +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"oAe" = ( +/obj/structure/table/reinforced, +/obj/item/computer_disk/engineering{ + pixel_y = 14 + }, +/obj/item/computer_disk/engineering{ + pixel_y = 8; + pixel_x = 4 + }, +/obj/item/computer_disk/engineering{ + pixel_y = 8; + pixel_x = -4 + }, +/turf/open/floor/carpet/black, +/area/station/command/heads_quarters/ce) +"oAn" = ( +/obj/effect/turf_decal/lunar_sand/plating, +/obj/machinery/camera/directional/east{ + c_tag = "MiniSat External West"; + network = list("minisat") + }, +/turf/open/floor/plating/airless, +/area/station/asteroid) +"oAp" = ( +/obj/machinery/airalarm/directional/south, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"oAt" = ( +/obj/structure/lattice/catwalk, +/obj/structure/ladder, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/openspace, +/area/station/maintenance/aft/greater) +"oAv" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"oAy" = ( +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 9 + }, +/obj/machinery/airalarm/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/white/diagonal, +/area/station/common/spa) +"oAQ" = ( +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/machinery/door/airlock/engineering{ + name = "Abandoned Power Station" + }, +/obj/effect/mapping_helpers/airlock/welded, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/department/electrical) +"oAR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/machinery/station_map/engineering/directional/east, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"oAS" = ( +/obj/effect/spawner/random/trash/food_packaging, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"oBg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"oBm" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/chair, +/obj/effect/turf_decal/tile/neutral/anticorner{ + dir = 4 + }, +/turf/open/floor/iron/corner{ + dir = 8 + }, +/area/station/commons/storage/mining) +"oBB" = ( +/obj/structure/table, +/obj/machinery/door/window/left/directional/north{ + name = "Hydroponics Access" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/hydroponics) +"oBN" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"oBV" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/vacant_room/office) +"oCg" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark/full, +/obj/machinery/computer/cryopod/directional/west, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/delivery/white{ + color = "#00ff00" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/prison) +"oCn" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/glass/reinforced, +/area/station/science/xenobiology) +"oCo" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/bot_blue, +/obj/machinery/airalarm/directional/west, +/obj/structure/bed/roller, +/obj/structure/railing, +/turf/open/floor/iron/white, +/area/station/hallway/primary/central/fore) +"oCF" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/science/xenobiology) +"oCG" = ( +/turf/closed/wall, +/area/station/hallway/secondary/recreation) +"oDg" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/closet/emcloset, +/obj/effect/landmark/start/hangover/closet, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/departure_lounge) +"oDo" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) +"oDp" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/secondary/command) +"oDs" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"oDv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Departures Lounge" + }, +/obj/structure/sign/directions/evac/directional/south{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/exit) +"oDB" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/main) +"oDH" = ( +/obj/structure/cable, +/obj/machinery/light/cold/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/status_display/ai/directional/west, +/turf/open/floor/iron, +/area/station/science/xenobiology) +"oDM" = ( +/turf/closed/indestructible/riveted{ + desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease"; + name = "hyper-reinforced wall" + }, +/area/station/science/ordnance/bomb) +"oDT" = ( +/obj/structure/bookcase/random/reference, +/turf/open/floor/wood, +/area/station/service/library/lounge) +"oEi" = ( +/obj/structure/grille, +/obj/structure/lattice, +/turf/open/space/openspace, +/area/space/nearstation) +"oEu" = ( +/turf/closed/wall/r_wall, +/area/station/security/detectives_office) +"oEx" = ( +/obj/effect/spawner/random/maintenance/three, +/obj/structure/rack/shelf, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"oED" = ( +/obj/structure/table, +/turf/open/floor/wood, +/area/station/command/meeting_room/council) +"oEN" = ( +/obj/machinery/computer/security/mining, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"oEQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"oER" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/spawner/random/maintenance, +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"oEW" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/landmark/start/chaplain, +/turf/open/floor/wood/large, +/area/station/service/chapel) +"oEX" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/service/library) +"oEY" = ( +/obj/effect/turf_decal/tile/dark_red{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 1 + }, +/area/station/common/laser_tag) +"oFc" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_red/half{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/half, +/area/station/command/heads_quarters/hop) +"oFe" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plating, +/area/station/commons/storage/mining) +"oFg" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/glass/reinforced, +/area/station/science/xenobiology) +"oFm" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/checker{ + dir = 1 + }, +/area/station/hallway/primary/central/fore) +"oFM" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/cargo/sorting) +"oFT" = ( +/obj/effect/turf_decal/tile/green/opposingcorners, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"oFW" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison) +"oGg" = ( +/obj/structure/stairs/north, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"oGh" = ( +/obj/structure/table/reinforced, +/obj/structure/reagent_dispensers/wall/peppertank/directional/west, +/obj/machinery/computer/security/telescreen/research{ + pixel_y = 2; + dir = 4 + }, +/obj/machinery/light/cold/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/security/checkpoint/science/research) +"oGl" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/botanist, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/hydroponics) +"oGm" = ( +/obj/structure/lattice, +/obj/structure/window/spawner/directional/north, +/obj/structure/window/spawner/directional/south, +/turf/open/openspace, +/area/station/security/brig/upper) +"oGx" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/landmark/blobstart, +/obj/effect/landmark/generic_maintenance_landmark, +/turf/open/floor/iron, +/area/station/maintenance/aft/greater) +"oGy" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/trunk/multiz/down{ + dir = 1 + }, +/turf/open/openspace, +/area/station/maintenance/department/security/upper) +"oGE" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/engineering/storage) +"oGK" = ( +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain) +"oGQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/maintenance/port/fore) +"oGU" = ( +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"oHc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/caution, +/obj/machinery/light/cold/directional/north, +/obj/structure/reflector/box, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"oHj" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/effect/turf_decal/box/red, +/obj/effect/turf_decal/lunar_sand/plating, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"oHu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance/external{ + name = "Chemistry Factory" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/all/medical/chemistry, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/pharmacy) +"oHw" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/primary/central/fore) +"oHz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Port Secondary Hallway" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/primary/port) +"oHA" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"oHE" = ( +/turf/closed/wall/r_wall, +/area/station/science/robotics/mechbay) +"oHG" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner, +/obj/structure/cable, +/turf/open/floor/iron/white/smooth_edge, +/area/station/medical/treatment_center) +"oHK" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/maintenance/department/security/lower) +"oIf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/brig/entrance) +"oIh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/dark_blue{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"oIs" = ( +/obj/machinery/flasher/directional/north{ + id = "justiceflash" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/red/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/security/execution/education) +"oIx" = ( +/obj/structure/marker_beacon/burgundy, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 4 + }, +/obj/structure/railing, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/gateway) +"oJf" = ( +/obj/machinery/camera/directional/south{ + c_tag = "Engineering - Emitter Room"; + network = list("ss13","engine") + }, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"oJj" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"oJp" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/machinery/door/airlock/corporate/glass{ + name = "Meeting Hall" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) +"oJu" = ( +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating, +/area/station/medical/chemistry) +"oJP" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/openspace, +/area/station/hallway/primary/central) +"oKr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"oKt" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/station/ai_monitored/turret_protected/aisat_interior) +"oKz" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"oKD" = ( +/obj/machinery/button/door/directional/west{ + pixel_y = -2; + id = "briggatez1"; + name = "Gate Shutters Control"; + req_access = list("security") + }, +/obj/machinery/button/door/directional/west{ + pixel_y = -2; + pixel_x = -36; + id = "brigdeskz1"; + name = "Desk Shutters Control"; + req_access = list("security") + }, +/obj/structure/chair/office, +/obj/machinery/button/flasher{ + id = "brigflashdoorz1"; + name = "Flash Control"; + pixel_x = -30; + pixel_y = 7; + req_access = list("security") + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/security/brig/entrance) +"oKJ" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/structure/chair/sofa/bench{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"oLq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Bridge Access - Port" + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"oLs" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/airalarm/directional/south, +/obj/machinery/light/warm/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tcomms) +"oLv" = ( +/obj/structure/stairs/north, +/turf/open/floor/plating, +/area/station/hallway/secondary/recreation) +"oLz" = ( +/obj/effect/turf_decal/box, +/obj/machinery/modular_computer/preset/engineering{ + dir = 4 + }, +/obj/machinery/light_switch/directional/west{ + pixel_y = -8 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/lobby) +"oLQ" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/orange/visible, +/obj/machinery/meter, +/turf/open/floor/engine, +/area/station/science/ordnance) +"oMa" = ( +/obj/structure/table/glass, +/obj/item/storage/box/bodybags{ + pixel_x = 3; + pixel_y = 6 + }, +/obj/item/storage/box/gloves{ + pixel_x = 1; + pixel_y = 1 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -10; + pixel_y = -1 + }, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/white/small, +/area/station/science/genetics) +"oMk" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/siding/wood/end{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/entry) +"oMC" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/engine, +/area/station/security/office) +"oMF" = ( +/obj/item/cultivator, +/obj/item/crowbar, +/obj/item/plant_analyzer, +/obj/item/reagent_containers/cup/watering_can, +/obj/structure/table/glass, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/hydroponics) +"oMH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"oMJ" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"oML" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"oNa" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"oNd" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/service/bar) +"oNf" = ( +/obj/effect/spawner/random/structure/crate, +/obj/effect/spawner/random/food_or_drink/snack, +/obj/effect/spawner/random/food_or_drink/booze, +/obj/effect/spawner/random/food_or_drink/snack, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"oNi" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair/sofa/left{ + color = "#DE3A3A" + }, +/obj/machinery/barsign/directional/north, +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood/tile, +/area/station/commons/lounge) +"oNn" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/lattice, +/turf/open/openspace, +/area/station/hallway/primary/central) +"oNC" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/effect/turf_decal/box/corners, +/obj/machinery/camera/directional/east{ + c_tag = "Engineering - Supermatter Room Starboard"; + network = list("ss13","engine") + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"oNN" = ( +/obj/effect/turf_decal/tile/red/real_red{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/white/corner{ + dir = 1 + }, +/area/station/hallway/secondary/entry) +"oNT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/blobstart, +/turf/open/floor/carpet, +/area/station/service/abandoned_gambling_den) +"oNZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/engineering/supermatter/room) +"oOe" = ( +/obj/effect/turf_decal/tile/dark_red{ + dir = 4 + }, +/obj/machinery/photocopier, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark, +/area/station/science/robotics/augments) +"oOy" = ( +/obj/structure/frame/machine, +/obj/item/stack/cable_coil/five, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"oOH" = ( +/obj/structure/closet/secure_closet/security/science, +/obj/machinery/requests_console/auto_name/directional/north, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/mapping_helpers/requests_console/information, +/obj/item/crowbar, +/obj/item/wrench, +/obj/item/clothing/mask/gas, +/obj/item/radio, +/obj/item/clothing/mask/whistle, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/security/checkpoint/science/research) +"oOL" = ( +/obj/machinery/computer/atmos_control/air_tank, +/obj/effect/turf_decal/box, +/turf/open/floor/engine, +/area/station/engineering/atmos) +"oPz" = ( +/obj/structure/fluff/paper/stack, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/fluff/paper/corner{ + dir = 4 + }, +/obj/item/paper_bin{ + pixel_x = -12; + pixel_y = 4 + }, +/obj/item/perfume/wood{ + pixel_x = 12; + pixel_y = -3 + }, +/obj/item/paperwork, +/turf/open/floor/wood, +/area/station/maintenance/starboard/fore) +"oPF" = ( +/obj/structure/table/reinforced, +/obj/machinery/coffeemaker, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/sign/poster/official/random/directional/north, +/turf/open/floor/iron/small, +/area/station/engineering/atmos/office) +"oPK" = ( +/obj/effect/spawner/random/structure/table_or_rack, +/obj/effect/spawner/random/maintenance, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron/small, +/area/station/maintenance/port/aft) +"oPL" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/purple, +/turf/open/space/basic, +/area/space/nearstation) +"oPS" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "bridge-left" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/command{ + name = "Bridge" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/bridge) +"oPW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/machinery/meter, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/maintenance/department/science/xenobiology) +"oQe" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"oQf" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/solars/port/fore) +"oQg" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/lunar_sand, +/turf/open/floor/glass/reinforced, +/area/station/science/xenobiology) +"oQi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/reagent_containers/spray/cleaner{ + pixel_y = 14; + pixel_x = -30 + }, +/obj/structure/chair/office/tactical, +/turf/open/floor/iron/dark, +/area/station/medical/morgue) +"oQl" = ( +/obj/item/radio/intercom/directional/east, +/obj/structure/chair/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/green, +/area/station/service/library) +"oQK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"oQU" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"oQW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/artifact_heatingpad{ + dir = 4 + }, +/obj/effect/artifact_spawner, +/turf/open/floor/engine, +/area/station/science/explab) +"oRd" = ( +/obj/structure/railing, +/obj/machinery/light/small/directional/east, +/turf/open/openspace, +/area/station/maintenance/solars/port/fore) +"oRk" = ( +/obj/effect/spawner/random/engineering/canister, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"oRu" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/security/office) +"oRX" = ( +/obj/structure/transit_tube/curved{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/space/openspace, +/area/space/nearstation) +"oRY" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/machinery/power/energy_accumulator/grounding_rod/anchored, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"oSc" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rndlab1"; + name = "Research and Development Shutter" + }, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/machinery/door/window/right/directional/north{ + name = "Research Lab Desk"; + req_access = list("science") + }, +/turf/open/floor/iron/dark, +/area/station/science/research) +"oSf" = ( +/obj/structure/cable/multilayer/multiz, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"oSl" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/obj/effect/turf_decal/lunar_sand, +/turf/open/floor/glass/reinforced, +/area/station/science/xenobiology) +"oSn" = ( +/obj/effect/decal/cleanable/glass, +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"oSq" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/blobstart, +/obj/effect/landmark/generic_maintenance_landmark, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"oSy" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"oSI" = ( +/obj/machinery/door/poddoor{ + id = "QMLoaddoor"; + name = "Supply Dock Loading Door" + }, +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad" + }, +/turf/open/floor/plating, +/area/station/cargo/storage) +"oSX" = ( +/obj/structure/training_machine, +/obj/item/target, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/iron/large, +/area/station/common/wrestling/arena) +"oTb" = ( +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"oTq" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance/external{ + name = "Electrical Storage" + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"oTr" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/maintenance/port/fore) +"oTV" = ( +/obj/effect/turf_decal/tile/dark_red/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark_red, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/common/laser_tag) +"oUe" = ( +/obj/structure/stairs/east, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"oUk" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"oUr" = ( +/obj/machinery/door/firedoor, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=lowhall5"; + location = "lowhall4" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/primary/central) +"oUx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"oUH" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"oUQ" = ( +/obj/machinery/camera/directional/south{ + c_tag = "Recreation - Holodeck Aft" + }, +/turf/open/floor/engine{ + name = "Holodeck Projector Floor" + }, +/area/station/holodeck/rec_center) +"oUT" = ( +/obj/machinery/door/airlock/public/glass/incinerator/atmos_exterior, +/obj/effect/mapping_helpers/airlock/locked, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/engine, +/area/station/maintenance/disposal/incinerator) +"oUZ" = ( +/obj/effect/turf_decal/box/red, +/obj/item/banner/red, +/obj/effect/turf_decal/siding/white/corner, +/turf/open/floor/iron/dark/smooth_large, +/area/station/common/laser_tag) +"oVa" = ( +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/machinery/light/cold/directional/north, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/command/meeting_room/council) +"oVi" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/commons/storage/mining) +"oVj" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"oVu" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/turf/open/floor/glass/reinforced, +/area/station/hallway/primary/central/fore) +"oVJ" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/command/teleporter) +"oVO" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/nestbox, +/turf/open/floor/grass, +/area/station/service/hydroponics/upper) +"oVX" = ( +/obj/structure/stairs/east, +/turf/open/floor/plating, +/area/station/maintenance/department/security/lower) +"oVZ" = ( +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/layer_manifold/violet/visible, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"oWd" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/openspace, +/area/station/science/cytology) +"oWh" = ( +/obj/structure/chair/sofa/bench/left, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/exit/departure_lounge) +"oWo" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"oWq" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/camera/directional/west{ + c_tag = "Atmospherics - Upper Deck Access"; + network = list("ss13","engine") + }, +/turf/open/openspace, +/area/station/engineering/main) +"oWC" = ( +/turf/closed/wall, +/area/station/security/evidence) +"oWD" = ( +/obj/structure/girder, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/effect/spawner/structure/electrified_grille, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"oWI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"oWU" = ( +/obj/effect/spawner/random/trash/mess, +/obj/machinery/light/small/directional/east, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"oXw" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"oXy" = ( +/obj/machinery/camera/directional/west{ + c_tag = "Xenobiology Lab - Secure Cell Interior"; + network = list("ss13","xeno","rd") + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"oXK" = ( +/obj/structure/stairs/east, +/turf/open/floor/plating, +/area/station/engineering/supermatter/room) +"oYe" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"oYn" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/machinery/plumbing/sender, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/medical/chemistry) +"oYo" = ( +/obj/machinery/door/airlock/external{ + name = "Labor Camp Shuttle Airlock"; + shuttledocked = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/station/security/processing) +"oYw" = ( +/obj/machinery/computer/monitor{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"oYR" = ( +/obj/structure/closet/firecloset, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"oYW" = ( +/obj/structure/railing, +/turf/open/openspace, +/area/station/commons/storage/tools) +"oYX" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/bot, +/obj/machinery/light/warm/directional/east, +/turf/open/floor/wood/tile, +/area/station/commons/lounge) +"oZn" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/turf/open/floor/plating, +/area/station/engineering/atmos) +"oZo" = ( +/obj/effect/turf_decal/tile/dark_red/half, +/obj/machinery/button/elevator/directional/south{ + id = "robo_mechbaylift"; + req_access = list("robotics"); + pixel_y = -24 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_half, +/area/station/science/robotics/lab) +"oZu" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/item/book/manual/wiki/engineering_hacking{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/book/manual/wiki/engineering_guide, +/obj/item/book/manual/wiki/engineering_construction{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/structure/rack, +/turf/open/floor/iron/dark, +/area/station/commons/storage/tools) +"oZv" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/machinery/airalarm/directional/north, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/security/brig/entrance) +"oZy" = ( +/obj/structure/table/reinforced/plastitaniumglass, +/obj/machinery/airalarm/directional/south, +/obj/machinery/light/small/blacklight/directional/south, +/turf/open/floor/iron/dark/small, +/area/station/commons/dorms/room4) +"oZA" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "Atmospherics Blast Door" + }, +/turf/open/floor/plating, +/area/station/engineering/atmos/storage) +"oZD" = ( +/obj/structure/chair/stool/bar/directional/north, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood/tile, +/area/station/service/bar) +"oZI" = ( +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/eva) +"oZU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/green, +/area/station/command/heads_quarters/nt_rep) +"pag" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/light/warm/directional/east, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos/office) +"pau" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Vacant Office Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/commons/vacant_room/office) +"paD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/science/robotics/mechbay) +"pbd" = ( +/obj/structure/lattice, +/obj/structure/railing, +/turf/open/openspace, +/area/station/hallway/primary/central) +"pbg" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/ladder, +/turf/open/floor/plating, +/area/station/maintenance/solars/starboard/fore) +"pbt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"pbv" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/primary/central/fore) +"pbx" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Xtestlab"; + name = "Test Chamber Blast Door" + }, +/obj/machinery/door/window/brigdoor/left/directional/east{ + name = "Secure Creature Pen"; + req_access = list("xenobiology") + }, +/obj/machinery/door/window/brigdoor/left/directional/west{ + name = "Secure Creature Pen"; + req_access = list("xenobiology") + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"pbB" = ( +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/service/kitchen/diner) +"pbP" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/station/solars/starboard/aft) +"pbT" = ( +/obj/structure/tank_dispenser, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/iron/white, +/area/station/science/ordnance) +"pbW" = ( +/obj/effect/spawner/random/engineering/tracking_beacon, +/turf/open/floor/glass/reinforced, +/area/station/science/research) +"pcb" = ( +/obj/effect/turf_decal/tile/bar/fourcorners, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/checker, +/area/station/service/kitchen/diner) +"pcd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"pce" = ( +/obj/machinery/digital_clock/directional/east, +/turf/open/openspace, +/area/station/service/kitchen/diner) +"pcf" = ( +/obj/structure/lattice/catwalk, +/obj/structure/rack/shelf, +/obj/effect/spawner/random/maintenance/two, +/obj/effect/spawner/random/engineering/flashlight, +/turf/open/openspace, +/area/station/maintenance/starboard/greater) +"pcv" = ( +/obj/effect/turf_decal/tile/dark_blue/half, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_half, +/area/station/security/interrogation) +"pcy" = ( +/obj/machinery/light/warm/directional/north, +/obj/machinery/camera/directional/north{ + c_tag = "Dormitories - Jim Norton's" + }, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"pcF" = ( +/obj/machinery/airalarm/directional/east, +/obj/structure/dresser, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/wood, +/area/station/command/heads_quarters/nt_rep) +"pcI" = ( +/obj/effect/turf_decal/tile/green/opposingcorners, +/obj/structure/cable, +/obj/machinery/computer/records/pathology{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/virology) +"pcU" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/light/small/directional/east, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"pcW" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/chair, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"pcZ" = ( +/turf/open/floor/iron/edge, +/area/station/maintenance/aft/greater) +"pdb" = ( +/turf/closed/wall/r_wall, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"pdn" = ( +/obj/structure/closet/secure_closet/contraband/heads, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/bot, +/obj/item/crowbar, +/obj/item/radio, +/obj/item/restraints/handcuffs, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/checkpoint/customs) +"pdq" = ( +/obj/effect/turf_decal/tile/dark_blue, +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/corner, +/area/station/security/processing) +"pdE" = ( +/obj/effect/turf_decal/lunar_sand/plating, +/obj/machinery/camera/directional/east{ + c_tag = "MiniSat External Upper West"; + network = list("minisat") + }, +/turf/open/floor/plating/airless, +/area/station/asteroid) +"ped" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/corner, +/area/station/hallway/secondary/command) +"pek" = ( +/obj/machinery/status_display/ai/directional/north, +/turf/open/openspace, +/area/station/command/bridge) +"pep" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/security/prison) +"peu" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/iron, +/area/station/maintenance/disposal/incinerator) +"pex" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/commons/dorms) +"peF" = ( +/obj/structure/sign/poster/random/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"peH" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/light/cold/no_nightlight/directional/east, +/turf/open/openspace, +/area/station/medical/chemistry) +"pfm" = ( +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/structure/table, +/obj/machinery/fax{ + fax_name = "Quartermaster's Office"; + name = "Quartermaster's Fax Machine"; + pixel_y = 3 + }, +/obj/machinery/light/warm/directional/east, +/turf/open/floor/iron/large, +/area/station/command/heads_quarters/qm) +"pfs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/biogenerator, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/hydroponics) +"pfu" = ( +/obj/machinery/module_duplicator, +/obj/effect/turf_decal/bot, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/dark/small, +/area/station/science/circuits) +"pfI" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/atmospherics{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/book/manual/wiki/atmospherics, +/obj/machinery/atmospherics/pipe/smart/simple/supply/visible{ + dir = 4 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_y = 4; + pixel_x = 16 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_y = 3; + pixel_x = 10 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"pfW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/iron/white/side{ + dir = 1 + }, +/area/station/science/research) +"pfZ" = ( +/obj/effect/turf_decal/bot_white, +/obj/structure/window/reinforced/plasma/spawner/directional/east, +/turf/open/floor/engine, +/area/station/engineering/gravity_generator) +"pgf" = ( +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"pgg" = ( +/turf/open/floor/iron/dark, +/area/station/commons/storage/primary) +"pgr" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/cargo/storage) +"pgv" = ( +/obj/item/radio/intercom/directional/north, +/obj/structure/table/glass, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) +"pgy" = ( +/obj/machinery/newscaster/directional/south, +/obj/machinery/camera/directional/south{ + c_tag = "Library - Lower Study"; + network = list("ss13","bar") + }, +/obj/structure/chair/sofa/left/brown{ + dir = 1 + }, +/turf/open/floor/carpet/green, +/area/station/service/library/lounge) +"pgI" = ( +/obj/effect/turf_decal/tile/yellow/half{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue/half{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/engineering/atmos/office) +"pgW" = ( +/obj/effect/turf_decal/lunar_sand/plating, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"phm" = ( +/obj/structure/trash_pile, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"phq" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/pump, +/obj/machinery/light/warm/directional/west, +/turf/open/floor/iron, +/area/station/engineering/supermatter/room) +"phu" = ( +/obj/effect/turf_decal/tile/red/real_red/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/white/corner{ + dir = 1 + }, +/area/station/hallway/secondary/exit/escape_pod) +"phD" = ( +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/department/eva) +"phH" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/large, +/area/station/commons/storage/mining) +"phK" = ( +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"phL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"phO" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"pic" = ( +/turf/closed/wall, +/area/station/service/hydroponics/upper) +"pik" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/security/checkpoint/science/research) +"pit" = ( +/obj/structure/bodycontainer/morgue, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/morgue) +"piu" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/station/hallway/primary/central) +"piv" = ( +/obj/structure/stairs/west, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"piA" = ( +/obj/structure/rack, +/obj/item/stack/tile/iron{ + amount = 35 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 4 + }, +/obj/item/stack/rods/twentyfive, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"piC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/engineering/atmos/hfr_room) +"piH" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external/glass{ + name = "External Access"; + space_dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/effect/mapping_helpers/airlock/unres, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"piP" = ( +/obj/machinery/computer/records/security, +/obj/effect/turf_decal/box, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/brig/entrance) +"pjm" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/dark_blue{ + dir = 4 + }, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/crap, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/dark, +/area/station/command/meeting_room/council) +"pjr" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "interrogation"; + name = "Privacy Shutters"; + dir = 1 + }, +/turf/open/floor/plating, +/area/station/security/brig/entrance) +"pjs" = ( +/obj/structure/closet/secure_closet/research_director, +/obj/item/pai_card, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/rd) +"pjv" = ( +/obj/machinery/door/poddoor/shutters/window{ + id = "armory"; + name = "Armory Shutter" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/station/ai_monitored/security/armory) +"pjT" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"pjU" = ( +/obj/structure/aquarium/prefilled, +/obj/machinery/door/firedoor, +/obj/machinery/light/warm/directional/east, +/turf/open/floor/plastic, +/area/station/common/carpshop) +"pjX" = ( +/obj/machinery/telecomms/bus/preset_four, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/station/tcommsat/server) +"pka" = ( +/turf/closed/wall, +/area/station/hallway/primary/central/aft) +"pki" = ( +/obj/structure/sign/poster/random/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/department/security/upper) +"pkj" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"pkm" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"pko" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/sign/directions/evac/directional/south{ + dir = 4 + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4 + }, +/obj/effect/mapping_helpers/mail_sorting/engineering/atmospherics, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"pks" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/exit/departure_lounge) +"pkB" = ( +/obj/structure/railing{ + dir = 9 + }, +/turf/open/openspace, +/area/station/science/research) +"pkF" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/aisat_interior) +"pkM" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/station/science/genetics) +"pkS" = ( +/obj/effect/turf_decal/tile/dark_blue/anticorner{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 8 + }, +/area/station/security/brig/entrance) +"pkY" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/item/phone{ + desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; + pixel_x = -3; + pixel_y = 3 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Bridge - Council Chamber" + }, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 8 + }, +/area/station/command/meeting_room/council) +"plk" = ( +/obj/structure/table/wood, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/item/taperecorder{ + pixel_x = -8; + pixel_y = 16 + }, +/obj/item/storage/photo_album/library{ + pixel_y = 5; + pixel_x = -5 + }, +/obj/item/storage/fancy/candle_box{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/item/camera{ + pixel_y = 2 + }, +/obj/structure/cable, +/obj/machinery/light/small/red/dim/directional/south, +/obj/item/toner/large{ + pixel_x = 9; + pixel_y = 9 + }, +/obj/item/pen/fourcolor, +/obj/item/pen/fountain{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/cult, +/area/station/service/library/private) +"plQ" = ( +/obj/structure/table/reinforced, +/obj/machinery/microwave, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/security/brig/entrance) +"pmg" = ( +/obj/effect/turf_decal/tile/dark_blue/half{ + dir = 4 + }, +/obj/machinery/firealarm/directional/east, +/obj/machinery/light/cold/directional/east, +/obj/structure/rack/gunrack, +/obj/item/gun/energy/laser/practice, +/obj/item/gun/energy/laser/practice, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_half{ + dir = 8 + }, +/area/station/security/range) +"pmp" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"pmM" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/openspace, +/area/station/ai_monitored/turret_protected/aisat/maint) +"pmP" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"pnh" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/light/warm/directional/south, +/obj/item/radio/intercom/directional/south, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos) +"pnm" = ( +/obj/effect/turf_decal/tile/dark_green{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/science/circuits) +"pnp" = ( +/obj/machinery/cryopod, +/obj/effect/turf_decal/siding/white, +/obj/effect/turf_decal/box/white{ + color = "#9FED58" + }, +/obj/structure/closet/secure_closet/wall{ + pixel_y = 24 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/common/cryopods) +"pnu" = ( +/obj/effect/spawner/random/structure/crate, +/obj/effect/mapping_helpers/burnt_floor, +/obj/effect/spawner/random/food_or_drink/cups, +/obj/effect/spawner/random/food_or_drink/booze, +/obj/effect/spawner/random/food_or_drink/booze, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"pny" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/atmospherics/pipe/heat_exchanging/junction, +/obj/effect/mapping_helpers/airalarm/tlv_cold_room, +/obj/machinery/airalarm/directional/east, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/service/kitchen/coldroom) +"pnz" = ( +/obj/structure/closet/secure_closet/courtroom, +/obj/item/gavelblock, +/obj/item/gavelhammer, +/obj/item/megaphone{ + name = "The Judge's Megaphone" + }, +/turf/open/floor/carpet/green, +/area/station/security/courtroom) +"pnC" = ( +/obj/structure/railing, +/turf/open/openspace, +/area/station/service/kitchen/diner) +"pnI" = ( +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/sign/directions/supply/directional/west, +/obj/machinery/space_heater, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/entry) +"pnM" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/cable, +/turf/open/floor/wood, +/area/station/commons/dorms/room3) +"pnQ" = ( +/obj/structure/chair/pew/right, +/obj/effect/turf_decal/siding/wood, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/chapel, +/area/station/service/chapel) +"pnS" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/photocopier, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/command/heads_quarters/ce) +"pod" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark, +/area/station/commons/storage/tools) +"pok" = ( +/obj/effect/turf_decal/weather/dirt, +/mob/living/carbon/human/species/monkey{ + dir = 4 + }, +/turf/open/floor/grass, +/area/station/science/genetics) +"pon" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/meter, +/turf/open/floor/glass/reinforced, +/area/station/science/xenobiology) +"poq" = ( +/obj/effect/turf_decal/tile/red/real_red{ + dir = 1 + }, +/turf/open/floor/iron/white/corner{ + dir = 4 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"por" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"poF" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron, +/area/station/maintenance/starboard/lesser) +"poO" = ( +/obj/effect/turf_decal/tile/blue, +/obj/structure/sign/poster/official/terragov/directional/south, +/obj/machinery/camera/directional/south{ + c_tag = "Recreation - Laser Tag" + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark/smooth_corner, +/area/station/common/laser_tag) +"poU" = ( +/obj/structure/closet/secure_closet/chief_medical, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/item/storage/medkit/advanced, +/obj/item/clothing/head/fedora/white, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/cmo) +"ppm" = ( +/turf/closed/wall/r_wall, +/area/station/security/processing) +"ppo" = ( +/obj/structure/railing, +/obj/effect/turf_decal/siding/white, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/iron/dark/smooth_half, +/area/station/ai_monitored/turret_protected/aisat_interior) +"ppA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"ppG" = ( +/obj/structure/lattice, +/obj/structure/window/spawner/directional/north, +/turf/open/openspace, +/area/station/service/hydroponics/upper) +"ppI" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "common-mining" + }, +/obj/machinery/door/airlock/external/glass{ + name = "Auxiliary Common Dock Airlock" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/commons/storage/mining) +"ppJ" = ( +/obj/machinery/duct, +/obj/machinery/corral_corner{ + mapping_id = "5" + }, +/obj/machinery/slime_pen_controller{ + mapping_id = "5" + }, +/turf/open/misc/asteroid/moon, +/area/station/science/xenobiology) +"ppL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/maintenance/disposal/incinerator) +"ppM" = ( +/obj/effect/mapping_helpers/airlock/access/all/service/lawyer, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Law Office Maintenance" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/service/lawoffice) +"pqf" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Auxiliary Toilets Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/commons/toilet/auxiliary) +"pqj" = ( +/obj/effect/turf_decal/tile/red/real_red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/white/corner{ + dir = 1 + }, +/area/station/hallway/secondary/exit/escape_pod) +"pqw" = ( +/obj/machinery/door/window/elevator/right/directional/north{ + elevator_mode = 1; + elevator_linked_id = "departures_lift" + }, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"pqB" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/checkpoint/supply) +"pqE" = ( +/obj/effect/turf_decal/tile/dark_red, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/roboticist, +/turf/open/floor/iron/dark, +/area/station/science/robotics/augments) +"pqZ" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/station/solars/port/fore) +"prf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/cargo/lobby) +"prj" = ( +/turf/open/floor/carpet, +/area/station/commons/dorms) +"prk" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/range) +"prt" = ( +/obj/effect/turf_decal/tile/red/real_red{ + dir = 8 + }, +/turf/open/floor/iron/white/corner{ + dir = 1 + }, +/area/station/commons/storage/mining) +"prx" = ( +/obj/structure/closet, +/obj/item/storage/toolbox/fishing, +/obj/item/storage/fancy/cigarettes/cigpack_carp{ + pixel_y = -6; + pixel_x = -3 + }, +/obj/item/storage/fancy/cigarettes/cigpack_carp{ + pixel_y = -9; + pixel_x = 4 + }, +/turf/open/floor/wood, +/area/station/common/carpshop) +"prB" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/bot, +/obj/machinery/light/warm/directional/west, +/turf/open/floor/iron/dark, +/area/station/commons/storage/tools) +"prC" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/chair/wood{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood/tile, +/area/station/commons/lounge) +"prK" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/security/entrance, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/security/glass{ + id_tag = "outerbrig"; + name = "Brig Entrance" + }, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/security/brig/entrance) +"prO" = ( +/obj/machinery/airalarm/directional/west, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron/recharge_floor, +/area/station/science/robotics/mechbay) +"prZ" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/dark_blue, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark, +/area/station/science/server) +"psm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"psr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 1 + }, +/obj/effect/mapping_helpers/mail_sorting/science/robotics, +/turf/open/floor/plating, +/area/station/maintenance/central) +"psP" = ( +/obj/machinery/power/tracker, +/obj/structure/cable, +/turf/open/floor/iron/solarpanel/airless, +/area/station/solars/starboard/fore) +"pta" = ( +/obj/effect/spawner/random/maintenance/two, +/obj/structure/rack/shelf, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"ptd" = ( +/obj/machinery/suit_storage_unit/atmos, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced/spawner/directional/west, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos/storage) +"ptp" = ( +/turf/closed/wall, +/area/station/commons/dorms/room6) +"pts" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance/external/glass{ + name = "Primary Tool Storage" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/storage/primary) +"pty" = ( +/obj/structure/table/reinforced, +/obj/item/radio/intercom/directional/west, +/obj/item/folder/syndicate{ + desc = "A folder stamped \"Top Secret - Property of Nanotrasen.\""; + pixel_x = 3; + pixel_y = 6 + }, +/obj/item/folder{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/stamp/head/rd, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/carpet/purple, +/area/station/command/heads_quarters/rd) +"ptD" = ( +/obj/effect/turf_decal/siding/white, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_green/half/contrasted, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/science/circuits) +"ptG" = ( +/obj/machinery/power/energy_accumulator/tesla_coil, +/turf/open/floor/plating, +/area/station/engineering/storage_shared) +"ptH" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/kirbyplants/organic/plant22, +/turf/open/floor/iron/dark/small, +/area/station/command/meeting_room/council) +"ptI" = ( +/obj/effect/turf_decal/tile/brown/half/contrasted, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/iron/dark, +/area/station/cargo/lobby) +"ptR" = ( +/obj/machinery/computer/atmos_control/nocontrol/master{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos/office) +"ptT" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar/fourcorners, +/turf/open/floor/iron/checker, +/area/station/service/kitchen/diner) +"ptY" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/holopad/secure, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood, +/area/station/command/heads_quarters/hop) +"pub" = ( +/obj/machinery/atmospherics/components/binary/valve/digital/on{ + dir = 4; + name = "Port to Fuel Pipe" + }, +/obj/machinery/digital_clock/directional/north, +/obj/machinery/light/warm/directional/north, +/turf/open/floor/iron, +/area/station/maintenance/disposal/incinerator) +"puj" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron, +/area/station/maintenance/port/lesser) +"pun" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"pus" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"puw" = ( +/obj/structure/bed/dogbed{ + anchored = 1; + name = "Daisy's bed" + }, +/mob/living/basic/rabbit/daisy, +/turf/open/floor/wood, +/area/station/service/library/lounge) +"puz" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/disposal/incinerator) +"puG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Emitter Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/obj/structure/sign/warning/electric_shock/directional/west, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/main) +"puQ" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Brig Control" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/armory, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/warden) +"pvc" = ( +/obj/effect/spawner/random/engineering/canister, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"pvg" = ( +/turf/open/floor/engine/hull, +/area/space/nearstation) +"pvh" = ( +/obj/effect/turf_decal/siding/dark_blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/holding_cell) +"pvp" = ( +/obj/structure/chair, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/carpet/purple, +/area/station/security/courtroom) +"pvr" = ( +/obj/effect/decal/cleanable/blood/footprints{ + dir = 8 + }, +/obj/structure/holosign/barrier, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/station/maintenance/port/fore) +"pvu" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/science/research, +/obj/machinery/door/airlock/science/glass{ + name = "Experimentor Chamber" + }, +/obj/machinery/atmospherics/pipe/smart/simple/yellow, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/explab) +"pvv" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/dark/end{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central/fore) +"pvB" = ( +/obj/effect/turf_decal/box/white, +/turf/open/floor/engine, +/area/station/engineering/atmos/hfr_room) +"pvD" = ( +/obj/machinery/light/cold/directional/west, +/turf/open/openspace, +/area/station/service/janitor) +"pvG" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/iron/white/side{ + dir = 1 + }, +/area/station/science/ordnance) +"pvJ" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks{ + dir = 4; + pixel_y = 3 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron/dark, +/area/station/service/abandoned_gambling_den) +"pvL" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Mining Office Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/cargo/miningoffice) +"pvP" = ( +/obj/effect/turf_decal/box, +/obj/machinery/computer/atmos_control/air_tank, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/light/warm/directional/west, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos/upper) +"pvR" = ( +/turf/open/floor/catwalk_floor/iron, +/area/station/security/checkpoint/engineering) +"pwj" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/maintenance/port/aft) +"pwv" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/machinery/biogenerator, +/obj/item/reagent_containers/cup/beaker{ + pixel_y = 17; + pixel_x = -8 + }, +/obj/item/reagent_containers/cup/beaker/large{ + pixel_x = 6; + pixel_y = 18 + }, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"pwz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red/real_red{ + dir = 1 + }, +/obj/machinery/airalarm/directional/west, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/white/corner{ + dir = 4 + }, +/area/station/hallway/secondary/entry) +"pwB" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/security/brig/entrance) +"pwS" = ( +/obj/effect/turf_decal/tile/green/opposingcorners, +/obj/machinery/camera/directional/west{ + c_tag = "Upper Central Primary Hallway - Service Canteen" + }, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/hallway/primary/central/fore) +"pwU" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_atmos{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/maintenance/disposal/incinerator) +"pxq" = ( +/turf/closed/wall/r_wall, +/area/station/science/robotics/lab) +"pxL" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"pxM" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/service/hydroponics/upper) +"pxY" = ( +/obj/structure/trash_pile, +/turf/open/floor/plating, +/area/station/maintenance/department/eva) +"pyc" = ( +/obj/structure/industrial_lift, +/turf/open/floor/plating, +/area/station/science/robotics/mechbay) +"pyi" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"pyo" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/suit_storage_unit/captain, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/captain) +"pys" = ( +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/station/service/chapel) +"pyy" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atm/directional/north, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"pyC" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/layer4{ + dir = 1 + }, +/turf/open/floor/engine/vacuum, +/area/station/science/ordnance/freezerchamber) +"pyT" = ( +/obj/effect/mapping_helpers/airlock/access/any/medical/surgery, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Secondary Surgical Theatre A" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/surgery/fore) +"pza" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"pzb" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/corral_corner{ + mapping_id = "5" + }, +/obj/machinery/duct, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"pzi" = ( +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/iron/white/side, +/area/station/medical/paramedic) +"pzp" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 9 + }, +/obj/effect/turf_decal/box/corners, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/obj/effect/turf_decal/lunar_sand/plating, +/turf/open/floor/glass/reinforced, +/area/station/science/xenobiology) +"pzF" = ( +/obj/machinery/light/cold/directional/north, +/obj/item/storage/medkit/o2{ + pixel_x = 8 + }, +/obj/item/storage/medkit/brute{ + pixel_x = -8 + }, +/obj/item/storage/medkit/o2{ + pixel_x = 8; + pixel_y = 7 + }, +/obj/item/storage/medkit/brute{ + pixel_x = -8; + pixel_y = 7 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/storage) +"pzI" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"pzN" = ( +/obj/effect/spawner/random/engineering/canister, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"pzO" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/structure/sign/departments/vault/directional/south, +/obj/item/kirbyplants/organic/plant22, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/ai_monitored/command/nuke_storage) +"pzQ" = ( +/obj/machinery/door/airlock/security{ + name = "Armory" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/armory, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/station/ai_monitored/security/armory) +"pzV" = ( +/obj/structure/plasticflaps/opaque{ + name = "Chemistry Deliveries" + }, +/turf/open/floor/iron/large, +/area/station/medical/pharmacy) +"pAa" = ( +/obj/effect/turf_decal/tile/green/opposingcorners, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/hallway/primary/central) +"pAe" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) +"pAm" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark/small, +/area/station/science/xenobiology) +"pAu" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch" + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/hallway/secondary/exit/departure_lounge) +"pAA" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/microwave{ + pixel_y = 2 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/iron/small, +/area/station/engineering/atmos/office) +"pAD" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"pAJ" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/effect/spawner/random/maintenance/three, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"pAV" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"pAW" = ( +/obj/effect/mapping_helpers/airlock/access/any/medical/surgery, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Primary Surgical Theatre" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/unres, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/surgery/theatre) +"pAX" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot_white, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"pAZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/medical/medbay/central) +"pBf" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/hallway/primary/central/aft) +"pBj" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"pBy" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"pBF" = ( +/obj/structure/lattice/catwalk, +/obj/structure/chair/plastic{ + dir = 8 + }, +/turf/open/openspace, +/area/station/service/hydroponics/upper) +"pBJ" = ( +/obj/machinery/portable_atmospherics/canister/plasma, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/science/ordnance) +"pBK" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"pBO" = ( +/obj/structure/rack/shelf, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/storage/toolbox/mechanical, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/camera/directional/west{ + c_tag = "Science - Ordnance Airlock"; + network = list("ss13","rd") + }, +/turf/open/floor/iron/half{ + dir = 1 + }, +/area/station/science/ordnance) +"pBT" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/engine, +/area/station/science/ordnance) +"pCp" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/light/small/directional/east, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"pCr" = ( +/obj/machinery/newscaster/directional/west, +/turf/open/floor/iron/white/corner{ + dir = 1 + }, +/area/station/commons/storage/mining) +"pCs" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters{ + id = "visitation"; + name = "Visitation Shutters"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/security/prison/visit) +"pCB" = ( +/obj/machinery/button/door/directional/west{ + id = "surgeryleft"; + name = "Privacy Shutters Control" + }, +/obj/effect/turf_decal/tile/blue/half{ + dir = 4 + }, +/obj/machinery/camera/directional/west{ + c_tag = "Medbay - Surgery Room A"; + network = list("ss13","medbay") + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/item/stack/sticky_tape/surgical, +/obj/item/stack/medical/bone_gel, +/obj/item/tank/internals/anesthetic, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/surgery/fore) +"pCG" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"pCI" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/item/kirbyplants/organic/plant21, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/aisat/maint) +"pCK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2, +/obj/structure/lattice, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/sign/poster/random/directional/north, +/turf/open/openspace, +/area/station/maintenance/department/science/xenobiology) +"pDC" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"pDE" = ( +/obj/effect/turf_decal/box/white/corners{ + dir = 1 + }, +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/botanist, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/hydroponics) +"pDJ" = ( +/obj/item/storage/box/matches{ + pixel_x = -2; + pixel_y = 3 + }, +/obj/item/clothing/mask/cigarette/cigar{ + pixel_x = 4; + pixel_y = 1 + }, +/obj/item/clothing/mask/cigarette/cigar{ + pixel_x = -4; + pixel_y = 1 + }, +/obj/item/clothing/mask/cigarette/cigar/cohiba, +/obj/structure/table/wood, +/obj/item/toy/plush/carpplushie{ + greyscale_colors = "#ff5050#000000"; + name = "\improper Nanotrasen wildlife department space carp plushie"; + pixel_y = 18 + }, +/obj/effect/turf_decal/siding/dark_blue/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/command/meeting_room/council) +"pDP" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/chair/wood{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/wood, +/area/station/command/heads_quarters/captain) +"pDX" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/turf_decal/tile/brown/half/contrasted, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/office) +"pEe" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/ai_monitored/turret_protected/ai_upload) +"pEn" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/service/abandoned_gambling_den) +"pEr" = ( +/obj/structure/closet/crate/coffin, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/chapel/funeral) +"pEu" = ( +/obj/structure/transit_tube, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"pEB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/obj/machinery/light/warm/directional/south, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/engineering/atmos/hfr_room) +"pEP" = ( +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/components/trinary/filter/atmos/plasma{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"pEQ" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "surgeryright"; + name = "Surgery Shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/medical/surgery/aft) +"pEU" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/station/maintenance/department/science/xenobiology) +"pFf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"pFl" = ( +/obj/effect/mapping_helpers/burnt_floor, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"pFt" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line, +/obj/structure/cable, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"pFw" = ( +/obj/structure/trash_pile, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"pFC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/station/service/library/lounge) +"pFH" = ( +/obj/effect/turf_decal/tile/dark_blue/anticorner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 4 + }, +/area/station/security/brig/entrance) +"pFI" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/visible{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible/layer1{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible/layer5{ + dir = 4 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/science/ordnance) +"pFN" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/layer3, +/obj/structure/cable/layer1, +/turf/open/openspace, +/area/station/ai_monitored/turret_protected/aisat/maint) +"pFQ" = ( +/obj/machinery/door/airlock/external{ + name = "Construction Zone" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/aux_base, +/turf/open/floor/plating, +/area/station/construction/mining/aux_base) +"pFR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/small/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"pGt" = ( +/obj/structure/table/wood, +/obj/item/book/manual/wiki/detective, +/obj/item/hand_labeler{ + pixel_x = 6 + }, +/turf/open/floor/wood/parquet, +/area/station/security/detectives_office) +"pGv" = ( +/obj/machinery/mass_driver/ordnance{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/testlab) +"pGx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"pGA" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"pGG" = ( +/obj/effect/spawner/random/maintenance, +/obj/structure/table, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/maintenance/aft/greater) +"pGM" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/binary/pump{ + name = "Port to Turbine"; + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/iron, +/area/station/maintenance/disposal/incinerator) +"pHb" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/library) +"pHl" = ( +/obj/effect/turf_decal/siding/white{ + dir = 10 + }, +/obj/structure/closet/l3closet/virology, +/obj/effect/turf_decal/tile/green/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"pHo" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/duct, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"pHs" = ( +/turf/closed/wall/r_wall, +/area/station/security/checkpoint/supply) +"pHt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/item/restraints/legcuffs/beartrap/prearmed, +/obj/item/paper_bin, +/obj/effect/spawner/random/engineering/vending_restock, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"pHy" = ( +/turf/closed/wall, +/area/station/maintenance/abandon_diner) +"pHz" = ( +/turf/closed/wall, +/area/station/hallway/secondary/exit) +"pHB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/tcommsat/computer) +"pHC" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"pHF" = ( +/obj/machinery/camera/directional/east{ + c_tag = "Engineering - Upper Supermatter Room Starboard"; + network = list("ss13","engine") + }, +/turf/open/openspace, +/area/station/engineering/main) +"pHM" = ( +/obj/effect/turf_decal/lunar_sand/plating, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/tank_holder/extinguisher, +/turf/open/floor/plating, +/area/station/science/xenobiology) +"pIa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, +/turf/open/floor/iron/white, +/area/station/medical/virology) +"pIi" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"pIk" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"pIF" = ( +/obj/structure/plasticflaps/opaque{ + name = "Engineering Deliveries" + }, +/turf/open/floor/iron/large, +/area/station/engineering/lobby) +"pIZ" = ( +/obj/effect/landmark/start/lawyer, +/turf/open/floor/carpet, +/area/station/service/lawoffice) +"pJl" = ( +/obj/structure/lattice, +/obj/structure/window/spawner/directional/south, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/light/directional/east, +/turf/open/openspace, +/area/station/service/hydroponics/upper) +"pJn" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/item/circuitboard/machine/pacman{ + pixel_y = -3; + pixel_x = 6 + }, +/turf/open/floor/plating, +/area/station/maintenance/department/electrical) +"pJo" = ( +/obj/machinery/conveyor/inverted{ + dir = 5; + id = "garbage" + }, +/obj/effect/turf_decal/stripes/full, +/obj/effect/spawner/random/trash/cigbutt, +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/spawner/random/trash/botanical_waste, +/obj/effect/spawner/random/maintenance/three, +/turf/open/floor/plating, +/area/station/maintenance/disposal) +"pJt" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/station/maintenance/solars/port/aft) +"pJw" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/digital_clock/directional/south, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"pJF" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners{ + dir = 1 + }, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/checker, +/area/station/maintenance/abandon_diner) +"pJP" = ( +/obj/structure/railing, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"pJX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/herringbone, +/area/station/medical/patients_rooms) +"pKf" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 4 + }, +/obj/structure/rack/shelf, +/obj/item/storage/medkit/emergency{ + pixel_y = 4 + }, +/obj/item/storage/medkit/emergency, +/obj/machinery/light/warm/directional/east, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/iron/dark, +/area/station/commons/storage/primary) +"pKk" = ( +/obj/machinery/processor{ + pixel_y = 8 + }, +/obj/structure/table, +/obj/machinery/light/warm/directional/east, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"pKl" = ( +/turf/closed/wall/r_wall, +/area/station/engineering/atmos/hfr_room) +"pKo" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"pKw" = ( +/turf/open/floor/glass/reinforced, +/area/station/command/heads_quarters/rd) +"pLt" = ( +/obj/effect/turf_decal/tile/bar/fourcorners, +/turf/open/floor/iron/checker, +/area/station/service/kitchen/diner) +"pLy" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/item/folder/blue{ + pixel_x = 7 + }, +/obj/item/aicard{ + pixel_y = 6; + pixel_x = -3 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"pLA" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/machinery/station_map/engineering/directional/east, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/central/aft) +"pLE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/corporate/glass{ + name = "Command Hallway" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/command) +"pLN" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/machinery/door/airlock/security/glass{ + name = "Security Office" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/brig/entrance) +"pLS" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4; + name = "Waste to Filter" + }, +/obj/machinery/light/warm/directional/south, +/turf/open/floor/engine, +/area/station/engineering/atmos) +"pLW" = ( +/obj/effect/turf_decal/tile/dark/diagonal_edge, +/obj/structure/table, +/obj/machinery/processor{ + pixel_y = 8 + }, +/turf/open/floor/iron/kitchen/diagonal, +/area/station/security/prison) +"pLY" = ( +/obj/structure/filingcabinet/employment, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/nt_rep) +"pMa" = ( +/obj/structure/rack/shelf, +/obj/effect/spawner/random/maintenance/three, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"pMi" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"pMm" = ( +/obj/item/reagent_containers/cup/watering_can{ + pixel_y = 12 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/grass, +/area/station/service/hydroponics/garden) +"pMn" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 4 + }, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/obj/effect/turf_decal/box/corners, +/turf/open/floor/iron/small, +/area/station/security/checkpoint/escape) +"pMv" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"pMH" = ( +/obj/effect/turf_decal/stripes/blue/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/blue/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull, +/area/space/nearstation) +"pML" = ( +/obj/effect/turf_decal/lunar_sand/plating, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"pMS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"pNi" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/solars/starboard/fore) +"pNj" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"pNk" = ( +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/mapping_helpers/burnt_floor, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/plastic, +/obj/machinery/light/small/directional/north, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/central) +"pNm" = ( +/obj/machinery/airalarm/directional/east, +/obj/machinery/light/warm/directional/east, +/obj/machinery/camera/directional/east{ + network = list("ss13","bar"); + c_tag = "Canteen - Kitchen" + }, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"pNo" = ( +/obj/structure/table, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central/aft) +"pNq" = ( +/obj/structure/industrial_lift/public, +/turf/open/floor/plating/elevatorshaft, +/area/station/hallway/primary/port) +"pNr" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/vending/imported/yangyu, +/turf/open/floor/wood, +/area/station/common/carpshop) +"pNx" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/science/xenobio, +/obj/machinery/door/airlock/science/glass{ + name = "Specialized Research Access" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/any/science/ordnance, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/ordnance/office) +"pNC" = ( +/obj/machinery/atmospherics/components/binary/pump/layer4{ + name = "Freezer Output to Port"; + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/engine, +/area/station/science/ordnance) +"pNQ" = ( +/obj/structure/rack/shelf, +/obj/item/shield/riot{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/shield/riot{ + pixel_y = 6; + pixel_x = 6 + }, +/obj/item/shield/riot{ + pixel_y = -3 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/station/ai_monitored/security/armory) +"pNT" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/chair/office{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/service/library) +"pOi" = ( +/obj/machinery/computer/security/telescreen/ordnance{ + pixel_y = -24; + dir = 1 + }, +/obj/structure/chair/office/light{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/ordnance/testlab) +"pOx" = ( +/obj/effect/turf_decal/trimline/dark_red/arrow_ccw, +/obj/effect/turf_decal/tile/dark_red{ + dir = 1 + }, +/obj/machinery/digital_clock/directional/west, +/turf/open/floor/iron, +/area/station/security/prison) +"pOJ" = ( +/obj/structure/rack, +/obj/item/reagent_containers/cup/glass/shaker, +/obj/item/cultivator, +/obj/item/clothing/head/utility/chefhat, +/obj/item/storage/box/lights/mixed, +/obj/effect/spawner/random/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"pOT" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/dark_blue{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"pOV" = ( +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/diagonal, +/area/station/commons/toilet/restrooms) +"pOW" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) +"pPi" = ( +/obj/machinery/photocopier, +/obj/item/toy/figure/lawyer{ + pixel_y = 11 + }, +/obj/machinery/light_switch/directional/south, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/carpet, +/area/station/service/lawoffice) +"pPt" = ( +/obj/effect/turf_decal/siding/white, +/obj/structure/cable, +/obj/structure/railing, +/turf/open/floor/iron/dark/smooth_half, +/area/station/ai_monitored/turret_protected/aisat_interior) +"pPA" = ( +/obj/machinery/door/airlock/hatch{ + name = "Maintenance Hatch" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"pPX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/secondary/recreation) +"pQn" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"pQq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/computer/prisoner/gulag_teleporter_computer{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/obj/machinery/camera/directional/east{ + c_tag = "Security - Transfer Dock" + }, +/obj/machinery/light_switch/directional/east{ + pixel_y = -8 + }, +/turf/open/floor/iron/dark, +/area/station/security/processing) +"pQw" = ( +/obj/structure/rack/gunrack, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/cold/directional/south, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/effect/spawner/armory_spawn/mod_lasers_big, +/turf/open/floor/engine, +/area/station/ai_monitored/security/armory) +"pQy" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/airalarm/directional/north, +/obj/machinery/light/warm/directional/north, +/turf/open/floor/iron/edge, +/area/station/construction/mining/aux_base) +"pQL" = ( +/obj/effect/turf_decal/box, +/obj/machinery/modular_computer/preset/engineering{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos/office) +"pQQ" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/box, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/camera/directional/west{ + c_tag = "Medbay - Desk"; + network = list("ss13","medbay") + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/medbay/lobby) +"pRh" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/modular_computer/preset/id, +/obj/effect/turf_decal/box, +/obj/machinery/light/cold/directional/north, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/iron/dark/small, +/area/station/command/heads_quarters/rd) +"pRn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"pRM" = ( +/obj/machinery/camera/directional/south{ + c_tag = "Atmospherics - Upper Deck Aft"; + network = list("ss13","engine") + }, +/obj/effect/turf_decal/bot, +/obj/item/stack/sheet/iron/five{ + pixel_y = 16; + pixel_x = 6 + }, +/obj/structure/fluff/broken_canister_frame, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"pRT" = ( +/obj/effect/turf_decal/tile/red/real_red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"pRY" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/tcommsat/computer) +"pSo" = ( +/obj/structure/table, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/service/chapel/funeral) +"pSz" = ( +/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/entry) +"pSE" = ( +/obj/effect/mapping_helpers/airlock/access/any/service/kitchen, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Kitchen Maintenance" + }, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/service/kitchen) +"pSI" = ( +/obj/structure/cable, +/obj/machinery/power/solar_control{ + id = "foreport"; + name = "Port Bow Solar Control" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/plating, +/area/station/maintenance/solars/port/fore) +"pSK" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = -5; + pixel_y = 13 + }, +/obj/machinery/keycard_auth/directional/west, +/obj/item/lighter, +/obj/item/clothing/mask/cigarette/cigar{ + pixel_x = 4.5 + }, +/obj/item/clothing/mask/cigarette/cigar/havana{ + pixel_x = 3 + }, +/obj/item/clothing/mask/cigarette/cigar/cohiba{ + pixel_x = 6 + }, +/obj/item/phone{ + desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; + pixel_x = -8; + pixel_y = -3 + }, +/turf/open/floor/carpet, +/area/station/command/heads_quarters/hos) +"pSU" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"pSY" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/iron/white/corner, +/area/station/hallway/primary/starboard) +"pSZ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/openspace, +/area/station/engineering/main) +"pTe" = ( +/obj/effect/mapping_helpers/airlock/access/all/service/lawyer, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/wood{ + name = "Law Office" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/lawoffice) +"pTi" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/smooth_large, +/area/station/ai_monitored/command/nuke_storage) +"pTk" = ( +/obj/structure/girder, +/obj/effect/spawner/structure/electrified_grille, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"pTl" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/common/laser_tag) +"pTv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/rack/shelf, +/obj/effect/spawner/random/engineering/tool, +/obj/effect/spawner/random/engineering/tool, +/obj/effect/spawner/random/engineering/tool, +/obj/effect/spawner/random/engineering/flashlight, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/station/maintenance/department/science/xenobiology) +"pTw" = ( +/obj/structure/railing, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"pTD" = ( +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/airlock/engineering{ + name = "Starboard Bow Solar Access" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/solars/starboard/fore) +"pTE" = ( +/obj/effect/turf_decal/lunar_sand/plating, +/obj/machinery/duct, +/turf/open/floor/plating, +/area/station/science/xenobiology) +"pTX" = ( +/obj/structure/table/reinforced, +/obj/machinery/microwave{ + pixel_y = 2 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/wood/large, +/area/station/science/breakroom) +"pUe" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Holding Cell" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/holding_cell) +"pUf" = ( +/obj/structure/cable, +/obj/effect/landmark/start/hangover, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"pUh" = ( +/obj/structure/chair/wood, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/service/chapel/funeral) +"pUj" = ( +/obj/effect/spawner/random/engineering/atmospherics_portable, +/obj/structure/sign/poster/random/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/light/small/directional/east, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/maintenance/department/security/upper) +"pUm" = ( +/obj/machinery/button/door/directional/south{ + id = "Toilet3"; + name = "Lock Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/obj/machinery/recharge_station, +/turf/open/floor/iron/white/small, +/area/station/commons/toilet/restrooms) +"pUw" = ( +/obj/machinery/shower/directional/west, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/structure/drain, +/turf/open/floor/iron/showroomfloor, +/area/station/engineering/lobby) +"pUF" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"pUI" = ( +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/entry) +"pUJ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"pUK" = ( +/obj/structure/table/wood/poker, +/obj/effect/spawner/random/entertainment/gambling, +/obj/effect/spawner/random/entertainment/cigarette{ + pixel_x = 14 + }, +/turf/open/floor/wood/tile, +/area/station/commons/lounge) +"pUL" = ( +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"pUR" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/white, +/area/station/science/ordnance) +"pUU" = ( +/obj/effect/turf_decal/caution, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/item/kirbyplants/organic/plant23{ + pixel_x = 12 + }, +/turf/open/floor/iron/dark/smooth_half, +/area/station/cargo/storage) +"pVh" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/item/trash/energybar, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"pVk" = ( +/obj/structure/disposalpipe/junction/yjunction{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"pVB" = ( +/obj/structure/lattice/catwalk, +/obj/structure/chair/plastic{ + dir = 4 + }, +/turf/open/openspace, +/area/station/service/kitchen/diner) +"pVN" = ( +/obj/structure/cable, +/turf/open/floor/wood, +/area/station/commons/dorms) +"pVP" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/sink/directional/south, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/service/hydroponics) +"pVV" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/service/barber) +"pWe" = ( +/obj/machinery/porta_turret/ai, +/obj/effect/turf_decal/stripes/blue/full, +/obj/effect/turf_decal/bot_white, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/iron/white, +/area/station/ai_monitored/turret_protected/ai_upload) +"pWw" = ( +/obj/structure/table, +/obj/item/storage/bag/tray, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"pWN" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/nitrogen_input, +/turf/open/floor/engine/n2, +/area/station/engineering/atmos) +"pWP" = ( +/obj/structure/transit_tube/curved{ + dir = 1 + }, +/obj/structure/lattice, +/turf/open/space/openspace, +/area/space/nearstation) +"pWQ" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/machinery/computer/quantum_console{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown/half{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/bitrunning/den) +"pWX" = ( +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/siding/dark_blue/corner{ + dir = 1 + }, +/obj/machinery/vending/cola/blue, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/iron/dark, +/area/station/command/meeting_room/council) +"pXa" = ( +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/box, +/turf/open/floor/plating, +/area/station/ai_monitored/turret_protected/aisat_interior) +"pXh" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/openspace, +/area/station/hallway/primary/central) +"pXj" = ( +/obj/machinery/computer/mech_bay_power_console, +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/tile/dark_red{ + dir = 8 + }, +/turf/open/floor/iron/dark/side, +/area/station/science/robotics/mechbay) +"pXz" = ( +/obj/structure/chair/plastic{ + dir = 4 + }, +/obj/item/radio/intercom/prison/directional/south, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/holding_cell) +"pXA" = ( +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"pXD" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/security/brig/upper) +"pYh" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/smooth_edge, +/area/station/medical/treatment_center) +"pYm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/chief_medical_officer, +/turf/open/floor/carpet/blue, +/area/station/command/heads_quarters/cmo) +"pYn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/item/hand_labeler{ + pixel_y = 6 + }, +/obj/item/dest_tagger{ + pixel_y = -4; + pixel_x = -4 + }, +/obj/item/dest_tagger{ + pixel_y = -4; + pixel_x = 6 + }, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/rack/shelf, +/turf/open/floor/iron/dark, +/area/station/cargo/sorting) +"pYo" = ( +/obj/effect/landmark/start/assistant, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/tile, +/area/station/service/bar) +"pYv" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/service/hydroponics/upper) +"pYE" = ( +/turf/closed/wall/r_wall, +/area/station/tcommsat/server) +"pYQ" = ( +/obj/structure/sign/directions/evac/directional/north{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"pYU" = ( +/turf/closed/wall, +/area/station/maintenance/disposal) +"pZr" = ( +/turf/open/openspace, +/area/station/command/heads_quarters/rd) +"pZs" = ( +/obj/structure/chair/office/tactical{ + dir = 4 + }, +/mob/living/basic/skeleton, +/turf/open/floor/wood, +/area/station/maintenance/starboard/fore) +"pZt" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external/glass{ + name = "External Access"; + space_dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"pZB" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Turbine Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/disposal/incinerator) +"pZK" = ( +/obj/machinery/computer/records/security{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/detectives_office) +"pZN" = ( +/obj/structure/hoop{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron, +/area/station/security/prison) +"pZX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/white/side, +/area/station/science/explab) +"qab" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack/shelf, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/item/clothing/shoes/magboots{ + pixel_x = -7 + }, +/obj/item/clothing/shoes/magboots{ + pixel_x = 8 + }, +/obj/item/clothing/shoes/magboots{ + pixel_x = -7; + pixel_y = -6 + }, +/obj/item/clothing/shoes/magboots{ + pixel_x = 8; + pixel_y = -6 + }, +/turf/open/floor/iron, +/area/station/engineering/storage) +"qaf" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/blue/line{ + dir = 1 + }, +/obj/effect/turf_decal/caution/stand_clear/white, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/security/office) +"qag" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/greater) +"qam" = ( +/obj/effect/decal/cleanable/glass, +/obj/effect/mapping_helpers/burnt_floor, +/obj/structure/disposalpipe/sorting/mail{ + dir = 4 + }, +/obj/effect/mapping_helpers/mail_sorting/service/library, +/obj/effect/mapping_helpers/mail_sorting/service/hydroponics, +/obj/effect/mapping_helpers/mail_sorting/service/dormitories, +/obj/effect/mapping_helpers/mail_sorting/supply/qm_office, +/obj/effect/mapping_helpers/mail_sorting/science/experimentor_lab, +/obj/effect/mapping_helpers/mail_sorting/science/genetics, +/obj/effect/mapping_helpers/mail_sorting/science/ordnance, +/obj/effect/mapping_helpers/mail_sorting/science/rd_office, +/obj/effect/mapping_helpers/mail_sorting/science/research, +/obj/effect/mapping_helpers/mail_sorting/science/robotics, +/obj/effect/mapping_helpers/mail_sorting/science/xenobiology, +/obj/effect/mapping_helpers/mail_sorting/supply/cargo_bay, +/obj/effect/mapping_helpers/mail_sorting/engineering/atmospherics, +/obj/effect/mapping_helpers/mail_sorting/engineering/ce_office, +/obj/effect/mapping_helpers/mail_sorting/engineering/general, +/obj/effect/mapping_helpers/mail_sorting/security/general, +/obj/effect/mapping_helpers/mail_sorting/security/detectives_office, +/obj/effect/mapping_helpers/mail_sorting/security/hos_office, +/obj/effect/mapping_helpers/mail_sorting/service/law_office, +/obj/effect/mapping_helpers/mail_sorting/service/hop_office, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/mail_sorting/service/kitchen, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"qap" = ( +/obj/structure/holosign/barrier/engineering, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"qaq" = ( +/obj/effect/turf_decal/siding/white{ + dir = 9 + }, +/obj/machinery/camera/directional/west{ + c_tag = "Medbay - Break Room"; + network = list("ss13","medbay") + }, +/turf/open/floor/wood/large, +/area/station/medical/break_room) +"qau" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/main) +"qaN" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/item/kirbyplants/organic/plant22, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/hallway/secondary/recreation) +"qaP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood, +/area/station/service/chapel) +"qaU" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "QMLoad" + }, +/obj/machinery/conveyor_switch/oneway{ + dir = 8; + id = "QMLoad"; + name = "Loading Conveyor"; + pixel_x = -10; + pixel_y = -4 + }, +/obj/effect/turf_decal/stripes/full, +/turf/open/floor/plating, +/area/station/cargo/storage) +"qaW" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/common/laser_tag) +"qaX" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/green/opposingcorners{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/checker, +/area/station/common/wrestling/arena) +"qbc" = ( +/obj/structure/railing{ + dir = 6 + }, +/turf/open/openspace, +/area/station/engineering/atmos/hfr_room) +"qbd" = ( +/obj/structure/rack, +/obj/item/reagent_containers/cup/bottle/ethanol{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/reagent_containers/cup/bottle/carbon{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/reagent_containers/cup/bottle/chlorine{ + pixel_x = -5; + pixel_y = -2 + }, +/obj/item/reagent_containers/cup/bottle/multiver{ + pixel_x = 7; + pixel_y = -2 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/pharmacy) +"qbe" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/iron/white/smooth_large, +/area/station/security/medical) +"qbf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/showroomfloor, +/area/station/science/robotics/augments) +"qbg" = ( +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating, +/area/station/maintenance/central) +"qbi" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/command/meeting_room/council) +"qbx" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/left, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"qbR" = ( +/obj/structure/tank_dispenser/oxygen, +/turf/open/floor/plating, +/area/station/maintenance/starboard/lesser) +"qcx" = ( +/obj/machinery/light/cold/directional/west, +/turf/open/openspace, +/area/station/service/kitchen/diner) +"qcz" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/prisongate{ + name = "cell gate scanner" + }, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "tempbrigshutter"; + name = "Holding Cell Shutters" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/button/door/directional/west{ + id = "tempbrigshutter"; + name = "Holding Cell Shutters Control"; + pixel_y = -7; + req_access = list("brig") + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/holding_cell) +"qcF" = ( +/obj/effect/landmark/blobstart, +/obj/effect/landmark/generic_maintenance_landmark, +/turf/open/floor/wood, +/area/station/maintenance/starboard/fore) +"qcJ" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/maintenance/starboard/greater) +"qcM" = ( +/obj/structure/closet/secure_closet/security/med, +/obj/item/crowbar, +/obj/item/wrench, +/obj/item/radio, +/obj/item/clothing/mask/whistle, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm/directional/east, +/obj/machinery/light/cold/directional/east, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/security/checkpoint/medical) +"qcO" = ( +/obj/structure/closet/wardrobe/black, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/shoes/jackboots, +/obj/effect/turf_decal/siding/white{ + dir = 10 + }, +/obj/effect/turf_decal/box/white, +/obj/item/clothing/under/rank/civilian/lawyer/black, +/obj/item/clothing/under/rank/civilian/lawyer/black/skirt, +/obj/effect/landmark/start/hangover/closet, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) +"qdg" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/light/warm/directional/west, +/obj/structure/chair/wood{ + dir = 4 + }, +/turf/open/floor/wood/tile, +/area/station/commons/lounge) +"qdu" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/light/small/directional/north, +/obj/structure/cable, +/turf/open/openspace, +/area/station/hallway/primary/central) +"qdz" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/turf/open/floor/glass/reinforced, +/area/station/hallway/primary/central/fore) +"qdG" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"qdK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"qdL" = ( +/turf/closed/wall, +/area/station/commons/dorms/room5) +"qdO" = ( +/obj/structure/table/reinforced, +/obj/item/storage/medkit/fire{ + pixel_x = -2; + pixel_y = 8 + }, +/obj/item/storage/belt/utility, +/obj/item/radio/headset/headset_eng{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/radio/headset/headset_eng, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/engineering/storage) +"qeg" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/vacuum/external, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/corrections_officer) +"qeh" = ( +/obj/machinery/air_sensor/nitrogen_tank, +/turf/open/floor/engine/n2, +/area/station/engineering/atmos) +"qeq" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/commons/dorms) +"qet" = ( +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"qev" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Education Chamber Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/security/execution/education) +"qeD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"qeV" = ( +/obj/structure/table, +/obj/item/reagent_containers/cup/glass/drinkingglass{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/reagent_containers/cup/glass/drinkingglass{ + pixel_x = 6; + pixel_y = -1 + }, +/obj/item/reagent_containers/cup/glass/drinkingglass{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/syringe, +/obj/item/reagent_containers/syringe, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/effect/spawner/random/entertainment/drugs{ + pixel_y = -12 + }, +/obj/effect/spawner/random/entertainment/drugs{ + pixel_y = -18; + pixel_x = 5 + }, +/obj/effect/mapping_helpers/broken_floor, +/obj/item/reagent_containers/pill/maintenance{ + pixel_y = -4; + pixel_x = -2 + }, +/obj/item/reagent_containers/pill/maintenance{ + pixel_y = -17; + pixel_x = -4 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/showroomfloor, +/area/station/maintenance/port/aft) +"qfe" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/command) +"qfm" = ( +/obj/machinery/power/solar{ + id = "aftport"; + name = "Aft-Port Solar Array" + }, +/obj/structure/cable, +/turf/open/floor/iron/solarpanel/airless, +/area/station/solars/port/aft) +"qfo" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Canteen Lounge" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/lounge) +"qfr" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger{ + pixel_y = 5 + }, +/obj/item/stock_parts/cell/high, +/turf/open/floor/iron/dark/small, +/area/station/engineering/storage/tech) +"qfs" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible, +/turf/open/floor/plating, +/area/station/engineering/atmos/upper) +"qfB" = ( +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/pump{ + name = "Pure to Mix"; + dir = 1 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"qfF" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/open/floor/iron/dark, +/area/station/maintenance/disposal/incinerator) +"qfT" = ( +/obj/machinery/light/floor/has_bulb, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/neutral, +/obj/effect/turf_decal/trimline/neutral, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"qfZ" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"qga" = ( +/obj/machinery/airalarm/directional/north, +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"qgd" = ( +/obj/item/kirbyplants/synthetic/plant27, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/effect/turf_decal/tile/green/opposingcorners, +/turf/open/floor/iron/white, +/area/station/medical/virology) +"qgn" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/checker, +/area/station/maintenance/abandon_diner) +"qgr" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"qgF" = ( +/obj/effect/turf_decal/tile/purple/diagonal_centre, +/obj/effect/turf_decal/siding/white, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white/diagonal, +/area/station/science/breakroom) +"qha" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/light/warm/directional/east, +/obj/structure/chair/sofa/corner/brown, +/obj/effect/turf_decal/siding/white/corner{ + dir = 1 + }, +/turf/open/floor/carpet/green, +/area/station/service/library/lounge) +"qhm" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Gravity Generator Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/engineering/gravity_generator) +"qho" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/department/security/lower) +"qhs" = ( +/obj/structure/closet/secure_closet/atmospherics, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/item/clothing/suit/hooded/wintercoat/engineering/atmos, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos/storage) +"qhu" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/digital_clock/directional/west, +/obj/machinery/light/warm/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"qhA" = ( +/obj/effect/turf_decal/arrows{ + dir = 4; + pixel_x = -16 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"qhF" = ( +/obj/effect/spawner/random/structure/table_or_rack, +/obj/effect/spawner/random/maintenance/three, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"qhL" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=lowhall2"; + location = "lowhall1" + }, +/obj/effect/turf_decal/vg_decals/numbers/one, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/secondary/entry) +"qhM" = ( +/obj/machinery/light/red/directional/north, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"qid" = ( +/obj/effect/turf_decal/tile/blue/full, +/obj/effect/turf_decal/tile/dark_blue/full, +/obj/structure/chair/comfy{ + color = "#596479"; + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) +"qii" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet, +/area/station/medical/psychology) +"qim" = ( +/obj/effect/landmark/start/atmospheric_technician, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"qir" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"qjj" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/item/storage/secure/safe/caps_spare, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"qjr" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"qjw" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/chair/wood{ + dir = 1 + }, +/turf/open/floor/wood/tile, +/area/station/commons/lounge) +"qjB" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/maintenance/port/aft) +"qjG" = ( +/mob/living/basic/mouse/brown, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/wood, +/area/station/maintenance/starboard/fore) +"qjT" = ( +/obj/effect/spawner/random/techstorage/ai_all, +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/bot, +/obj/structure/rack/shelf, +/obj/machinery/light/cold/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/storage/tech) +"qjV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/entry) +"qjY" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/box, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/checkpoint/customs) +"qka" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/moisture_trap, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"qkc" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/hallway/primary/starboard) +"qkg" = ( +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/commons/dorms) +"qkh" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/misc/asteroid/snow/coldroom, +/area/station/service/kitchen/coldroom) +"qkl" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/machinery/light/warm/directional/east, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"qkz" = ( +/obj/structure/rack/shelf, +/obj/effect/turf_decal/box/blue, +/obj/item/fishing_hook{ + pixel_y = -5; + pixel_x = 5 + }, +/obj/item/fishing_hook{ + pixel_x = -5; + pixel_y = -5 + }, +/obj/item/fishing_hook, +/obj/machinery/light/warm/directional/north, +/turf/open/floor/plastic, +/area/station/common/carpshop) +"qkJ" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners{ + dir = 1 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"qkM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"qkU" = ( +/obj/structure/railing, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/glass, +/area/station/ai_monitored/turret_protected/ai) +"qkZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"qlc" = ( +/obj/effect/spawner/random/maintenance, +/obj/effect/spawner/random/trash/botanical_waste, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"qld" = ( +/turf/closed/wall/r_wall, +/area/station/security/prison) +"qlf" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/food_cart, +/turf/open/floor/wood/tile, +/area/station/service/kitchen) +"qlj" = ( +/obj/structure/railing{ + dir = 5 + }, +/turf/open/openspace, +/area/station/science/research) +"qlk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"qlt" = ( +/obj/structure/lattice/catwalk, +/obj/structure/table, +/obj/item/storage/medkit/regular{ + pixel_y = 5; + pixel_x = -5 + }, +/obj/item/multitool{ + pixel_y = 6; + pixel_x = 7 + }, +/turf/open/openspace, +/area/station/cargo/office) +"qlu" = ( +/obj/effect/turf_decal/tile/dark_red{ + dir = 1 + }, +/obj/structure/sign/poster/contraband/rebels_unite/directional/west, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 1 + }, +/area/station/common/laser_tag) +"qlD" = ( +/obj/effect/turf_decal/tile/dark_blue/half, +/obj/structure/table, +/obj/machinery/coffeemaker{ + pixel_y = 8 + }, +/turf/open/floor/iron/dark/smooth_half, +/area/station/security/interrogation) +"qlL" = ( +/obj/machinery/door/airlock/bathroom{ + name = "Captain's Restroom" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/captain) +"qlO" = ( +/obj/structure/lattice, +/obj/structure/transit_tube/horizontal, +/turf/open/space/basic, +/area/space/nearstation) +"qlP" = ( +/turf/closed/wall, +/area/station/medical/psychology) +"qml" = ( +/obj/machinery/power/solar{ + id = "aftstarboard"; + name = "Aft-Starboard Solar Array" + }, +/obj/structure/cable, +/turf/open/floor/iron/solarpanel/airless, +/area/station/solars/starboard/fore) +"qmo" = ( +/obj/machinery/door/airlock/hatch{ + name = "Maintenance Hatch" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"qmq" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 1 + }, +/area/station/security/holding_cell) +"qmw" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"qmA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron, +/area/station/construction/mining/aux_base) +"qmI" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"qnb" = ( +/mob/living/basic/mouse, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/station/maintenance/starboard/fore) +"qnf" = ( +/obj/docking_port/stationary/random{ + dir = 2; + name = "lavaland"; + shuttle_id = "pod_4_lavaland" + }, +/turf/open/space/basic, +/area/space/nearstation) +"qnp" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/item/kirbyplants/synthetic/plant29, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/security/brig/entrance) +"qnA" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/turf_decal/tile/brown/half/contrasted, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/cargo/office) +"qnK" = ( +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","xeno","rd") + }, +/obj/machinery/corral_corner{ + mapping_id = "2" + }, +/obj/machinery/slime_pen_controller{ + mapping_id = "2"; + dir = 2 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"qnL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/obj/machinery/computer/department_orders/medical{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/storage) +"qnQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance/external/glass{ + name = "Public Pharmacy" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/pharmacy) +"qnW" = ( +/obj/effect/turf_decal/lunar_sand, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/duct, +/turf/open/floor/plating, +/area/station/science/xenobiology) +"qob" = ( +/obj/structure/lattice/catwalk, +/obj/structure/window/spawner/directional/east, +/obj/structure/window/spawner/directional/west, +/obj/structure/window/spawner/directional/north, +/obj/structure/window/spawner/directional/south, +/obj/structure/marker_beacon/indigo, +/turf/open/openspace, +/area/station/security/prison/upper) +"qoi" = ( +/obj/structure/table/wood, +/obj/machinery/pollution_scrubber{ + pixel_x = -7; + pixel_y = 2 + }, +/obj/structure/desk_bell, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/bar) +"qon" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/space_heater, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/lunar_sand, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron/dark, +/area/station/science/cytology) +"qov" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/fuchsia, +/turf/open/space/openspace, +/area/space/nearstation) +"qow" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/disposal) +"qoG" = ( +/obj/structure/lattice, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/station/hallway/primary/central) +"qoM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/primary/central/fore) +"qoR" = ( +/turf/open/floor/iron, +/area/station/maintenance/port/aft) +"qoU" = ( +/obj/effect/turf_decal/tile/dark_red, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/machinery/light/cold/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/science/robotics/augments) +"qoY" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/commons/dorms) +"qpe" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"qpl" = ( +/obj/effect/turf_decal/tile/dark_red{ + dir = 1 + }, +/obj/structure/sign/poster/contraband/thunderdrome/directional/south, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 1 + }, +/area/station/common/wrestling/arena) +"qpz" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/obj/effect/turf_decal/tile/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/obj/effect/spawner/random/contraband/narcotics{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/effect/spawner/random/contraband/narcotics{ + pixel_x = 3 + }, +/obj/effect/spawner/random/entertainment/lighter, +/obj/effect/spawner/random/entertainment/cigarette_pack{ + pixel_x = 8 + }, +/turf/open/floor/iron, +/area/station/commons/vacant_room/commissary) +"qpE" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"qpQ" = ( +/obj/effect/spawner/random/trash/graffiti, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"qqb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/open/floor/engine, +/area/station/engineering/atmos) +"qqg" = ( +/obj/structure/chair/comfy/barber_chair{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/effect/turf_decal/tile/purple/opposingcorners, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/service/barber) +"qqh" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron, +/area/station/security/checkpoint/science/research) +"qqi" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/department/bridge) +"qqT" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/openspace, +/area/station/science/ordnance/office) +"qqZ" = ( +/turf/open/openspace, +/area/station/service/hydroponics/upper) +"qrc" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/fax{ + fax_name = "Atmospherics Lobby"; + name = "Atmospherics Lobby Fax Machine"; + pixel_y = 6 + }, +/obj/machinery/light/warm/directional/south, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron, +/area/station/engineering/atmos/office) +"qrq" = ( +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/machinery/camera/directional/north, +/turf/open/floor/wood/tile, +/area/station/service/bar) +"qru" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/machinery/recharger{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/clothing/under/costume/referee, +/obj/item/clothing/mask/whistle, +/turf/open/floor/iron/dark, +/area/station/common/laser_tag) +"qrB" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "surg_a_privacy"; + name = "Surgery Privacy Shutters"; + dir = 1 + }, +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/medical/surgery/theatre) +"qrD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"qrK" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner, +/obj/effect/spawner/random/engineering/tracking_beacon, +/turf/open/floor/iron/white/smooth_edge, +/area/station/medical/treatment_center) +"qrQ" = ( +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"qrZ" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/security/brig/entrance) +"qsh" = ( +/obj/structure/lattice, +/obj/item/stack/sheet/iron/fifty, +/turf/open/space/basic, +/area/space/nearstation) +"qsi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"qsj" = ( +/obj/structure/bed/double{ + dir = 1 + }, +/obj/item/bedsheet/cmo/double{ + dir = 1 + }, +/obj/machinery/airalarm/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/blue, +/area/station/command/heads_quarters/cmo) +"qsn" = ( +/turf/closed/wall/r_wall, +/area/station/medical/pharmacy) +"qso" = ( +/obj/structure/chair/stool/bar/directional/north, +/turf/open/floor/wood/tile, +/area/station/service/bar) +"qsu" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/siding/green{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/siding/green{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/obj/machinery/seed_extractor, +/turf/open/floor/iron/dark/smooth_half, +/area/station/service/hydroponics) +"qsB" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/iron/dark/side, +/area/station/commons/storage/mining) +"qsP" = ( +/obj/structure/railing, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"qsW" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/fitness/recreation) +"qsX" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"qtf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"qtj" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"qtt" = ( +/turf/open/floor/iron/white/corner{ + dir = 4 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"qtB" = ( +/obj/effect/spawner/liquids_spawner, +/turf/open/floor/lowered/iron/pool/cobble, +/area/station/service/salon) +"qtH" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/burgundy, +/turf/open/misc/asteroid/moon/airless, +/area/station/asteroid) +"qtJ" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/suit_storage_unit/mining, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) +"qtM" = ( +/obj/structure/table/wood, +/obj/machinery/keycard_auth{ + pixel_x = -5 + }, +/obj/item/folder/blue{ + pixel_y = -13 + }, +/obj/item/stamp/head/captain{ + pixel_y = -10; + pixel_x = -3 + }, +/obj/machinery/recharger{ + pixel_x = 7; + pixel_y = 2 + }, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain) +"qur" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/openspace, +/area/station/cargo/office) +"quy" = ( +/obj/effect/turf_decal/siding/white{ + dir = 10 + }, +/obj/item/bedsheet/medical{ + dir = 1 + }, +/obj/structure/bed{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/turf/open/floor/wood/parquet, +/area/station/medical/patients_rooms) +"quD" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/fluff/paper/stack{ + dir = 8 + }, +/turf/open/floor/wood, +/area/station/maintenance/starboard/fore) +"quG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"quI" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/commons/storage/primary) +"quU" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/medical/virology) +"qvg" = ( +/obj/structure/trash_pile, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"qvh" = ( +/obj/effect/turf_decal/tile/red/anticorner/contrasted, +/obj/structure/table/reinforced, +/obj/item/storage/box/ids{ + pixel_x = 7; + pixel_y = 6 + }, +/obj/item/storage/box/pdas{ + pixel_y = 3 + }, +/obj/item/radio/intercom/directional/east, +/obj/machinery/camera/directional/south{ + c_tag = "Arrivals - Customs" + }, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/customs) +"qvx" = ( +/obj/structure/cable, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/department/bridge) +"qvB" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/storage) +"qvF" = ( +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump/on{ + name = "Aixmix to Distro" + }, +/turf/open/floor/engine, +/area/station/engineering/atmos) +"qvI" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/dark/diagonal_edge, +/obj/item/storage/bag/tray/cafeteria, +/obj/item/storage/bag/tray/cafeteria{ + pixel_y = 3 + }, +/obj/item/storage/bag/tray/cafeteria{ + pixel_y = 6 + }, +/turf/open/floor/iron/kitchen/diagonal, +/area/station/security/prison) +"qvP" = ( +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/diagonal, +/area/station/security/courtroom) +"qvQ" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/hydroponics) +"qww" = ( +/turf/closed/wall, +/area/station/hallway/secondary/exit/departure_lounge) +"qwy" = ( +/obj/effect/turf_decal/siding/white, +/turf/open/floor/iron/dark, +/area/station/medical/medbay/central) +"qwE" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/security/eva) +"qwF" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/machinery/light/cold/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron, +/area/station/command/meeting_room/council) +"qwL" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"qwP" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/iron/white/side, +/area/station/hallway/primary/starboard) +"qwT" = ( +/obj/effect/turf_decal/tile/green/half/contrasted, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/service) +"qwU" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "vac-office"; + name = "Privacy Shutters"; + dir = 4 + }, +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/commons/vacant_room/office) +"qxe" = ( +/obj/structure/table/reinforced, +/obj/machinery/fax{ + fax_name = "Research Director's Office"; + name = "Research Director's Fax Machine"; + pixel_y = 6 + }, +/obj/machinery/button/door/directional/north{ + id = "rdoffice"; + name = "Privacy Control"; + req_access = list("rd") + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/command/heads_quarters/rd) +"qxl" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/disposalpipe/junction/yjunction, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/maintenance/department/security/lower) +"qxA" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, +/turf/open/floor/engine, +/area/station/engineering/atmos) +"qxE" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/machinery/plumbing/sender{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/medical/chemistry) +"qxI" = ( +/obj/structure/table/reinforced, +/obj/item/folder/red{ + pixel_x = -12; + pixel_y = 3 + }, +/obj/item/pen{ + pixel_y = 4; + pixel_x = -7 + }, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/button/door{ + id = "maint-toggle2"; + name = "Maintenance Starboard Secure Shutters Swap"; + pixel_x = 6; + pixel_y = -2 + }, +/obj/machinery/button/door{ + id = "maint-toggle1"; + name = "Maintenance Fore Secure Shutters Swap"; + pixel_x = 6; + pixel_y = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"qxQ" = ( +/obj/structure/bed{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark_blue, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/obj/item/radio/intercom/prison/directional/south, +/turf/open/floor/iron/dark/side, +/area/station/security/holding_cell) +"qxU" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/hydroponics) +"qyc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/engineering/main) +"qye" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"qyg" = ( +/obj/machinery/airalarm/directional/west, +/obj/structure/table/reinforced, +/obj/item/stack/package_wrap, +/obj/item/sales_tagger, +/obj/machinery/light/warm/directional/west, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"qyl" = ( +/obj/structure/closet/secure_closet/security, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/checkpoint/customs) +"qyr" = ( +/obj/machinery/recycler{ + dir = 8 + }, +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/obj/effect/turf_decal/stripes/full, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/disposal) +"qyz" = ( +/obj/effect/turf_decal/tile/blue/full, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/treatment_center) +"qyI" = ( +/obj/structure/frame/machine, +/obj/item/stack/cable_coil/five, +/turf/open/floor/plating, +/area/station/maintenance/department/electrical) +"qyK" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/escape) +"qyN" = ( +/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"qyO" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/folder/red, +/obj/item/stamp/head/hos, +/obj/item/paper_bin{ + pixel_x = 16; + pixel_y = 7 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hos) +"qyQ" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Ordnance Lab Maintenance" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/any/science/xenobio, +/obj/effect/mapping_helpers/airlock/access/any/science/ordnance, +/turf/open/floor/plating, +/area/station/science/ordnance/office) +"qzc" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/gloves{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/bodybags, +/obj/item/healthanalyzer, +/obj/effect/turf_decal/tile/dark_red{ + dir = 1 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Robotics - Augmentation Theatre"; + network = list("ss13","rd") + }, +/obj/item/surgery_tray, +/turf/open/floor/iron/showroomfloor, +/area/station/science/robotics/augments) +"qzA" = ( +/obj/structure/cable, +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/box, +/obj/machinery/power/solar_control{ + dir = 1; + id = "aftstarboard"; + name = "Starboard Quarter Solar Control" + }, +/turf/open/floor/plating, +/area/station/maintenance/solars/starboard/aft) +"qzX" = ( +/obj/structure/hedge, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/iron/checker, +/area/station/hallway/primary/central/aft) +"qzY" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/iron, +/area/station/maintenance/department/security/upper) +"qAt" = ( +/obj/effect/spawner/random/vending/snackvend, +/obj/effect/turf_decal/siding/white, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/small, +/area/station/commons/dorms) +"qAy" = ( +/obj/machinery/door/firedoor, +/obj/structure/railing, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/medbay/lobby) +"qAz" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/hallway/secondary/exit/departure_lounge) +"qAV" = ( +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/obj/machinery/door/airlock/hatch{ + name = "Maintenance Hatch" + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/lesser) +"qAW" = ( +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"qBk" = ( +/obj/effect/turf_decal/tile/dark_blue/half{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_half, +/area/station/security/brig/entrance) +"qBv" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/bot, +/obj/machinery/light/warm/directional/south, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos/upper) +"qBB" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/space/openspace, +/area/space) +"qBH" = ( +/obj/structure/table/wood, +/obj/item/storage/photo_album/bar, +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/wood/tile, +/area/station/service/bar) +"qCa" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external/glass{ + name = "External Access"; + space_dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/effect/mapping_helpers/airlock/unres, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"qCi" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/service/library) +"qCo" = ( +/obj/effect/spawner/random/maintenance, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"qCt" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"qCw" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"qCE" = ( +/obj/machinery/cryopod, +/obj/effect/turf_decal/siding/white, +/obj/effect/turf_decal/box/white{ + color = "#9FED58" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/common/cryopods) +"qDj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/chair/stool/bar/directional/north, +/turf/open/floor/iron/cafeteria{ + dir = 5 + }, +/area/station/service/kitchen/diner) +"qDl" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/security/telescreen{ + name = "Medbay Monitor"; + network = list("medbay") + }, +/obj/item/reagent_containers/cup/glass/bottle/beer/light{ + pixel_y = 6; + pixel_x = 15 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/security/checkpoint/medical) +"qDB" = ( +/obj/structure/stairs/west, +/turf/open/floor/plating, +/area/station/security/warden) +"qDE" = ( +/obj/structure/rack, +/obj/item/reagent_containers/cup/bottle/iron{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/reagent_containers/cup/bottle/lithium{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/gun/syringe, +/obj/item/storage/box/beakers{ + pixel_y = -4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/sign/warning/chem_diamond/directional/south, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/pharmacy) +"qDH" = ( +/obj/structure/window/spawner/directional/north, +/obj/structure/window/spawner/directional/south, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + location = "Kitchen" + }, +/obj/machinery/door/window/left/directional/east{ + name = "Kitchen Deliveries"; + req_access = list("kitchen") + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/kitchen) +"qDI" = ( +/obj/structure/stairs/north, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/hydroponics) +"qDJ" = ( +/obj/item/chair/wood{ + pixel_y = -6 + }, +/turf/open/floor/wood, +/area/station/maintenance/starboard/fore) +"qEg" = ( +/turf/open/openspace, +/area/station/science/robotics/lab) +"qEt" = ( +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/obj/machinery/door/airlock/hatch{ + name = "Maintenance Hatch" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"qEx" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/wood/large, +/area/station/security/prison) +"qEB" = ( +/obj/item/food/bait/worm, +/obj/structure/rack/shelf, +/obj/item/food/bait/worm, +/obj/effect/spawner/random/maintenance/two, +/obj/item/fishing_hook, +/turf/open/floor/iron/small, +/area/station/maintenance/port/aft) +"qED" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/loading_area, +/obj/machinery/button/elevator/directional/west{ + id = "engi_SMlift"; + req_access = list("engineering") + }, +/obj/machinery/light/warm/directional/west, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"qEK" = ( +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/side, +/area/station/hallway/primary/starboard) +"qEO" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"qFc" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/dark/end, +/obj/machinery/light/cold/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central) +"qFe" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/computer/security/telescreen{ + desc = "Used for the Auxiliary Mining Base."; + name = "Auxiliary Base Monitor"; + network = list("auxbase"); + dir = 8; + pixel_x = 28 + }, +/obj/machinery/camera/directional/east{ + c_tag = "Auxillary Base - Construction"; + network = list("ss13","auxbase") + }, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/construction/mining/aux_base) +"qFg" = ( +/obj/structure/disposaloutlet{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/disposal) +"qFs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/bar/fourcorners, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/checker, +/area/station/service/kitchen/diner) +"qFy" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/suit_storage_unit/open, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/storage) +"qFF" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/wood/large, +/area/station/service/library) +"qFI" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "AI Core shutters"; + name = "AI Core Shutters" + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/ai) +"qFS" = ( +/obj/structure/chair/office, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/solars/port/aft) +"qGa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"qGf" = ( +/obj/machinery/camera/directional/south{ + c_tag = "Central Primary Hallway - Holodeck Access" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"qGk" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"qGU" = ( +/obj/effect/spawner/random/food_or_drink/cups{ + pixel_y = 6; + pixel_x = 6 + }, +/obj/effect/spawner/random/food_or_drink/donkpockets, +/obj/structure/rack/shelf, +/turf/open/floor/iron/freezer, +/area/station/maintenance/port/greater) +"qHb" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/entry) +"qHp" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 4 + }, +/area/station/command/bridge) +"qHs" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/dark_blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) +"qHy" = ( +/obj/structure/table/wood/poker, +/obj/item/ammo_casing/c45{ + dir = 9; + pixel_y = 9; + pixel_x = 4 + }, +/obj/effect/spawner/random/entertainment/deck{ + pixel_x = 6 + }, +/obj/effect/spawner/random/food_or_drink/booze{ + spawn_loot_count = 2; + spawn_random_offset = 3 + }, +/turf/open/floor/wood, +/area/station/maintenance/port/fore) +"qHM" = ( +/obj/effect/turf_decal/tile/dark_red{ + dir = 1 + }, +/obj/machinery/light_switch/directional/west, +/obj/structure/reagent_dispensers/fueltank/large, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/science/robotics/mechbay) +"qHR" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/structure/filingcabinet, +/turf/open/floor/iron/dark/small, +/area/station/tcommsat/computer) +"qHT" = ( +/obj/structure/disposalpipe/junction/yjunction, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/medical/medbay/central) +"qIi" = ( +/obj/structure/lattice, +/obj/structure/window/spawner/directional/east, +/obj/structure/window/spawner/directional/west, +/turf/open/openspace, +/area/station/security/brig/upper) +"qIn" = ( +/obj/effect/turf_decal/bot_white, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/gravity_generator) +"qIE" = ( +/obj/effect/landmark/start/assistant, +/turf/open/floor/glass/reinforced, +/area/station/hallway/secondary/command) +"qIF" = ( +/obj/structure/curtain/cloth, +/turf/open/floor/iron/dark, +/area/station/service/salon) +"qIJ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/computer/communications, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain) +"qIV" = ( +/obj/machinery/mech_bay_recharge_port{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/item/toy/figure/cargotech{ + pixel_y = 11 + }, +/turf/open/floor/plating, +/area/station/cargo/storage) +"qJe" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/storage) +"qJh" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Catwalk Maintenance Access" + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/command) +"qJk" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/machinery/light/warm/directional/west, +/obj/structure/chair/comfy{ + dir = 4; + color = "#DE3A3A" + }, +/turf/open/floor/wood/tile, +/area/station/commons/lounge) +"qJt" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/supermatter/room) +"qJw" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/closed/wall/r_wall, +/area/station/science/xenobiology) +"qJH" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"qJO" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/ai_monitored/command/storage/eva) +"qJX" = ( +/obj/machinery/telecomms/bus/preset_one, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/station/tcommsat/server) +"qKg" = ( +/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/office) +"qKv" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/chair/plastic{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/science/cytology) +"qKx" = ( +/obj/structure/table/optable, +/obj/effect/turf_decal/tile/blue/half{ + dir = 1 + }, +/obj/machinery/defibrillator_mount/directional/south, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/smooth_half, +/area/station/medical/surgery/theatre) +"qKz" = ( +/obj/machinery/door/airlock/security{ + name = "Evidence Storage" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/evidence) +"qKA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/caution, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"qKB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"qKC" = ( +/obj/effect/turf_decal/siding/thinplating_new/light, +/obj/effect/turf_decal/siding/wideplating_new{ + dir = 4 + }, +/obj/structure/fans/tiny/invisible, +/turf/open/floor/iron/white/diagonal, +/area/station/common/spa) +"qKI" = ( +/obj/machinery/digital_clock/directional/north, +/obj/effect/turf_decal/tile/blue/half{ + dir = 8 + }, +/obj/machinery/smartfridge/organ, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/medical/surgery/fore) +"qKV" = ( +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/door/window/left/directional/north{ + name = "Atmospherics Deliveries"; + req_access = list("atmospherics") + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=1"; + location = "Atmospherics" + }, +/turf/open/floor/iron/large, +/area/station/engineering/atmos/office) +"qLc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple/half{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/cargo/storage) +"qLf" = ( +/obj/machinery/disposal/delivery_chute{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plating, +/area/station/cargo/sorting) +"qLm" = ( +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/bar/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/turf/open/floor/iron/checker, +/area/station/service/kitchen/diner) +"qLo" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/department/science/xenobiology) +"qLy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/brig/entrance) +"qLH" = ( +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/station/commons/dorms) +"qLX" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/box, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/hydroponics/upper) +"qLZ" = ( +/obj/structure/cable, +/obj/structure/aquarium/lawyer, +/turf/open/floor/carpet, +/area/station/service/lawoffice) +"qMo" = ( +/obj/structure/lattice, +/obj/structure/window/spawner/directional/east, +/obj/structure/window/spawner/directional/west, +/turf/open/openspace, +/area/station/security/prison/upper) +"qMA" = ( +/obj/structure/window/reinforced/tinted/fulltile, +/obj/structure/hedge/opaque, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/nt_rep) +"qMF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/iron/white/side{ + dir = 1 + }, +/area/station/science/research) +"qMI" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/camera/directional/west{ + c_tag = "Upper Central Primary Hallway - Service Hydroponics" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"qMR" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron, +/area/station/hallway/secondary/recreation) +"qMS" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/maintenance/disposal) +"qNd" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/components/unary/passive_vent{ + dir = 4 + }, +/turf/open/space/openspace, +/area/space) +"qNe" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/central/lesser) +"qNh" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/aisat_interior) +"qNv" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/station/service/salon) +"qNx" = ( +/obj/effect/turf_decal/tile/red/real_red{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/corner{ + dir = 8 + }, +/area/station/hallway/secondary/exit/escape_pod) +"qNA" = ( +/obj/structure/rack/shelf, +/obj/effect/spawner/random/medical/minor_healing, +/turf/open/floor/iron/white, +/area/station/medical/pharmacy) +"qNB" = ( +/obj/effect/spawner/random/engineering/tank, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"qOg" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/space, +/area/station/solars/port/fore) +"qOt" = ( +/obj/item/food/grown/banana, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/grass, +/area/station/medical/virology) +"qOB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/item/stack/sheet/mineral/coal, +/obj/effect/spawner/random/engineering/flashlight, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"qOF" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/exit/departure_lounge) +"qOL" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Brig" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/holding_cell) +"qOP" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/openspace, +/area/station/maintenance/port/lesser) +"qOS" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/science/robotics/lab) +"qPg" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/firealarm/directional/east, +/turf/open/openspace, +/area/station/science/xenobiology) +"qPn" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/carpet/purple, +/area/station/service/barber) +"qPo" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Primary Tool Storage Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, +/turf/open/floor/plating, +/area/station/commons/storage/primary) +"qPu" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 4 + }, +/area/station/command/meeting_room/council) +"qPA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/engine, +/area/station/engineering/main) +"qPC" = ( +/obj/effect/spawner/random/trash/grime, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"qPQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/kirbyplants/random/dead, +/turf/open/floor/plating, +/area/station/maintenance/department/electrical) +"qPR" = ( +/obj/effect/turf_decal/bot_white, +/obj/machinery/rnd/production/circuit_imprinter/department/science, +/obj/effect/turf_decal/tile/dark_red{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 1 + }, +/area/station/science/robotics/lab) +"qQb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/box, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/ordnance) +"qQf" = ( +/obj/machinery/camera/directional/south{ + c_tag = "Xenobiology Pens - Aft"; + network = list("ss13","xeno","rd") + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"qQj" = ( +/obj/effect/spawner/random/trash/garbage, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/oil, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/central) +"qQt" = ( +/obj/machinery/keycard_auth/directional/west{ + pixel_y = -8 + }, +/obj/structure/filingcabinet/filingcabinet, +/obj/machinery/firealarm/directional/north, +/obj/machinery/light_switch/directional/west{ + pixel_y = 6 + }, +/turf/open/floor/carpet/purple, +/area/station/command/heads_quarters/rd) +"qQI" = ( +/obj/machinery/airalarm/directional/east, +/obj/machinery/light/warm/directional/east, +/turf/open/floor/iron, +/area/station/service/library) +"qQJ" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/ladder, +/obj/effect/landmark/generic_maintenance_landmark, +/turf/open/floor/plating, +/area/station/maintenance/solars/starboard/aft) +"qRb" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"qRr" = ( +/obj/structure/chair/office, +/obj/effect/turf_decal/tile/dark_blue, +/obj/effect/landmark/start/security_officer, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/security/office) +"qRI" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/hfr_room) +"qRL" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 8 + }, +/area/station/security/office) +"qRN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/kitchen/diagonal, +/area/station/maintenance/abandon_diner) +"qRP" = ( +/obj/item/radio/intercom{ + broadcasting = 1; + listening = 0; + name = "Station Intercom (Court)"; + pixel_x = -16 + }, +/obj/item/folder/red{ + pixel_y = 4 + }, +/obj/item/pen{ + pixel_y = 4 + }, +/obj/effect/turf_decal/tile/dark_red/diagonal_centre, +/obj/structure/table/reinforced, +/turf/open/floor/iron/diagonal, +/area/station/security/courtroom) +"qRT" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/station/command/heads_quarters/nt_rep) +"qRU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/window/left/directional/south{ + name = "Desk Access"; + req_access = list("library") + }, +/obj/structure/cable, +/turf/open/floor/carpet/green, +/area/station/service/library/lounge) +"qSk" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/full, +/turf/open/floor/engine, +/area/station/engineering/main) +"qSm" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/medbay/central) +"qSz" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Brig" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/holding_cell) +"qSE" = ( +/obj/effect/turf_decal/tile/yellow/half, +/obj/structure/stairs/south, +/turf/open/floor/plating, +/area/station/medical/pharmacy) +"qSG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/station/maintenance/solars/starboard/fore) +"qSM" = ( +/obj/structure/stairs/west, +/turf/open/floor/plating, +/area/station/command/meeting_room/council) +"qSN" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/openspace, +/area/station/science/xenobiology) +"qSW" = ( +/obj/structure/rack, +/obj/item/clothing/gloves/color/fyellow, +/obj/effect/spawner/random/maintenance, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/fore) +"qSZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/floor/has_bulb, +/obj/effect/turf_decal/siding/dark_blue/corner, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"qTi" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/spray/pestspray{ + pixel_x = 6; + pixel_y = 9 + }, +/obj/item/reagent_containers/spray/plantbgone{ + pixel_y = 7; + pixel_x = -8 + }, +/obj/item/reagent_containers/cup/bottle/nutrient/ez{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/reagent_containers/cup/bottle/nutrient/rh{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/service/hydroponics/garden) +"qTy" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/openspace, +/area/station/maintenance/starboard/fore) +"qTH" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"qTO" = ( +/obj/machinery/door/window/brigdoor/left/directional/west{ + name = "Court Cell"; + req_access = list("security") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/courtroom) +"qTQ" = ( +/obj/effect/turf_decal/box, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/primary/central) +"qUd" = ( +/obj/effect/turf_decal/tile/dark_red/half{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_half, +/area/station/science/robotics/lab) +"qUf" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/lime, +/turf/open/space/basic, +/area/space/nearstation) +"qUr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron/white/side{ + dir = 4 + }, +/area/station/science/research) +"qUQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/engineering/atmos/hfr_room) +"qVf" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/corner, +/area/station/hallway/secondary/recreation) +"qVo" = ( +/obj/structure/closet/secure_closet/hop, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark, +/area/station/command/heads_quarters/hop) +"qVq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"qVz" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood, +/area/station/command/heads_quarters/nt_rep) +"qVB" = ( +/obj/structure/chair/stool/directional/north, +/obj/structure/closet/secure_closet/wall{ + pixel_x = 24 + }, +/obj/machinery/light/small/directional/south, +/obj/item/clothing/under/costume/nova/bathrobe, +/turf/open/floor/iron/small, +/area/station/service/salon) +"qVF" = ( +/obj/structure/chair/wood, +/obj/effect/turf_decal/siding/wood, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/wood/large, +/area/station/service/chapel/funeral) +"qVK" = ( +/obj/effect/turf_decal/tile/red/real_red{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/white/corner{ + dir = 8 + }, +/area/station/hallway/secondary/exit/escape_pod) +"qWb" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/openspace, +/area/station/maintenance/aft/upper) +"qWD" = ( +/obj/structure/cable, +/turf/open/floor/engine/hull/reinforced, +/area/station/solars/aisat) +"qWS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/qm) +"qWU" = ( +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/box, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner/directional/north, +/turf/open/floor/plating, +/area/station/ai_monitored/turret_protected/ai) +"qWV" = ( +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/structure/chair/sofa/corp/right, +/obj/effect/landmark/start/medical_doctor, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/wood/large, +/area/station/medical/break_room) +"qXm" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/primary/central/aft) +"qXA" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/green, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/common/wrestling/arena) +"qXE" = ( +/turf/closed/wall/r_wall, +/area/station/engineering/storage_shared) +"qXK" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/grass, +/area/station/service/hydroponics/upper) +"qXL" = ( +/obj/effect/decal/cleanable/ash/large, +/turf/open/floor/engine/vacuum, +/area/station/science/ordnance/burnchamber) +"qYf" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/grimy, +/area/station/security/detectives_office) +"qYh" = ( +/obj/machinery/door/poddoor/shutters{ + id = "XenobioTrash"; + name = "Disposal Shutters" + }, +/turf/open/floor/plating/airless, +/area/station/science/xenobiology) +"qYj" = ( +/turf/open/openspace, +/area/station/maintenance/starboard/greater) +"qYo" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/hfr_room) +"qYw" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/solars/starboard/fore) +"qYF" = ( +/obj/structure/dresser, +/obj/item/toy/figure/ce{ + pixel_y = 14 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/carpet/black, +/area/station/command/heads_quarters/ce) +"qYP" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 8 + }, +/area/station/command/bridge) +"qYS" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/freezer, +/area/station/maintenance/abandon_diner) +"qYV" = ( +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/structure/barricade/wooden/crude, +/obj/machinery/door/airlock/maintenance/external{ + name = "Abandoned Robotics Lab" + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/locked, +/obj/effect/mapping_helpers/airlock/cutaiwire, +/obj/effect/mapping_helpers/airlock/welded, +/turf/open/floor/plating, +/area/station/science/research/abandoned) +"qZi" = ( +/obj/structure/sign/flag/mothic/directional/north, +/obj/effect/spawner/random/engineering/tank, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"qZA" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/item/defibrillator/loaded, +/obj/item/clothing/gloves/latex/nitrile, +/obj/item/clothing/gloves/latex/nitrile, +/obj/item/storage/belt/medical{ + pixel_y = 3 + }, +/obj/item/storage/belt/medical{ + pixel_y = 3 + }, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/mapping_helpers/requests_console/ore_update, +/obj/machinery/requests_console/auto_name/directional/south, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/storage) +"qZB" = ( +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 1 + }, +/obj/item/kirbyplants/organic/plant6, +/obj/effect/turf_decal/tile/bar/fourcorners, +/obj/machinery/digital_clock/directional/south, +/obj/machinery/light/warm/directional/west, +/turf/open/floor/iron/checker, +/area/station/service/kitchen/diner) +"qZL" = ( +/obj/structure/grille/broken, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"qZU" = ( +/obj/effect/turf_decal/tile/blue, +/obj/machinery/holopad, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron/white, +/area/station/science/explab) +"rae" = ( +/obj/effect/turf_decal/lunar_sand, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/firealarm/directional/east, +/obj/machinery/light/cold/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"rai" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance/external{ + name = "Chemistry Factory" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/all/medical/chemistry, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/pharmacy) +"rak" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/white, +/area/station/science/ordnance) +"rax" = ( +/obj/effect/turf_decal/stripes/red/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark_red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"raA" = ( +/turf/closed/wall/r_wall, +/area/station/security/holding_cell) +"raC" = ( +/turf/closed/wall/r_wall, +/area/station/science/circuits) +"raG" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/solars/port/aft) +"raJ" = ( +/obj/structure/trash_pile, +/turf/open/floor/plating, +/area/station/medical/break_room) +"raK" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/structure/table/reinforced, +/obj/item/reagent_containers/cup/glass/coffee{ + pixel_y = 12; + pixel_x = 9 + }, +/obj/item/inducer, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) +"rbf" = ( +/obj/effect/turf_decal/tile/dark_blue/anticorner, +/obj/structure/chair/plastic, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 1 + }, +/area/station/security/brig/entrance) +"rbh" = ( +/turf/closed/wall, +/area/station/science/ordnance/testlab) +"rbj" = ( +/obj/effect/turf_decal/tile/dark_red{ + dir = 1 + }, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/science/robotics/mechbay) +"rbm" = ( +/turf/closed/wall, +/area/station/commons/toilet/restrooms) +"rbv" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/science/genetics) +"rbw" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 6 + }, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"rbG" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Public Hydroponics Storage" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/hydroponics) +"rbO" = ( +/obj/machinery/door/airlock/hatch{ + name = "Maintenance Hatch" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"rbQ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/hallway/primary/port) +"rcb" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/white, +/area/station/medical/storage) +"rcA" = ( +/obj/machinery/camera/preset/ordnance{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"rcG" = ( +/obj/structure/chair/office, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/aisat/teleporter) +"rcJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/small, +/area/station/bitrunning/den) +"rcL" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light/directional/west, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/hallway/primary/central) +"rcR" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/light/warm/directional/west, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/large, +/area/station/service/chapel) +"rcS" = ( +/obj/machinery/door/window/elevator/right/directional/north{ + elevator_mode = 1; + elevator_linked_id = "departures_lift" + }, +/turf/open/floor/glass/reinforced, +/area/station/hallway/secondary/exit) +"rcX" = ( +/obj/machinery/atmospherics/pipe/multiz/green/visible, +/obj/effect/turf_decal/stripes/end, +/obj/machinery/airalarm/directional/north, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"rdd" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/security/eva) +"rdf" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/cable/layer1, +/obj/structure/cable/layer3, +/turf/open/floor/glass, +/area/station/ai_monitored/turret_protected/ai) +"rdy" = ( +/obj/structure/hedge, +/obj/structure/window/fulltile, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/lounge) +"rdD" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"rdS" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/structure/railing{ + dir = 6 + }, +/obj/structure/cable, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/ai) +"rdU" = ( +/obj/effect/turf_decal/trimline/dark_red/line, +/turf/open/floor/iron, +/area/station/security/prison) +"rdX" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/wood/tile, +/area/station/medical/psychology) +"rdY" = ( +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"rec" = ( +/obj/structure/chair/pew/right, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/chapel, +/area/station/service/chapel) +"ree" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/obj/item/paper/fluff/genpop_instructions, +/obj/structure/table, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/security/holding_cell) +"rem" = ( +/obj/machinery/bci_implanter, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/small, +/area/station/science/circuits) +"reF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance/external/glass{ + name = "Upper Auxiliary Tool Storage" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/storage/tools) +"reG" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/security/office) +"reK" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/structure/cable, +/obj/structure/fireaxecabinet/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/dark/small, +/area/station/command/bridge) +"reP" = ( +/obj/structure/rack/shelf, +/obj/effect/turf_decal/bot, +/obj/effect/spawner/random/engineering/material{ + pixel_y = 6 + }, +/obj/effect/spawner/random/engineering/material{ + pixel_x = -3 + }, +/obj/effect/spawner/random/engineering/material{ + pixel_y = -3 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/iron, +/area/station/engineering/supermatter/room) +"reS" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/hydroponics) +"reW" = ( +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/effect/turf_decal/bot_white, +/obj/machinery/camera/directional/east{ + c_tag = "Science - Circuits Lab"; + network = list("ss13","rd") + }, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 8 + }, +/obj/machinery/nanite_programmer, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/science/circuits) +"rfb" = ( +/obj/structure/cable, +/obj/machinery/power/smes, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/solars/starboard/aft) +"rfc" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/obj/machinery/computer/prisoner/management, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/escape) +"rfk" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/siding/wood/end{ + dir = 8 + }, +/obj/structure/table, +/obj/item/crowbar{ + pixel_y = 5 + }, +/obj/item/flashlight{ + pixel_y = 5; + pixel_x = 5 + }, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"rfo" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/glass/reinforced, +/area/station/hallway/secondary/entry) +"rfs" = ( +/obj/item/stack/medical/mesh, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/item/stack/medical/suture{ + pixel_x = -5 + }, +/obj/item/stack/medical/suture{ + pixel_x = 5 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/obj/structure/table/glass, +/turf/open/floor/iron/dark, +/area/station/medical/treatment_center) +"rfJ" = ( +/obj/effect/turf_decal/weather/snow, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/service/kitchen/coldroom) +"rfL" = ( +/obj/structure/railing, +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/obj/machinery/light/warm/directional/north, +/turf/open/openspace, +/area/station/engineering/main) +"rfM" = ( +/obj/effect/turf_decal/tile/dark_red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 8 + }, +/area/station/common/wrestling/arena) +"rfY" = ( +/obj/effect/spawner/random/structure/crate, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"rgb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Cooling Loop Bypass" + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"rgc" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"rgh" = ( +/obj/structure/table/wood, +/obj/machinery/computer/libraryconsole{ + dir = 4; + pixel_y = 6 + }, +/turf/open/floor/wood/large, +/area/station/service/library) +"rgj" = ( +/obj/item/radio/intercom/directional/south, +/obj/machinery/light/directional/south, +/obj/structure/table/wood, +/obj/structure/window/spawner/directional/east, +/obj/item/food/croissant{ + pixel_x = -4 + }, +/obj/item/food/croissant{ + pixel_x = 4 + }, +/obj/item/food/croissant, +/turf/open/floor/wood/tile, +/area/station/hallway/secondary/exit/departure_lounge) +"rgk" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer4{ + dir = 10 + }, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/engineering/atmos/hfr_room) +"rgp" = ( +/obj/structure/bed/pod{ + color = "#462f1c"; + name = "lounge seat" + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/carpet, +/area/station/medical/psychology) +"rgr" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/white/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"rgU" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/department/science/xenobiology) +"rgV" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + name = "Mix to Filter" + }, +/turf/open/floor/engine, +/area/station/engineering/atmos) +"rhg" = ( +/obj/effect/turf_decal/bot, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/iron/large, +/area/station/cargo/storage) +"rhr" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"rhE" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/machinery/status_display/evac/directional/north, +/obj/structure/closet/crate/bin, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/escape) +"rhM" = ( +/turf/closed/wall/r_wall, +/area/station/science/research) +"rhO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/obj/machinery/meter, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"rhX" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/iron/edge, +/area/station/maintenance/starboard/lesser) +"rhY" = ( +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/n2{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos) +"rik" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) +"riF" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/engineering/storage) +"riH" = ( +/obj/effect/turf_decal/tile/dark_blue/half{ + dir = 4 + }, +/obj/machinery/airalarm/directional/south, +/obj/item/kirbyplants/synthetic/plant29, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/security/office) +"riJ" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch" + }, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"riK" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/cafeteria{ + dir = 8 + }, +/area/station/service/salon) +"riL" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/security/checkpoint/medical) +"riS" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/medical/storage) +"riW" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible{ + dir = 10 + }, +/turf/open/space/openspace, +/area/space/nearstation) +"riX" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/item/kirbyplants/synthetic/plant27, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/machinery/light_switch/directional/east, +/obj/machinery/camera/directional/east{ + c_tag = "Medbay - Recovery Centre Access"; + network = list("ss13","medbay") + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"rjz" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/siding/green{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/siding/green{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_half, +/area/station/service/hydroponics) +"rjJ" = ( +/obj/structure/chair/pew/right, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/chapel{ + dir = 4 + }, +/area/station/service/chapel) +"rjN" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/openspace, +/area/station/maintenance/port/greater) +"rjQ" = ( +/obj/effect/turf_decal/tile/dark/diagonal_edge, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/kitchen/diagonal, +/area/station/security/prison) +"rjV" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/landmark/start/geneticist, +/turf/open/floor/iron/white/side, +/area/station/science/genetics) +"rku" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/item/clothing/gloves/color/yellow, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/item/holosign_creator/atmos, +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/gloves/color/yellow, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"rkS" = ( +/obj/structure/window/spawner/directional/south, +/obj/structure/window/spawner/directional/west, +/obj/structure/window/spawner/directional/east, +/obj/structure/window/spawner/directional/north, +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/olive, +/turf/open/openspace, +/area/station/commons/fitness/recreation) +"rlf" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/light/warm/directional/west, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/iron/large, +/area/station/cargo/storage) +"rlm" = ( +/obj/effect/turf_decal/bot_white, +/obj/machinery/recharge_station, +/turf/open/floor/iron/small, +/area/station/science/robotics/lab) +"rly" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics_shutters"; + name = "Robotics Privacy Shutters"; + dir = 8 + }, +/turf/open/floor/plating, +/area/station/science/robotics/lab) +"rlC" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light_switch/directional/west, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/commons/dorms/room2) +"rlE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/small, +/area/station/cargo/drone_bay) +"rlJ" = ( +/obj/effect/spawner/random/engineering/tracking_beacon, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/robotics/lab) +"rlQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, +/obj/machinery/meter, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/maintenance/department/science/xenobiology) +"rlT" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/command/meeting_room/council) +"rlX" = ( +/obj/structure/table/wood, +/obj/machinery/computer/records/medical/laptop, +/turf/open/floor/carpet, +/area/station/medical/psychology) +"rme" = ( +/obj/machinery/door/window/elevator/right/directional/north{ + elevator_mode = 1; + elevator_linked_id = "arrivals_lift" + }, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"rmg" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/service/kitchen/coldroom) +"rml" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/entry) +"rmq" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"rmw" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"rmx" = ( +/obj/effect/turf_decal/siding/white{ + dir = 6 + }, +/turf/open/floor/iron/dark, +/area/station/medical/medbay/central) +"rmF" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/purple, +/area/station/service/barber) +"rmH" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/chair/sofa/right/brown, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/turf/open/floor/carpet/green, +/area/station/service/library/lounge) +"rnb" = ( +/obj/structure/table, +/obj/item/taperecorder{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/folder/red, +/obj/item/pen, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/interrogation) +"rnd" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"rnp" = ( +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/machinery/growing/tray, +/turf/open/misc/dirt/planet, +/area/station/security/prison) +"rnq" = ( +/obj/structure/chair/office, +/obj/machinery/airalarm/directional/north, +/obj/effect/landmark/start/hangover, +/turf/open/floor/carpet, +/area/station/commons/vacant_room/office) +"rnr" = ( +/obj/machinery/status_display/evac/directional/north, +/turf/open/openspace, +/area/station/command/bridge) +"rnw" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/lobby) +"rnz" = ( +/obj/effect/spawner/random/trash/box, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/station/maintenance/central) +"rnD" = ( +/obj/effect/turf_decal/tile/red/real_red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/corner{ + dir = 8 + }, +/area/station/hallway/secondary/entry) +"rnF" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/brig/upper) +"rnL" = ( +/obj/structure/closet/crate/coffin, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/chapel/funeral) +"rnS" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/central/fore) +"rob" = ( +/obj/machinery/rnd/production/techfab/department/service, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/service) +"rok" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"rop" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/science/xenobiology) +"rox" = ( +/obj/machinery/vending/wardrobe/cargo_wardrobe, +/turf/open/floor/iron/dark, +/area/station/cargo/office) +"roB" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/service) +"roH" = ( +/obj/effect/spawner/random/techstorage/service_all, +/obj/structure/table/glass, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/dark/small, +/area/station/engineering/storage/tech) +"roI" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners, +/obj/machinery/photocopier, +/obj/effect/turf_decal/bot_white, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/dark, +/area/station/science/robotics/lab) +"roU" = ( +/obj/machinery/light/warm/directional/north, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/tile, +/area/station/service/kitchen) +"roZ" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"rpb" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/obj/machinery/recharger, +/obj/machinery/airalarm/directional/west, +/obj/machinery/light/no_nightlight/directional/west, +/turf/open/floor/iron/dark, +/area/station/common/laser_tag) +"rpn" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"rpA" = ( +/obj/machinery/door/airlock/external{ + name = "MiniSat External Access" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/science/minisat, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/structure/cable/layer1, +/obj/structure/cable/layer3, +/turf/open/floor/plating, +/area/station/ai_monitored/turret_protected/aisat/maint) +"rpB" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/caution/stand_clear{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/cargo/miningdock) +"rpH" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 10 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"rpV" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/visible, +/turf/open/floor/engine, +/area/station/science/ordnance) +"rqf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/service/library) +"rqw" = ( +/obj/effect/spawner/random/structure/tank_holder, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron/small, +/area/station/maintenance/port/aft) +"rqN" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/station/medical/pharmacy) +"rqT" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/green/filled/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 8 + }, +/obj/machinery/vending/hydronutrients, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 8 + }, +/area/station/service/hydroponics) +"rrc" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/station/maintenance/department/security/upper) +"rrj" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "qm"; + name = "Privacy Shutters" + }, +/turf/open/floor/plating, +/area/station/command/heads_quarters/qm) +"rrl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark/small, +/area/station/medical/treatment_center) +"rrp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/engine, +/area/station/science/explab) +"rrs" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"rrw" = ( +/turf/open/floor/wood/tile, +/area/station/service/bar) +"rrK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"rrU" = ( +/obj/structure/cable, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/hallway/primary/port) +"rse" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"rsl" = ( +/obj/structure/lattice/catwalk, +/obj/structure/window/spawner/directional/east, +/obj/structure/window/spawner/directional/west, +/obj/structure/window/spawner/directional/north, +/obj/structure/window/spawner/directional/south, +/obj/structure/marker_beacon/olive, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/openspace, +/area/station/service/hydroponics/upper) +"rsC" = ( +/obj/machinery/door/airlock/external{ + name = "Departure Shuttle Airlock"; + space_dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/plating, +/area/station/security/checkpoint/escape) +"rtl" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/machinery/plate_press, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"rty" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/tile/red/real_red{ + dir = 4 + }, +/turf/open/floor/iron/white/corner{ + dir = 1 + }, +/area/station/commons/storage/mining) +"rtK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/machinery/meter, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"rtS" = ( +/obj/effect/turf_decal/tile/bar/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/checker, +/area/station/service/kitchen/diner) +"rtX" = ( +/obj/machinery/iv_drip, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/iron/white/small, +/area/station/medical/surgery/aft) +"rtY" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"rue" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Security - Brig Entrance" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/security/brig/entrance) +"ruh" = ( +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/ai) +"ruk" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Wrestling Arena" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/common/wrestling/arena) +"ruo" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white, +/area/station/medical/pharmacy) +"rut" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/eighties, +/area/station/common/arcade) +"rux" = ( +/obj/structure/closet/secure_closet/brig{ + id = "engcell"; + name = "Engineering Cell Locker" + }, +/turf/open/floor/catwalk_floor/iron, +/area/station/security/checkpoint/engineering) +"ruy" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"ruO" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera/directional/north{ + c_tag = "Upper Central Primary Hallway - Science R&D Access" + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/primary/central/aft) +"ruU" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/machinery/light/cold/directional/east, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/security/brig/entrance) +"ruX" = ( +/obj/structure/cable/multilayer/multiz, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/department/science/xenobiology) +"rvh" = ( +/obj/effect/turf_decal/tile/dark_blue/half{ + dir = 8 + }, +/obj/machinery/light/cold/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_half{ + dir = 8 + }, +/area/station/security/range) +"rvm" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/landmark/start/hangover, +/turf/open/floor/glass/reinforced, +/area/station/hallway/secondary/command) +"rvt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/floor/has_bulb, +/obj/effect/turf_decal/siding/dark_blue/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"rvF" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/grass, +/area/station/service/hydroponics/upper) +"rvG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"rvM" = ( +/obj/structure/transit_tube, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/plating, +/area/station/engineering/transit_tube) +"rvT" = ( +/obj/effect/spawner/random/trash/food_packaging, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"rwj" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/girder/reinforced, +/turf/open/floor/iron/dark/smooth_large, +/area/station/common/laser_tag) +"rwl" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/item/radio/intercom/prison/directional/east, +/obj/machinery/light/warm/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"rwo" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/small, +/area/station/science/genetics) +"rww" = ( +/obj/effect/turf_decal/tile/blue/half{ + dir = 1 + }, +/obj/machinery/computer/operating{ + dir = 1 + }, +/obj/machinery/button/door/directional/south{ + id = "main_surgery"; + name = "privacy shutters control" + }, +/obj/effect/turf_decal/box/white, +/turf/open/floor/iron/dark/smooth_half, +/area/station/medical/surgery/theatre) +"rwy" = ( +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/diagonal, +/area/station/security/courtroom) +"rwD" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/structure/sign/warning/secure_area/directional/south, +/obj/item/kirbyplants/organic/plant22, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/ai_monitored/command/nuke_storage) +"rwN" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/camera/directional/east{ + c_tag = "Medbay - Primary Treatment Centre Starboard"; + network = list("ss13","medbay") + }, +/obj/machinery/defibrillator_mount/directional/south, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"rwZ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"rxf" = ( +/obj/structure/trash_pile, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"rxk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/engineering/main) +"rxm" = ( +/obj/effect/turf_decal/tile/green/opposingcorners, +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/checker{ + dir = 1 + }, +/area/station/hallway/secondary/recreation) +"rxr" = ( +/obj/effect/spawner/random/structure/crate, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"rxs" = ( +/obj/machinery/camera/directional/west{ + c_tag = "Bridge Core -Port" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/mapping_helpers/requests_console/ore_update, +/obj/effect/mapping_helpers/requests_console/announcement, +/obj/effect/mapping_helpers/requests_console/information, +/obj/machinery/requests_console/auto_name/directional/west, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"rxF" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/space_heater, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/department/security/lower) +"rxU" = ( +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/obj/effect/turf_decal/siding/red{ + dir = 8 + }, +/obj/machinery/computer/records/security{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/security/warden) +"rxW" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/dresser, +/obj/item/kirbyplants/organic/plant23{ + pixel_y = 22; + pixel_x = -4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/commons/dorms/room5) +"rya" = ( +/obj/machinery/computer/scan_consolenew{ + dir = 8 + }, +/turf/open/floor/glass/reinforced, +/area/station/science/genetics) +"ryi" = ( +/obj/effect/turf_decal/tile/red/real_red{ + dir = 4 + }, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/secondary/entry) +"ryx" = ( +/obj/structure/window/fulltile, +/obj/structure/hedge, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/lounge) +"ryA" = ( +/obj/effect/spawner/random/structure/crate_abandoned, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"ryF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/large, +/area/station/hallway/secondary/recreation) +"ryK" = ( +/obj/structure/lattice/catwalk, +/obj/structure/rack/shelf, +/obj/effect/spawner/random/maintenance/four, +/turf/open/openspace, +/area/station/maintenance/starboard/greater) +"ryT" = ( +/obj/machinery/iv_drip, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/iron/white/small, +/area/station/medical/surgery/fore) +"ryZ" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/effect/mapping_helpers/mail_sorting/service/dormitories, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/disposalpipe/sorting/mail/flip, +/turf/open/floor/wood, +/area/station/commons/dorms) +"rzf" = ( +/obj/effect/turf_decal/tile/dark_blue/half{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/security/office) +"rzj" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/disposalpipe/junction/flip, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"rzk" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/solars/starboard/aft) +"rzv" = ( +/obj/item/trash/syndi_cakes, +/turf/open/floor/plating, +/area/station/maintenance/department/bridge) +"rzE" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/qm) +"rzH" = ( +/obj/machinery/atmospherics/components/tank, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/ordnance) +"rzL" = ( +/obj/effect/turf_decal/tile/green/opposingcorners{ + dir = 1 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/primary/central/fore) +"rzN" = ( +/obj/machinery/light/warm/directional/west, +/obj/machinery/requests_console/auto_name/directional/west, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/bookbinder, +/turf/open/floor/carpet/green, +/area/station/service/library/lounge) +"rzQ" = ( +/obj/machinery/light/directional/south, +/obj/item/radio/intercom/directional/south, +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/neutral/half, +/turf/open/floor/iron, +/area/station/commons/storage/mining) +"rAf" = ( +/obj/effect/turf_decal/tile/green/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/checker, +/area/station/hallway/primary/central/fore) +"rAg" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/tile/dark_red/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/service/chapel) +"rAx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/asylum{ + name = "Carp Pro Shop" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/dark/smooth_large, +/area/station/common/carpshop) +"rAF" = ( +/obj/machinery/requests_console/auto_name/directional/south, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/mapping_helpers/requests_console/information, +/turf/open/floor/engine, +/area/station/science/ordnance) +"rBc" = ( +/turf/closed/wall/r_wall, +/area/station/science/genetics) +"rBg" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/glass/reinforced, +/area/station/science/research) +"rBq" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/structure/table, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/hfr_room) +"rBU" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "sci-entrance" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/general, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/machinery/door/airlock/research{ + name = "Research and Development Lab" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/research) +"rCe" = ( +/obj/machinery/light/warm/dim/directional/east, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/wood, +/area/station/service/abandoned_gambling_den) +"rCi" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/light/warm/directional/south, +/turf/open/openspace, +/area/station/service/kitchen/diner) +"rCo" = ( +/obj/machinery/ore_silo, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/smooth_large, +/area/station/ai_monitored/command/nuke_storage) +"rCS" = ( +/obj/effect/turf_decal/box/blue, +/obj/item/banner/blue, +/obj/effect/turf_decal/siding/white/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/common/laser_tag) +"rCX" = ( +/obj/item/seeds/wheat, +/obj/item/seeds/sugarcane, +/obj/item/seeds/potato, +/obj/item/seeds/apple, +/obj/item/grown/corncob, +/obj/item/food/grown/carrot, +/obj/item/food/grown/wheat, +/obj/structure/table/glass, +/obj/item/food/grown/onion{ + pixel_x = 3 + }, +/obj/item/food/grown/garlic{ + pixel_x = -6; + pixel_y = -3 + }, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 1 + }, +/obj/item/stack/sheet/glass{ + amount = 4; + pixel_y = 4; + pixel_x = 4 + }, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/service/hydroponics) +"rDi" = ( +/obj/machinery/airalarm/directional/north, +/obj/machinery/camera/directional/north{ + c_tag = "Engineering - Supermatter Chamber Starboard"; + network = list("ss13","engine") + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/main) +"rDo" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/turf_decal/bot, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/iron/dark/small, +/area/station/science/ordnance) +"rDx" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/openspace, +/area/station/science/xenobiology) +"rDQ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/solars/port/aft) +"rEb" = ( +/obj/effect/turf_decal/trimline/white/end{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/white/mid_joiner, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 1 + }, +/obj/machinery/space_heater, +/turf/open/floor/iron/dark/small, +/area/station/hallway/primary/central/aft) +"rEf" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/item/clothing/suit/hooded/wintercoat/engineering, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/storage) +"rEx" = ( +/turf/closed/wall/r_wall, +/area/station/security/checkpoint/customs) +"rEI" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/entry) +"rEM" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron, +/area/station/commons/vacant_room/commissary) +"rFa" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/delam_scram/directional/north, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"rFq" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/mirror/directional/west, +/obj/structure/sink/directional/east, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"rFu" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/cerulean, +/turf/open/space/openspace, +/area/space/nearstation) +"rFv" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/science/xenobiology) +"rFG" = ( +/obj/structure/marker_beacon/indigo, +/obj/structure/lattice/catwalk, +/obj/machinery/light/blacklight/directional/south, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"rFH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/station/engineering/supermatter) +"rFI" = ( +/obj/machinery/microwave{ + desc = "Cooks and boils stuff, somehow."; + pixel_y = 6 + }, +/obj/structure/table, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"rFJ" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/robotics/lab) +"rFM" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"rFN" = ( +/obj/structure/rack, +/obj/effect/spawner/random/clothing/gloves, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/clothing/mask/breath, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"rFP" = ( +/obj/machinery/door/poddoor{ + id = "securestorage"; + name = "Secure Storage" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/engineering/storage_shared) +"rFW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/holding_cell) +"rFZ" = ( +/obj/effect/turf_decal/lunar_sand/plating, +/turf/open/floor/glass/reinforced, +/area/station/science/xenobiology) +"rGa" = ( +/obj/machinery/light/cold/no_nightlight/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/bot_white, +/obj/structure/table/optable, +/obj/effect/turf_decal/tile/blue/full, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/surgery/fore) +"rGe" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/deputy{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/office) +"rGl" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/lockers) +"rGm" = ( +/obj/machinery/light/small/blacklight/directional/north, +/turf/open/floor/iron/dark, +/area/station/medical/morgue) +"rGn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/engineering/atmos/office) +"rGr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/circuits) +"rGt" = ( +/obj/effect/spawner/random/structure/crate, +/obj/item/reagent_containers/pill/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"rGF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"rGH" = ( +/obj/structure/trash_pile, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/maintenance/aft/greater) +"rGK" = ( +/turf/closed/wall, +/area/station/hallway/primary/central/fore) +"rGW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"rHf" = ( +/obj/effect/spawner/random/maintenance, +/obj/structure/rack, +/obj/effect/spawner/random/engineering/flashlight, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"rHj" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners, +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/chaplain, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/service/chapel) +"rHS" = ( +/obj/structure/chair/plastic{ + dir = 1 + }, +/turf/open/floor/wood, +/area/station/command/meeting_room/council) +"rIg" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/engine, +/area/station/medical/chemistry) +"rIk" = ( +/obj/machinery/door/airlock/command{ + name = "Head of Personnel's Quarters" + }, +/obj/effect/mapping_helpers/airlock/access/any/command/hop, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/command/heads_quarters/hop) +"rIo" = ( +/obj/effect/spawner/random/maintenance/two, +/obj/item/storage/medkit/regular, +/obj/item/airlock_painter/decal, +/obj/structure/closet/crate, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/large, +/area/station/cargo/storage) +"rIC" = ( +/obj/machinery/airalarm/directional/west, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/lockers) +"rIQ" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"rIS" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_x = -7; + pixel_y = 3 + }, +/obj/item/clipboard{ + pixel_x = 7 + }, +/obj/item/folder/red{ + pixel_x = 5 + }, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/security/brig/entrance) +"rIU" = ( +/turf/open/openspace, +/area/station/medical/treatment_center) +"rIW" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/security/checkpoint/service) +"rJi" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/water_vapor, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/janitor) +"rJm" = ( +/obj/machinery/light/cold/directional/north, +/obj/machinery/power/shieldwallgen/xenobiologyaccess, +/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"rJs" = ( +/obj/effect/spawner/random/trash/botanical_waste, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/department/security/lower) +"rKh" = ( +/obj/structure/cable/multilayer/multiz, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/solars/starboard/aft) +"rKt" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/turf/open/floor/iron, +/area/station/engineering/atmos/hfr_room) +"rKx" = ( +/obj/effect/landmark/start/head_of_personnel, +/obj/item/storage/box/tail_pin{ + pixel_y = 16; + pixel_x = 4 + }, +/obj/machinery/airalarm/directional/east, +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/executive, +/area/station/command/heads_quarters/hop) +"rKE" = ( +/obj/effect/turf_decal/tile/neutral/full, +/obj/effect/spawner/random/contraband/prison, +/obj/structure/closet/crate, +/obj/item/food/breadslice/plain, +/obj/item/food/breadslice/plain, +/obj/item/food/breadslice/plain, +/obj/item/food/grown/potato, +/obj/item/food/grown/potato, +/obj/item/food/grown/onion, +/obj/item/food/grown/onion, +/obj/item/food/meat/rawcutlet/plain, +/obj/item/food/meat/rawcutlet/plain, +/obj/item/food/meat/rawcutlet/plain, +/obj/effect/turf_decal/bot, +/obj/structure/railing, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/prison) +"rKN" = ( +/obj/effect/turf_decal/tile/red/real_red/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/cafeteria, +/area/station/hallway/secondary/exit/escape_pod) +"rKP" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/bot, +/obj/machinery/camera/directional/west{ + c_tag = "Atmospherics - Lobby Storage"; + network = list("ss13","engine") + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos/office) +"rKS" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/machinery/computer/security, +/obj/effect/turf_decal/box, +/obj/item/toy/figure/secofficer{ + pixel_y = 12; + pixel_x = -32 + }, +/obj/machinery/airalarm/directional/north, +/obj/machinery/camera/directional/north{ + c_tag = "Security - Upper Checkpoint" + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/security/brig/entrance) +"rLh" = ( +/obj/structure/railing, +/obj/effect/turf_decal/siding/white, +/obj/machinery/airalarm/directional/west, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron/dark/smooth_half, +/area/station/ai_monitored/turret_protected/aisat_interior) +"rLl" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/space, +/area/station/solars/port/aft) +"rLo" = ( +/turf/open/openspace, +/area/station/engineering/main) +"rLr" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/six, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"rLD" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/door/airlock/public/glass{ + name = "Library Lounge" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/library/lounge) +"rLW" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/service/hydroponics) +"rMm" = ( +/obj/item/clothing/head/cone, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"rMs" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_x = -9 + }, +/obj/machinery/recharger, +/obj/machinery/recharger{ + pixel_x = 9 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/station/ai_monitored/security/armory) +"rMx" = ( +/obj/effect/turf_decal/tile/yellow/half, +/obj/effect/turf_decal/tile/blue/half, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/edge, +/area/station/engineering/main) +"rMA" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Mech Bay Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/robotics, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/science/robotics/mechbay) +"rMF" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"rMI" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/edge, +/area/station/hallway/primary/central/fore) +"rMJ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 4 + }, +/obj/machinery/flasher/directional/west{ + id = "holdingflash" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/security/holding_cell) +"rMP" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Engineering Storage Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/engineering/storage) +"rMQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"rMR" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/science/xenobiology/hallway) +"rMT" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/kitchen/diagonal, +/area/station/maintenance/abandon_diner) +"rNa" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central) +"rNb" = ( +/turf/open/floor/iron/white/corner, +/area/station/hallway/primary/central/fore) +"rNo" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/plasticflaps/opaque{ + name = "Medical Deliveries" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/treatment_center) +"rNx" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"rNB" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/button/door/directional/east{ + id = "custodialshutters"; + name = "Custodial Closet Shutters"; + req_access = list("janitor"); + pixel_y = 24 + }, +/obj/effect/landmark/start/janitor, +/turf/open/floor/iron/dark, +/area/station/service/janitor) +"rNI" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"rNK" = ( +/obj/structure/easel, +/obj/item/canvas/twentythree_twentythree{ + pixel_x = 3 + }, +/obj/effect/turf_decal/siding/wood/end{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/service/library) +"rNR" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/engineering/atmos) +"rNV" = ( +/obj/structure/table/reinforced, +/obj/item/pipe_dispenser, +/obj/item/pipe_dispenser, +/obj/item/storage/belt/utility, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"rOa" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/station/engineering/main) +"rOb" = ( +/obj/structure/rack, +/obj/item/clothing/shoes/magboots{ + pixel_x = -7; + pixel_y = 3 + }, +/obj/item/clothing/shoes/magboots{ + pixel_x = -7; + pixel_y = -2 + }, +/obj/item/clothing/shoes/magboots{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/clothing/shoes/magboots{ + pixel_x = 8; + pixel_y = -2 + }, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/command/storage/eva) +"rOi" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/obj/effect/landmark/start/hangover, +/obj/machinery/light/directional/west, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/exit/escape_pod) +"rOj" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/spawner/random/engineering/toolbox, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"rOv" = ( +/obj/effect/turf_decal/tile/red/real_red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"rOy" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/chair/stool/directional/east, +/obj/machinery/flasher/directional/south{ + id = "Isolation"; + pixel_y = -38 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/security/prison/visit) +"rOz" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Gateway Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/teleporter, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/command/gateway) +"rOC" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/camera/directional/north{ + c_tag = "Cargo - Quartermaster Office" + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/qm) +"rOJ" = ( +/obj/machinery/power/emitter, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/engineering/storage_shared) +"rOU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"rOW" = ( +/obj/machinery/modular_computer/preset/id{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/carpet/black, +/area/station/command/heads_quarters/ce) +"rPj" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/siding/wood/end{ + dir = 4 + }, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/entry) +"rPv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/power/port_gen/pacman, +/turf/open/floor/plating, +/area/station/maintenance/department/science/xenobiology) +"rPB" = ( +/obj/machinery/door/airlock/corporate{ + name = "Consultant's Quarters" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/any/command/captain, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/nt_rep) +"rPM" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/effect/spawner/random/maintenance/two, +/obj/effect/mapping_helpers/burnt_floor, +/obj/effect/decal/cleanable/cobweb, +/obj/item/experi_scanner, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"rPQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/large, +/area/station/security/brig/entrance) +"rPR" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/security/prison) +"rPT" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/primary/starboard) +"rPY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) +"rQj" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white/small, +/area/station/medical/medbay/lobby) +"rQk" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/holopad, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/engineering/atmos/office) +"rQm" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/disposal/incinerator) +"rQs" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/obj/effect/turf_decal/tile/blue, +/obj/effect/landmark/start/atmospheric_technician, +/turf/open/floor/iron, +/area/station/engineering/atmos/storage) +"rQv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/landmark/start/assistant, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/cargo/lobby) +"rQA" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/small, +/area/station/security/checkpoint/escape) +"rQI" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 6 + }, +/turf/open/space/basic, +/area/space) +"rQT" = ( +/obj/structure/ore_vein/silver, +/turf/open/misc/asteroid/moon/airless, +/area/station/asteroid) +"rRh" = ( +/obj/machinery/defibrillator_mount/directional/west, +/obj/effect/turf_decal/tile/blue/half{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/item/surgery_tray, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/surgery/fore) +"rRs" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rdoffice"; + name = "Privacy Shutters" + }, +/turf/open/floor/plating, +/area/station/command/heads_quarters/rd) +"rRu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"rRC" = ( +/obj/structure/stairs/east, +/turf/open/floor/plating, +/area/station/science/ordnance) +"rRM" = ( +/obj/structure/window/spawner/directional/west, +/obj/structure/chair/plastic{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 8 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/white/small, +/area/station/service/salon) +"rRR" = ( +/obj/structure/window/reinforced/tinted/fulltile, +/obj/structure/hedge/opaque, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/hos) +"rSb" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/violet/visible, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"rSn" = ( +/mob/living/simple_animal/bot/mulebot{ + home_destination = "QM #2"; + suffix = "#2" + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + location = "QM #2" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark, +/area/station/cargo/office) +"rSq" = ( +/obj/structure/fluff/paper/stack{ + dir = 1 + }, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/fluff/paper/corner, +/turf/open/floor/wood, +/area/station/maintenance/starboard/fore) +"rSA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"rSI" = ( +/turf/closed/wall, +/area/station/cargo/drone_bay) +"rSJ" = ( +/obj/effect/turf_decal/siding/white/corner, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/light/warm/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/commons/dorms) +"rSU" = ( +/turf/closed/wall, +/area/station/maintenance/starboard/greater) +"rTe" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/openspace, +/area/station/security/brig/upper) +"rTf" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"rTm" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/door/window/left/directional/south{ + name = "Science Deliveries"; + req_access = list("science") + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + location = "Science" + }, +/turf/open/floor/iron/large, +/area/station/science/research) +"rTp" = ( +/obj/item/kirbyplants/synthetic/plant27, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/white/small, +/area/station/medical/medbay/lobby) +"rTD" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "holodeck" + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Holodeck Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"rTH" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/security/brig/entrance) +"rUa" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"rUc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"rUd" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/openspace, +/area/station/science/xenobiology) +"rUf" = ( +/obj/structure/railing{ + dir = 10 + }, +/turf/open/openspace, +/area/station/engineering/atmos/hfr_room) +"rUi" = ( +/obj/effect/mapping_helpers/airlock/access/any/service/kitchen, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Kitchen Freezer Maintenance" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/service/kitchen/coldroom) +"rUk" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/station/hallway/secondary/command) +"rUo" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/service/library) +"rUw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/vending/wardrobe/viro_wardrobe, +/obj/machinery/button/door/directional/south{ + id = "viroview"; + name = "Viewport Control" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/virology) +"rUy" = ( +/obj/effect/turf_decal/tile/brown/opposingcorners, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/rack, +/obj/item/stock_parts/scanning_module{ + pixel_x = -5; + pixel_y = 7 + }, +/obj/item/stock_parts/scanning_module{ + pixel_x = 5; + pixel_y = 7 + }, +/obj/item/stock_parts/scanning_module{ + pixel_x = -5 + }, +/obj/item/stock_parts/scanning_module{ + pixel_x = 5 + }, +/obj/item/stock_parts/micro_laser{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/stock_parts/micro_laser{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/stock_parts/micro_laser{ + pixel_x = 2 + }, +/obj/item/stock_parts/micro_laser{ + pixel_x = 6; + pixel_y = -2 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/drone_bay) +"rUz" = ( +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/evidence) +"rUA" = ( +/obj/machinery/light/cold/no_nightlight/directional/east, +/turf/open/floor/iron/dark/side, +/area/station/medical/treatment_center) +"rUB" = ( +/obj/effect/turf_decal/trimline/dark_red/corner, +/obj/effect/turf_decal/tile/dark_red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/security/prison) +"rUE" = ( +/obj/machinery/power/tracker, +/obj/structure/cable, +/turf/open/floor/iron/solarpanel/airless, +/area/station/solars/port/fore) +"rUF" = ( +/obj/effect/turf_decal/siding/white, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/item/storage/box/rxglasses{ + pixel_y = 10; + pixel_x = -6 + }, +/obj/item/storage/box/gloves{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/beakers, +/obj/structure/table/glass, +/turf/open/floor/iron/dark, +/area/station/medical/treatment_center) +"rUL" = ( +/obj/machinery/door/airlock/hatch{ + name = "Maintenance Hatch" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"rUY" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/dark_red, +/obj/item/mmi{ + pixel_y = 6 + }, +/obj/item/mmi{ + pixel_y = 3 + }, +/obj/item/mmi, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/machinery/light/cold/directional/east, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/iron/dark, +/area/station/science/robotics/augments) +"rVp" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/effect/spawner/random/bureaucracy/pen, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/dark, +/area/station/common/laser_tag) +"rVv" = ( +/obj/effect/turf_decal/tile/green/opposingcorners, +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/checker{ + dir = 1 + }, +/area/station/hallway/secondary/recreation) +"rVx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/meter, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"rVz" = ( +/obj/structure/sign/warning/secure_area/directional/west, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"rVD" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/door/window/left/directional/east{ + name = "Medical Deliveries"; + req_access = list("medical") + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + location = "Medical" + }, +/obj/structure/window/spawner/directional/south, +/turf/open/floor/iron/large, +/area/station/medical/treatment_center) +"rVR" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/obj/machinery/door/airlock/external{ + name = "Engineering External Access" + }, +/turf/open/floor/plating, +/area/station/engineering/supermatter/room) +"rVT" = ( +/obj/structure/sign/warning/pods/directional/east, +/obj/effect/turf_decal/tile/red/real_red{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/exit/escape_pod) +"rVV" = ( +/obj/machinery/camera/directional/east{ + c_tag = "Atmospherics - HFR Core North"; + network = list("ss13","engine") + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/hfr_room) +"rVW" = ( +/obj/effect/turf_decal/tile/green/opposingcorners, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/hallway/primary/central/fore) +"rVX" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/vending/engivend, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) +"rWa" = ( +/obj/structure/table/wood, +/turf/open/floor/carpet/green, +/area/station/service/library) +"rWg" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/side, +/area/station/hallway/primary/starboard) +"rWn" = ( +/obj/structure/fans/tiny, +/obj/effect/turf_decal/siding/wideplating_new{ + dir = 8 + }, +/turf/open/floor/iron/white/small, +/area/station/service/salon) +"rWp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"rWy" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 8 + }, +/obj/structure/table, +/obj/item/clothing/suit/hazardvest{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/clothing/suit/hazardvest{ + pixel_x = 4 + }, +/obj/item/stack/sheet/iron{ + amount = 30; + pixel_y = 10 + }, +/obj/item/stack/sheet/glass{ + amount = 30; + pixel_y = 15; + pixel_x = -2 + }, +/obj/item/stack/rods{ + amount = 25 + }, +/turf/open/floor/iron/dark, +/area/station/commons/storage/primary) +"rWD" = ( +/obj/effect/spawner/random/engineering/canister, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"rWP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/machinery/station_map/engineering/directional/east, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) +"rWS" = ( +/obj/machinery/atmospherics/pipe/multiz/dark/visible, +/obj/machinery/door/window/brigdoor/left/directional/south{ + req_access = list("xenobiology"); + name = "Holding Chamber" + }, +/obj/structure/lattice, +/turf/open/openspace, +/area/station/science/xenobiology) +"rXe" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/command/heads_quarters/hos) +"rXg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/bot, +/obj/machinery/dish_drive/bullet, +/turf/open/floor/engine, +/area/station/ai_monitored/security/armory) +"rXs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Janitorial Closet" + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/medbay/central) +"rXt" = ( +/obj/effect/spawner/random/engineering/vending_restock, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"rXD" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder{ + pixel_x = -7; + pixel_y = 8 + }, +/obj/item/reagent_containers/cup/beaker{ + pixel_x = 8; + pixel_y = 5 + }, +/obj/item/reagent_containers/cup/beaker{ + pixel_x = 8; + pixel_y = 5 + }, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"rXP" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 5 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"rXS" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/wood/large, +/area/station/service/barber) +"rYg" = ( +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/maintenance/port/aft) +"rYx" = ( +/obj/machinery/plumbing/ooze_sucker{ + mapping_id = "4"; + dir = 1 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"rYy" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/dark/end{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"rYB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/departure_lounge) +"rYI" = ( +/obj/machinery/door/airlock/mining/glass{ + name = "Drone Bay" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/supply/general, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/cargo/drone_bay) +"rYN" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible, +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer4, +/turf/open/openspace, +/area/station/engineering/atmos/hfr_room) +"rYQ" = ( +/obj/effect/landmark/carpspawn, +/turf/open/space/openspace, +/area/space) +"rYY" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/obj/machinery/light/cold/directional/north, +/obj/item/stack/rods/ten, +/turf/open/misc/asteroid/snow/coldroom, +/area/station/service/kitchen/coldroom) +"rZa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/common/laser_tag) +"rZh" = ( +/obj/structure/window/spawner/directional/north, +/obj/machinery/oven, +/turf/open/floor/wood/tile, +/area/station/hallway/secondary/exit/departure_lounge) +"rZs" = ( +/obj/item/kirbyplants/organic/plant2, +/turf/open/floor/carpet, +/area/station/commons/vacant_room/office) +"rZu" = ( +/obj/effect/spawner/random/trash/garbage, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"rZz" = ( +/obj/effect/turf_decal/siding/white{ + dir = 10 + }, +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/obj/machinery/digital_clock/directional/west, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/diagonal, +/area/station/commons/toilet/restrooms) +"sah" = ( +/turf/open/floor/plating, +/area/station/maintenance/department/electrical) +"sap" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/purple, +/area/station/command/heads_quarters/rd) +"sau" = ( +/turf/closed/wall/r_wall, +/area/station/ai_monitored/security/armory) +"sax" = ( +/obj/structure/lattice/catwalk, +/obj/effect/spawner/random/structure/girder, +/turf/open/openspace, +/area/station/maintenance/starboard/greater) +"saD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/captain, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain) +"saG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron/white/side, +/area/station/science/research) +"saN" = ( +/obj/structure/transit_tube/station/dispenser/reverse/flipped{ + dir = 4 + }, +/obj/machinery/light/warm/directional/east, +/turf/open/floor/glass/reinforced, +/area/station/science/xenobiology) +"saR" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/white, +/area/station/science/ordnance/testlab) +"sbm" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"sbr" = ( +/obj/effect/turf_decal/lunar_sand/plating, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/camera/directional/south{ + c_tag = "Xenobiology Lab - Cytology Desk"; + network = list("ss13","xeno","rd") + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/science/cytology) +"sbt" = ( +/obj/structure/table, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/item/storage/fancy/donut_box{ + pixel_y = 6; + pixel_x = 2 + }, +/turf/open/floor/wood, +/area/station/command/meeting_room/council) +"sbA" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/white/side, +/area/station/science/genetics) +"sbC" = ( +/obj/machinery/door/airlock/engineering/glass/critical{ + heat_proof = 1; + name = "Supermatter Chamber" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "supermatter" + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"sbN" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/glass/reinforced, +/area/station/science/xenobiology) +"sbR" = ( +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/service) +"sbT" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/suit_storage_unit/mining, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/maintenance/port/greater) +"sce" = ( +/obj/effect/turf_decal/box, +/obj/machinery/computer/atmos_control/nitrogen_tank, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos/upper) +"sch" = ( +/obj/structure/table, +/obj/structure/lattice/catwalk, +/obj/item/stack/cable_coil, +/obj/item/flashlight, +/obj/machinery/airalarm/directional/east, +/obj/item/storage/box/lights/mixed{ + pixel_y = 12 + }, +/obj/item/screwdriver{ + pixel_y = -8 + }, +/obj/item/crowbar, +/obj/machinery/light/warm/directional/east, +/turf/open/openspace, +/area/station/commons/storage/tools) +"sco" = ( +/obj/structure/drain, +/obj/effect/turf_decal/trimline/blue/end{ + dir = 1 + }, +/obj/effect/turf_decal/siding/white{ + dir = 9 + }, +/obj/machinery/shower/directional/north, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/iron/white/small, +/area/station/medical/treatment_center) +"scq" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/ai) +"scu" = ( +/obj/machinery/door/airlock/hatch{ + name = "Maintenance Hatch" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"scx" = ( +/obj/machinery/vending/medical, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/light/cold/no_nightlight/directional/west, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"scy" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2, +/obj/machinery/power/terminal{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/department/science/xenobiology) +"scB" = ( +/obj/machinery/meter/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer4{ + dir = 9 + }, +/turf/open/floor/engine, +/area/station/science/ordnance) +"scC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"sda" = ( +/obj/structure/showcase/machinery/signal_decrypter, +/obj/machinery/atmospherics/components/unary/passive_vent{ + name = "server vent"; + dir = 8 + }, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/station/science/server) +"sdl" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/effect/spawner/random/maintenance/three, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"sdu" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/security/brig/entrance) +"sdz" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"sdF" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/command) +"sdN" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external/glass{ + name = "External Access"; + space_dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/effect/mapping_helpers/airlock/unres, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"sdV" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"seg" = ( +/obj/structure/stairs/south, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/security/interrogation) +"sem" = ( +/obj/machinery/holopad, +/obj/effect/landmark/start/warden, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/turf/open/floor/glass/reinforced, +/area/station/security/warden) +"sex" = ( +/obj/structure/sign/directions/dorms/directional/west{ + dir = 2; + pixel_y = -4 + }, +/obj/structure/sign/directions/arrival/directional/west{ + pixel_y = 4 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"sey" = ( +/obj/structure/railing, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/openspace, +/area/station/security/warden) +"seN" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/random/maintenance/four, +/obj/effect/spawner/random/medical/minor_healing, +/obj/item/storage/box/lights/mixed, +/obj/effect/spawner/random/trash/janitor_supplies, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/department/security/lower) +"seO" = ( +/obj/effect/turf_decal/bot_white, +/obj/machinery/mecha_part_fabricator{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_red/half{ + dir = 8 + }, +/obj/item/toy/figure/roboticist{ + pixel_y = 11 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/science/robotics/lab) +"seQ" = ( +/obj/structure/marker_beacon/burgundy, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/gateway) +"seX" = ( +/obj/machinery/atmospherics/components/unary/passive_vent{ + dir = 1 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/openspace, +/area/space/nearstation) +"sfe" = ( +/obj/machinery/modular_computer/preset/engineering{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"sfg" = ( +/obj/machinery/camera/directional/east{ + c_tag = "Central Primary Hallway - Blueshield Office" + }, +/obj/structure/sign/directions/evac/directional/east, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"sfh" = ( +/obj/structure/cable, +/obj/effect/landmark/atmospheric_sanity/ignore_area, +/turf/open/floor/iron, +/area/station/science/research/abandoned) +"sfj" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/item/kirbyplants/monkey, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/science/genetics) +"sfA" = ( +/obj/structure/dresser, +/obj/machinery/light/small/directional/west, +/turf/open/floor/carpet/blue, +/area/station/command/heads_quarters/cmo) +"sfD" = ( +/obj/effect/turf_decal/lunar_sand, +/obj/effect/turf_decal/lunar_sand/plating, +/obj/machinery/camera/directional/south{ + c_tag = "MiniSat External North-West"; + network = list("minisat") + }, +/turf/open/floor/plating/airless, +/area/station/asteroid) +"sfE" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "Turbine to Port"; + dir = 1 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"sfM" = ( +/obj/effect/turf_decal/lunar_sand/plating, +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/science/cytology) +"sfQ" = ( +/obj/item/wrench, +/obj/machinery/door/window/left/directional/south{ + name = "Gas Ports"; + req_access = list("security") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/obj/machinery/meter, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/execution/education) +"sfS" = ( +/obj/structure/chair/office/light, +/turf/open/floor/iron, +/area/station/science/robotics/mechbay) +"sgj" = ( +/turf/open/floor/iron, +/area/station/engineering/atmos) +"sgl" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"sgu" = ( +/obj/structure/grandfatherclock, +/turf/open/floor/wood, +/area/station/service/chapel) +"sgw" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"sgA" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/dark_blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) +"sgF" = ( +/obj/machinery/plumbing/receiver, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/medical/chemistry) +"sgI" = ( +/obj/structure/chair/office/light, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"sgV" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"sha" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/purple, +/obj/effect/landmark/start/scientist, +/turf/open/floor/iron/white/side, +/area/station/science/research) +"shd" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/iron/small, +/area/station/maintenance/department/electrical) +"shf" = ( +/obj/structure/stairs/south, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/floor/iron/large, +/area/station/science/xenobiology) +"shu" = ( +/mob/living/basic/chicken/brown{ + forced_gender = "female" + }, +/turf/open/floor/grass, +/area/station/service/hydroponics/upper) +"shE" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/cable, +/turf/open/floor/wood, +/area/station/commons/dorms/room2) +"shG" = ( +/obj/effect/turf_decal/arrows/white, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/engine, +/area/station/engineering/atmos/hfr_room) +"shJ" = ( +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/maintenance/disposal) +"shL" = ( +/obj/effect/spawner/random/trash/moisture_trap, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"shM" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/wood, +/area/station/service/abandoned_gambling_den) +"shO" = ( +/obj/effect/turf_decal/siding/white{ + dir = 6 + }, +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/diagonal, +/area/station/commons/toilet/restrooms) +"sic" = ( +/turf/open/floor/engine, +/area/station/engineering/atmos) +"sid" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"sin" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/commons/vacant_room/commissary) +"sio" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/siding/white{ + dir = 5 + }, +/obj/effect/turf_decal/box, +/obj/machinery/firealarm/directional/west, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/light/cold/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/toilet/auxiliary) +"sip" = ( +/turf/open/openspace, +/area/station/maintenance/department/security/upper) +"siu" = ( +/obj/machinery/light/cold/directional/north, +/obj/item/storage/medkit/toxin{ + pixel_x = -8 + }, +/obj/item/storage/medkit/fire{ + pixel_x = 8 + }, +/obj/item/storage/medkit/toxin{ + pixel_x = -8; + pixel_y = 7 + }, +/obj/item/storage/medkit/fire{ + pixel_x = 8; + pixel_y = 7 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/storage) +"siw" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "engi"; + name = "Engineering Blast Door" + }, +/turf/open/floor/plating, +/area/station/security/checkpoint/engineering) +"six" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/obj/machinery/button/door/directional/south{ + id = "interrogation"; + name = "Privacy Shutters Control"; + req_access = list("security") + }, +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 8 + }, +/area/station/security/interrogation) +"siz" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/right, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"siM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"siP" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 9 + }, +/obj/machinery/airalarm/directional/east, +/obj/machinery/camera/directional/east{ + c_tag = "Atmospherics - Lower Deck Starboard"; + network = list("ss13","engine") + }, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible/layer4, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"sja" = ( +/obj/effect/spawner/random/engineering/canister, +/turf/open/floor/plating, +/area/station/maintenance/starboard/lesser) +"sjc" = ( +/obj/item/reagent_containers/pill/maintenance, +/obj/effect/spawner/random/maintenance/three, +/obj/effect/spawner/random/maintenance/two, +/obj/structure/rack/shelf, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"sjd" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Robotics - Assembly Lab"; + network = list("ss13","rd") + }, +/turf/open/openspace, +/area/station/science/robotics/lab) +"sjB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/stack/sheet/rglass{ + amount = 50 + }, +/obj/item/stack/sheet/rglass{ + amount = 50 + }, +/obj/item/stack/rods/fifty, +/obj/item/stack/rods/fifty, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/teleporter) +"sjX" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plastic, +/area/station/common/carpshop) +"sjY" = ( +/obj/machinery/computer/warrant{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/brig/entrance) +"sjZ" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "bridge-left" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/command{ + name = "Bridge" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/bridge) +"ska" = ( +/obj/machinery/power/tracker, +/obj/structure/cable, +/turf/open/floor/iron/solarpanel/airless, +/area/station/solars/port/aft) +"ske" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/oil/slippery, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"skj" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/chair{ + dir = 1 + }, +/obj/item/radio/intercom/directional/south, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating, +/area/station/commons/storage/mining) +"skl" = ( +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/structure/stairs/south, +/turf/open/floor/iron/dark, +/area/station/medical/medbay/central) +"skp" = ( +/turf/closed/wall, +/area/station/medical/surgery/fore) +"skr" = ( +/obj/item/stack/sheet/cardboard, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"sku" = ( +/obj/effect/turf_decal/stripes/blue/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/blue/line{ + dir = 4 + }, +/turf/open/floor/engine/hull, +/area/space/nearstation) +"skI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"skJ" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/service/janitor) +"skS" = ( +/obj/effect/turf_decal/tile/green/opposingcorners, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/commons/dorms) +"skU" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/cable/layer1, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/structure/cable/layer3, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/ai) +"skX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/robotics/lab) +"skZ" = ( +/obj/machinery/light/directional/east, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"sld" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/dark_blue, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) +"slg" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/machinery/door/airlock/security{ + name = "Interrogation" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/interrogation) +"sli" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/ordnance_burn_chamber_input{ + dir = 4 + }, +/turf/open/floor/engine/vacuum, +/area/station/science/ordnance/burnchamber) +"sly" = ( +/obj/structure/railing, +/turf/open/space/basic, +/area/space/nearstation) +"slA" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark, +/area/station/science/circuits) +"slY" = ( +/obj/structure/lattice/catwalk, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/openspace, +/area/station/cargo/office) +"smt" = ( +/obj/effect/turf_decal/lunar_sand/plating, +/turf/open/floor/glass/reinforced, +/area/station/science/cytology) +"smu" = ( +/turf/open/floor/iron/white, +/area/station/ai_monitored/turret_protected/ai_upload) +"smx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/service/bar) +"smC" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch" + }, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"smK" = ( +/turf/closed/wall/r_wall, +/area/station/ai_monitored/turret_protected/ai) +"smM" = ( +/obj/machinery/computer/security/wooden_tv{ + pixel_y = 5 + }, +/obj/structure/table/wood, +/obj/item/toy/figure/detective{ + pixel_y = 19; + pixel_x = -6 + }, +/turf/open/floor/carpet, +/area/station/security/detectives_office) +"smP" = ( +/obj/structure/table, +/obj/item/storage/box/evidence, +/obj/item/evidencebag, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/evidence) +"sng" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/engine, +/area/station/science/ordnance/testlab) +"snu" = ( +/turf/closed/wall/r_wall, +/area/station/engineering/atmos/upper) +"snx" = ( +/obj/machinery/modular_computer/preset/id{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/tile/red/half/contrasted, +/obj/structure/window/spawner/directional/east, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/customs) +"snD" = ( +/obj/structure/table/wood, +/obj/structure/sign/painting/library{ + pixel_x = -32 + }, +/obj/item/flashlight/lamp/green{ + pixel_y = 15; + pixel_x = 6 + }, +/obj/item/pai_card{ + pixel_y = 3; + pixel_x = -6 + }, +/obj/machinery/cassette/adv_cassette_deck{ + pixel_y = 5 + }, +/turf/open/floor/wood, +/area/station/service/library/lounge) +"snL" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/railing{ + dir = 5 + }, +/obj/machinery/vending/wardrobe/engi_wardrobe, +/turf/open/floor/iron, +/area/station/engineering/storage) +"snU" = ( +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/machinery/requests_console/auto_name/directional/north, +/obj/machinery/light/cold/directional/north, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/computer/diseasesplicer, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"soe" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/service/hydroponics/garden) +"soi" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"soA" = ( +/obj/effect/turf_decal/siding/white{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/wood/parquet, +/area/station/medical/patients_rooms) +"soH" = ( +/turf/closed/wall/r_wall, +/area/station/engineering/atmos) +"soP" = ( +/obj/structure/table/wood, +/obj/item/toy/cards/deck, +/obj/machinery/light/warm/directional/south, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/large, +/area/station/security/prison) +"soS" = ( +/turf/closed/wall/r_wall, +/area/station/security/interrogation) +"soX" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/marker_beacon/teal, +/turf/open/floor/glass/reinforced, +/area/station/ai_monitored/turret_protected/ai) +"spb" = ( +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/airlock/engineering{ + name = "Starboard Bow Solar Access" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/solars/starboard/fore) +"spn" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 6 + }, +/obj/structure/lattice, +/turf/open/space/openspace, +/area/space/nearstation) +"spF" = ( +/obj/structure/table, +/obj/item/toy/foamblade{ + pixel_y = 12 + }, +/obj/item/storage/crayons, +/obj/item/chisel{ + pixel_y = 7 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) +"spT" = ( +/obj/machinery/door/poddoor{ + id = "securestorage"; + name = "Secure Storage" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/engineering/storage_shared) +"sqe" = ( +/obj/structure/railing, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) +"sqf" = ( +/obj/machinery/door/airlock{ + id_tag = "Toilet1"; + name = "Toilet Unit 1" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/toilet/restrooms) +"sqv" = ( +/turf/open/floor/plating, +/area/station/engineering/main) +"sqw" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/holopad/secure, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/tile, +/area/station/medical/psychology) +"sre" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/box, +/obj/structure/sign/poster/official/foam_force_ad/directional/west, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/common/laser_tag) +"srf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/machinery/cell_charger{ + pixel_y = 3 + }, +/obj/item/stock_parts/cell/high{ + pixel_y = 3 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/research) +"sri" = ( +/obj/structure/chair/comfy{ + dir = 8; + color = "#DE3A3A" + }, +/turf/open/floor/wood/tile, +/area/station/commons/lounge) +"srm" = ( +/obj/machinery/airalarm/directional/west, +/obj/machinery/light/cold/directional/west, +/obj/effect/turf_decal/lunar_sand, +/obj/effect/turf_decal/lunar_sand/plating, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/glass/reinforced, +/area/station/science/cytology) +"sro" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/ai_monitored/command/storage/eva) +"srp" = ( +/obj/structure/stairs/west, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/lockers) +"srE" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/folder/blue{ + pixel_y = 6; + pixel_x = -4 + }, +/obj/item/folder/yellow, +/turf/open/floor/iron, +/area/station/engineering/atmos/office) +"srF" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light_switch/directional/west, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/commons/dorms/room3) +"srH" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos/office) +"srJ" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/item/kirbyplants/synthetic/plant29, +/turf/open/floor/iron/white, +/area/station/science/research) +"srQ" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/execution/education) +"srV" = ( +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/hfr_room) +"ssi" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/bot, +/obj/item/storage/toolbox/drone{ + pixel_y = 9; + pixel_x = -1 + }, +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/ai_monitored/security/armory) +"ssv" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/machinery/coffeemaker/impressa{ + pixel_y = 5; + pixel_x = 2 + }, +/obj/structure/table/wood, +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/wood/tile, +/area/station/service/lawoffice) +"ssy" = ( +/obj/machinery/recharge_station, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos/office) +"stc" = ( +/obj/effect/turf_decal/tile/dark_red/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/service/chapel/office) +"stj" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced/plasma, +/turf/open/floor/plating, +/area/station/engineering/gravity_generator) +"stk" = ( +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/iron/dark, +/area/station/medical/treatment_center) +"stI" = ( +/obj/structure/flora/rock/pile/style_random, +/turf/open/misc/asteroid/moon/airless, +/area/space) +"stO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/engineering/atmos/office) +"stQ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/cerulean, +/turf/open/floor/engine/hull/reinforced, +/area/station/solars/aisat) +"sub" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/medical/pharmacy, +/obj/machinery/door/airlock/maintenance/external{ + name = "Chemistry Access" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/pharmacy) +"suk" = ( +/obj/effect/spawner/random/vending/snackvend, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/recreation) +"suu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"sux" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/large, +/area/station/hallway/secondary/recreation) +"suy" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/airalarm/directional/west, +/obj/machinery/light/warm/directional/west, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/blueshield) +"suB" = ( +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"suG" = ( +/obj/effect/spawner/random/trash/hobo_squat, +/obj/structure/cable, +/obj/effect/spawner/random/decoration/generic, +/turf/open/floor/plating, +/area/station/maintenance/starboard/lesser) +"suU" = ( +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Cargo Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/supply/general, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/maintenance/department/cargo) +"suV" = ( +/obj/structure/closet/crate/wooden/toy, +/obj/item/mod/module/bikehorn, +/obj/item/staff/broom, +/obj/item/toy/dummy, +/obj/item/clothing/glasses/monocle, +/obj/item/clothing/mask/fakemoustache, +/obj/item/clothing/mask/cigarette/pipe, +/obj/item/bikehorn, +/obj/item/radio/intercom/directional/south, +/obj/item/cardboard_cutout/adaptive, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron/white, +/area/station/service/theater) +"suW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 5 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/maintenance/disposal/incinerator) +"svc" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"svk" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side, +/area/station/command/heads_quarters/ce) +"svn" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron, +/area/station/engineering/storage) +"svp" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"svJ" = ( +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"svL" = ( +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"svQ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/table/wood/poker, +/obj/item/storage/dice{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/effect/spawner/random/entertainment/deck, +/obj/machinery/light/warm/directional/east, +/turf/open/floor/wood/tile, +/area/station/commons/lounge) +"svS" = ( +/obj/structure/cable, +/obj/machinery/power/smes/full, +/turf/open/floor/plating, +/area/station/construction/mining/aux_base) +"swa" = ( +/obj/effect/turf_decal/tile/green/opposingcorners, +/obj/machinery/holopad/secure, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/virology) +"swb" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/station/solars/starboard/fore) +"swl" = ( +/obj/effect/landmark/start/cargo_technician, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/office) +"sws" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/service/janitor) +"swt" = ( +/obj/effect/turf_decal/stripes/red/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark_red{ + dir = 1 + }, +/obj/structure/weightmachine, +/obj/effect/turf_decal/bot_red, +/obj/effect/turf_decal/tile/dark/full, +/obj/machinery/light/warm/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/prison) +"sww" = ( +/obj/machinery/button/door/directional/south{ + id = "Toilet1"; + name = "Lock Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/white/small, +/area/station/commons/toilet/restrooms) +"swy" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/trunk/multiz/down{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/openspace, +/area/station/maintenance/port/aft) +"swz" = ( +/obj/effect/turf_decal/tile/dark/diagonal_edge, +/obj/effect/landmark/blobstart, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/execution/education) +"swA" = ( +/obj/effect/turf_decal/tile/dark_red{ + dir = 1 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 1 + }, +/area/station/common/laser_tag) +"swS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Emitter Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/obj/structure/sign/warning/electric_shock/directional/east, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/main) +"sxh" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"sxm" = ( +/obj/item/melee/moonlight_greatsword, +/obj/structure/bonfire, +/turf/open/floor/plating, +/area/station/hallway/primary/central/fore) +"sxn" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced/tinted, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "AI Chamber Entrance Shutters"; + name = "AI Chamber Entrance Shutters"; + dir = 4 + }, +/obj/structure/cable/layer1, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/structure/cable/layer3, +/turf/open/floor/plating, +/area/station/ai_monitored/turret_protected/ai) +"sxo" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall5"; + location = "hall4" + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"sxz" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/chair/sofa/right{ + dir = 1; + color = "#DE3A3A" + }, +/obj/machinery/digital_clock/directional/south, +/turf/open/floor/wood/tile, +/area/station/service/bar) +"sxY" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/bed/pod, +/turf/open/floor/iron/cafeteria{ + dir = 8 + }, +/area/station/service/salon) +"syb" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/commons/dorms) +"syd" = ( +/obj/structure/stairs/south, +/turf/open/floor/plating, +/area/station/science/genetics) +"sye" = ( +/obj/effect/spawner/random/trash/grime, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"sys" = ( +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/airlock/security/glass{ + name = "Prison Wing" + }, +/obj/machinery/door/poddoor/shutters/window/preopen{ + dir = 4; + id = "brigprison"; + name = "Prison Gate Shutters" + }, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/prison) +"syw" = ( +/obj/machinery/pdapainter/security, +/obj/item/toy/figure/hos{ + pixel_y = 9; + pixel_x = 8 + }, +/obj/machinery/button/door/directional/west{ + id = "hosprivacy"; + name = "Privacy Shutters Control" + }, +/obj/machinery/camera/directional/west{ + c_tag = "Security - HoS Office" + }, +/turf/open/floor/carpet, +/area/station/command/heads_quarters/hos) +"syA" = ( +/obj/machinery/light/warm/directional/west, +/turf/open/floor/wood/large, +/area/station/service/library) +"syF" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/service/hydroponics) +"syM" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet/blue, +/area/station/command/heads_quarters/cmo) +"syS" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 10 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"syT" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "surgeryleft"; + name = "Surgery Shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/medical/surgery/fore) +"syU" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/machinery/light/warm/directional/east, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"syV" = ( +/obj/structure/dresser, +/obj/item/toy/figure/clown{ + pixel_y = 13; + pixel_x = -4 + }, +/obj/item/toy/figure/mime{ + pixel_y = 14; + pixel_x = 5 + }, +/turf/open/floor/wood/tile, +/area/station/service/theater) +"syX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "Cell1Privacy"; + name = "curtain" + }, +/turf/open/floor/plating, +/area/station/security/prison) +"szi" = ( +/obj/machinery/firealarm/directional/south, +/obj/machinery/camera/directional/south{ + c_tag = "Courtroom"; + dir = 5 + }, +/turf/open/floor/wood, +/area/station/security/courtroom) +"szo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"szy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/dark/visible{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"szF" = ( +/obj/structure/railing, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/maintenance/port/fore) +"szL" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/maintenance/aft/greater) +"szV" = ( +/obj/machinery/elevator_control_panel/directional/north{ + linked_elevator_id = "departures_lift"; + preset_destination_names = list("2"="Lower Deck","3"="Upper Deck"); + pixel_x = -16 + }, +/obj/structure/industrial_lift/public, +/turf/open/floor/plating/elevatorshaft, +/area/station/hallway/primary/starboard) +"szZ" = ( +/obj/machinery/camera/directional/south{ + c_tag = "Security - Interrogation"; + network = list("ss13","interrogation") + }, +/obj/effect/turf_decal/tile/dark_blue/half, +/obj/machinery/digital_clock/directional/south, +/obj/machinery/light/small/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_half, +/area/station/security/interrogation) +"sAa" = ( +/obj/effect/turf_decal/lunar_sand/plating, +/obj/machinery/smartfridge/petri/preloaded, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/science/cytology) +"sAb" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"sAc" = ( +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/command/gateway) +"sAf" = ( +/obj/structure/table/glass, +/obj/machinery/firealarm/directional/east, +/obj/machinery/light/cold/no_nightlight/directional/east, +/obj/item/surgery_tray, +/obj/item/reagent_containers/syringe{ + pixel_x = -7 + }, +/obj/item/stack/medical/bone_gel{ + pixel_x = 10 + }, +/obj/item/reagent_containers/medigel/sterilizine, +/turf/open/floor/iron/dark/small, +/area/station/medical/surgery/theatre) +"sAh" = ( +/obj/item/sign, +/obj/item/screwdriver, +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/openspace, +/area/station/maintenance/starboard/fore) +"sAq" = ( +/obj/item/kirbyplants/synthetic/plant28, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 4 + }, +/area/station/security/brig) +"sAt" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"sAL" = ( +/obj/structure/sign/poster/random/directional/north, +/obj/structure/disposalpipe/broken, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"sAM" = ( +/obj/item/paper_bin/carbon{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/computer_disk/quartermaster, +/obj/item/computer_disk/quartermaster, +/obj/structure/table/wood, +/obj/machinery/status_display/supply{ + pixel_y = 32 + }, +/obj/machinery/light/warm/directional/north, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/command/heads_quarters/qm) +"sAS" = ( +/obj/effect/spawner/random/engineering/tank, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"sAZ" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/machinery/seed_extractor, +/obj/machinery/light/warm/directional/north, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"sBm" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/brig/entrance) +"sBp" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) +"sBy" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood/tile, +/area/station/commons/lounge) +"sBC" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"sBE" = ( +/obj/structure/hedge, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/bridge) +"sBV" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/science/xenobiology) +"sBY" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/security/checkpoint/supply) +"sBZ" = ( +/turf/open/floor/glass/reinforced, +/area/station/science/cytology) +"sCc" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/spawner/random/structure/closet_maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"sCh" = ( +/turf/open/floor/engine, +/area/station/security/range) +"sCB" = ( +/obj/machinery/shower/directional/east, +/obj/effect/turf_decal/siding/white{ + dir = 9 + }, +/turf/open/floor/iron/white/small, +/area/station/commons/toilet/restrooms) +"sCI" = ( +/obj/effect/turf_decal/box/corners, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible/layer4, +/turf/open/floor/engine, +/area/station/engineering/atmos) +"sCM" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/machinery/duct, +/turf/open/misc/asteroid/moon, +/area/station/science/xenobiology) +"sCR" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/bananalamp{ + pixel_y = 5 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/iron/white, +/area/station/service/theater) +"sCU" = ( +/obj/machinery/door/poddoor/incinerator_atmos_main, +/turf/open/floor/engine, +/area/station/maintenance/disposal/incinerator) +"sDc" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"sDl" = ( +/obj/machinery/digital_clock/directional/south, +/obj/machinery/light/warm/directional/south, +/obj/effect/turf_decal/tile/brown/half/contrasted, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/lobby) +"sDy" = ( +/obj/machinery/door/poddoor{ + id = "QMLoaddoor2"; + name = "Supply Dock Offloading Door" + }, +/obj/machinery/conveyor{ + id = "QMLoad2" + }, +/turf/open/floor/plating, +/area/station/cargo/storage) +"sDJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"sDL" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/holopad, +/turf/open/floor/wood, +/area/station/security/prison) +"sDM" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/engineering/atmos/hfr_room) +"sDQ" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance, +/obj/effect/spawner/random/bureaucracy/paper, +/obj/item/storage/box, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"sDW" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"sEa" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/item/clothing/head/costume/festive, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"sEs" = ( +/obj/structure/transit_tube, +/turf/open/floor/glass/reinforced, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"sEE" = ( +/obj/machinery/telecomms/hub/preset, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/station/tcommsat/server) +"sES" = ( +/obj/structure/railing, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"sEV" = ( +/obj/effect/turf_decal/trimline/dark_red/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/security/prison) +"sFg" = ( +/obj/machinery/recharger{ + pixel_x = -7; + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = 5 + }, +/obj/structure/table/reinforced, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/security/brig/entrance) +"sFE" = ( +/obj/structure/closet/secure_closet/quartermaster, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/item/gun_maintenance_supplies, +/obj/item/clothing/glasses/material/mining/gar, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/command/heads_quarters/qm) +"sFJ" = ( +/turf/closed/wall, +/area/station/security/courtroom) +"sFT" = ( +/obj/structure/reagent_dispensers/wall/peppertank/directional/south, +/obj/machinery/camera/directional/south{ + c_tag = "Security - Brig" + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/computer/department_orders/security{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/security/office) +"sFW" = ( +/turf/closed/wall/r_wall, +/area/station/security/warden) +"sGa" = ( +/obj/machinery/computer/crew{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron/white, +/area/station/maintenance/abandon_surgery) +"sGb" = ( +/turf/open/space/openspace, +/area/space/nearstation) +"sGi" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/pharmacy) +"sGz" = ( +/obj/docking_port/stationary/escape_pod{ + dir = 2 + }, +/turf/open/space/basic, +/area/space/nearstation) +"sGB" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/hallway/primary/starboard) +"sGH" = ( +/obj/structure/railing, +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/turf/open/openspace, +/area/station/engineering/main) +"sGJ" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 5 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/iron/white/side{ + dir = 1 + }, +/area/station/science/ordnance) +"sGK" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "brigdeskz1"; + name = "Security Desk Shutters" + }, +/obj/item/pen{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/machinery/door/window/left/directional/south{ + name = "Brig Reception" + }, +/obj/machinery/door/window/brigdoor/right/directional/north{ + name = "Brig Reception"; + req_access = list("security") + }, +/turf/open/floor/iron/dark, +/area/station/security/brig/entrance) +"sGL" = ( +/turf/open/openspace, +/area/station/medical/medbay/lobby) +"sGS" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/airalarm/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/command/heads_quarters/hos) +"sGX" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Ordnance Launch Site Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/science/ordnance/testlab) +"sGY" = ( +/obj/structure/closet, +/obj/effect/spawner/random/maintenance/three, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"sHn" = ( +/obj/structure/lattice, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/window/spawner/directional/south, +/obj/structure/window/spawner/directional/north, +/obj/structure/window/spawner/directional/east, +/turf/open/openspace, +/area/station/security/brig/upper) +"sHs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"sHt" = ( +/obj/machinery/firealarm/directional/north, +/obj/machinery/camera/directional/north{ + c_tag = "Canteen Lounge - Private"; + dir = 9; + network = list("ss13","bar") + }, +/obj/structure/chair/comfy{ + dir = 4; + color = "#DE3A3A" + }, +/turf/open/floor/wood/tile, +/area/station/commons/lounge) +"sHu" = ( +/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/large, +/area/station/service/hydroponics) +"sHC" = ( +/obj/structure/lattice/catwalk, +/obj/effect/landmark/start/cargo_technician, +/turf/open/openspace, +/area/station/cargo/office) +"sHJ" = ( +/obj/effect/mapping_helpers/burnt_floor, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/station/maintenance/central) +"sHK" = ( +/obj/machinery/door/airlock{ + id_tag = "private_1"; + name = "Private Quarters 1" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms/room1) +"sHW" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/glass, +/area/station/ai_monitored/turret_protected/ai) +"sHZ" = ( +/obj/effect/turf_decal/siding/white, +/obj/structure/closet/emcloset, +/obj/machinery/airalarm/directional/south, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"sIa" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/trash_pile, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"sIg" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar/fourcorners, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/checker, +/area/station/service/kitchen/diner) +"sIk" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/flasher/directional/south{ + id = "holdingflash"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/security/holding_cell) +"sIo" = ( +/obj/structure/hedge, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/chapel/funeral) +"sIL" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"sIN" = ( +/obj/machinery/camera/directional/west{ + c_tag = "Robotics - Work Desks"; + network = list("ss13","rd") + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/status_display/ai/directional/west, +/turf/open/floor/iron/small, +/area/station/science/robotics/lab) +"sIW" = ( +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/hfr_room) +"sIX" = ( +/obj/effect/mapping_helpers/airlock/access/all/science/rd, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/rd{ + name = "Research Division Server Room" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/server) +"sIY" = ( +/obj/machinery/light/warm/directional/north, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/tile, +/area/station/service/kitchen) +"sJc" = ( +/obj/item/book/manual/hydroponics_pod_people, +/obj/item/paper/guides/jobs/hydroponics, +/obj/item/clothing/accessory/armband/hydro, +/obj/item/toy/figure/botanist, +/obj/structure/table, +/obj/structure/lattice/catwalk, +/obj/machinery/airalarm/directional/west, +/obj/machinery/camera/directional/west{ + c_tag = "Service - Hydroponics Storage"; + network = list("ss13","bar") + }, +/obj/machinery/feed_machine, +/turf/open/openspace, +/area/station/service/hydroponics/upper) +"sJd" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/command/storage/eva) +"sJe" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/eva) +"sJj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/wood, +/area/station/service/chapel) +"sJn" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/iron/white/side{ + dir = 8 + }, +/area/station/medical/paramedic) +"sJC" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/structure/ladder, +/turf/open/floor/plating, +/area/station/maintenance/solars/starboard/fore) +"sKh" = ( +/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner{ + dir = 4 + }, +/obj/structure/table, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, +/obj/item/construction/plumbing{ + pixel_y = 5 + }, +/obj/item/construction/plumbing, +/obj/machinery/light/cold/no_nightlight/directional/east, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"sKp" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/landmark/start/hangover, +/obj/structure/railing, +/turf/open/floor/wood/tile, +/area/station/commons/lounge) +"sKu" = ( +/obj/structure/chair/pew/right, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/chapel, +/area/station/service/chapel) +"sKU" = ( +/obj/effect/turf_decal/lunar_sand, +/obj/machinery/camera/directional/west{ + c_tag = "Xenobiology Pens - Port"; + network = list("ss13","xeno","rd") + }, +/turf/open/floor/plating, +/area/station/science/xenobiology) +"sKW" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/item/wrench, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"sLd" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/machinery/light/warm/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/command/meeting_room/council) +"sLh" = ( +/obj/machinery/camera/directional/south{ + c_tag = "MiniSat External Upper North"; + network = list("minisat") + }, +/obj/structure/lattice, +/turf/open/space/openspace, +/area/space/nearstation) +"sLi" = ( +/obj/effect/turf_decal/tile/dark_blue, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/security/office) +"sLo" = ( +/obj/structure/closet/secure_closet/injection{ + name = "educational injections locker" + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/bot_white, +/obj/machinery/camera/directional/west{ + c_tag = "Security - Education Chamber" + }, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/security/execution/education) +"sLq" = ( +/obj/machinery/door/airlock/hatch{ + name = "Maintenance Hatch" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"sLr" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/iron/white, +/area/station/medical/storage) +"sLF" = ( +/obj/structure/table, +/obj/item/storage/belt/utility{ + pixel_y = 4; + pixel_x = 8 + }, +/obj/item/storage/belt/utility{ + pixel_x = 8 + }, +/obj/item/clothing/head/utility/welding{ + pixel_y = 4; + pixel_x = 8 + }, +/obj/item/clothing/glasses/welding{ + pixel_x = 9 + }, +/obj/machinery/ecto_sniffer{ + pixel_x = -8 + }, +/obj/effect/turf_decal/tile/dark_red/anticorner, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 1 + }, +/area/station/science/robotics/lab) +"sLR" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/landmark/start/security_officer, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/security/office) +"sMg" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) +"sMr" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/machinery/airalarm/directional/north, +/obj/machinery/light/cold/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/security/brig/entrance) +"sMs" = ( +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/effect/spawner/random/bureaucracy/pen, +/obj/structure/table, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron, +/area/station/maintenance/fore/lesser) +"sMu" = ( +/obj/structure/table/wood, +/obj/item/folder/white{ + pixel_y = 9; + pixel_x = -6 + }, +/obj/item/radio/headset/headset_srvmed{ + pixel_y = 6; + pixel_x = 1 + }, +/obj/item/flashlight/lamp/green{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/carpet, +/area/station/medical/psychology) +"sMB" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/rack, +/obj/item/storage/box/lights/mixed, +/obj/item/clothing/suit/caution, +/obj/item/clothing/suit/caution, +/obj/item/clothing/suit/caution, +/obj/item/clothing/gloves/botanic_leather, +/obj/item/clothing/gloves/color/blue, +/obj/item/reagent_containers/cup/bucket, +/obj/item/reagent_containers/cup/bucket, +/obj/item/storage/bag/trash, +/obj/item/mop, +/obj/item/pushbroom, +/obj/item/mop, +/turf/open/floor/iron/kitchen{ + dir = 1 + }, +/area/station/security/prison) +"sMC" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/chair/wood, +/turf/open/floor/wood, +/area/station/maintenance/starboard/fore) +"sMF" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer, +/turf/open/floor/engine, +/area/station/engineering/atmos) +"sMI" = ( +/turf/closed/wall/r_wall, +/area/station/commons/storage/primary) +"sMQ" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/brigdoor/right/directional/south{ + req_one_access = list("security"); + name = "Checkpoint Desk" + }, +/obj/item/paper_bin{ + pixel_x = -8; + pixel_y = 3 + }, +/obj/item/pen{ + pixel_x = -8; + pixel_y = 3 + }, +/obj/machinery/recharger{ + pixel_y = 4; + pixel_x = 6 + }, +/turf/open/floor/iron, +/area/station/security/checkpoint/escape) +"sMU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"sNm" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 10 + }, +/obj/effect/turf_decal/box, +/obj/machinery/camera/directional/east{ + c_tag = "Dormitories - Public Garden" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/service/hydroponics/garden) +"sNn" = ( +/obj/effect/turf_decal/tile/green/opposingcorners, +/obj/machinery/camera/directional/west{ + c_tag = "Central Primary Hallway - Teleporter" + }, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/hallway/primary/central) +"sNo" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/iron, +/area/station/security/checkpoint/medical) +"sNx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"sNQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Teleporter And Equipments" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/minisat, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/tcommsat/computer) +"sNR" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/turf/closed/wall/r_wall, +/area/station/security/prison) +"sNT" = ( +/obj/structure/table/wood, +/obj/effect/spawner/random/bureaucracy/folder{ + spawn_random_offset = 4 + }, +/obj/effect/spawner/random/bureaucracy/folder{ + spawn_random_offset = 4 + }, +/obj/effect/spawner/random/bureaucracy/folder{ + spawn_random_offset = 4 + }, +/obj/effect/spawner/random/bureaucracy/paper, +/obj/effect/spawner/random/bureaucracy/pen, +/turf/open/floor/carpet, +/area/station/commons/vacant_room/office) +"sOs" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/light/cold/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/engineering/gravity_generator) +"sOu" = ( +/obj/item/kirbyplants/synthetic/plant28, +/obj/machinery/firealarm/directional/east, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/light/warm/directional/east, +/obj/machinery/camera/directional/north{ + c_tag = "Medbay - Recovery Centre"; + network = list("ss13","medbay") + }, +/obj/structure/cable, +/turf/open/floor/iron/white/herringbone, +/area/station/medical/patients_rooms) +"sOA" = ( +/obj/structure/table, +/obj/effect/spawner/random/maintenance/three, +/turf/open/floor/plating, +/area/station/maintenance/starboard/lesser) +"sOP" = ( +/obj/structure/chair/sofa/bench/right, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/exit/departure_lounge) +"sOX" = ( +/obj/structure/chair/comfy/brown{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/station/medical/psychology) +"sPj" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/rack, +/obj/item/reagent_containers/cup/bucket, +/obj/item/mop, +/obj/item/pushbroom{ + pixel_y = -6 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 6; + pixel_y = -6 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron, +/area/station/medical/medbay/central) +"sPk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/service/chapel/funeral) +"sPp" = ( +/turf/closed/wall, +/area/station/hallway/primary/port) +"sPt" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/department/security/lower) +"sPu" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/lattice/catwalk, +/obj/structure/closet/secure_closet/brig/genpop, +/obj/item/card/id/advanced/prisoner/two, +/turf/open/openspace, +/area/station/security/holding_cell) +"sPV" = ( +/obj/effect/turf_decal/bot, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue/half, +/turf/open/floor/iron/half, +/area/station/command/heads_quarters/hop) +"sQc" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/purple, +/obj/structure/table/reinforced, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/white, +/area/station/science/explab) +"sQi" = ( +/obj/structure/table, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/item/mining_voucher, +/obj/item/gps/mining{ + gpstag = "QM0"; + pixel_y = 4 + }, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/iron/large, +/area/station/command/heads_quarters/qm) +"sQj" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/hallway/secondary/exit/departure_lounge) +"sQz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "Skynet_launch"; + name = "Mech Bay" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/robotics/mechbay) +"sQK" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"sQP" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/carpet/green, +/area/station/security/courtroom) +"sQQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/orange/visible{ + dir = 8 + }, +/obj/machinery/meter, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"sRc" = ( +/obj/structure/chair/comfy{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/wood, +/area/station/commons/dorms/room6) +"sRf" = ( +/turf/closed/wall, +/area/station/service/abandoned_gambling_den) +"sRn" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"sRx" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "maint-toggle2"; + name = "Maintenance Secure Shutters"; + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) +"sRA" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/station/commons/storage/primary) +"sRG" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/chair/wood{ + dir = 8 + }, +/turf/open/floor/wood/tile, +/area/station/commons/lounge) +"sRK" = ( +/obj/item/skillchip/wine_taster{ + pixel_y = 3 + }, +/obj/structure/rack/shelf, +/obj/item/skillchip/wine_taster{ + pixel_y = -7 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 4 + }, +/turf/open/floor/stone, +/area/station/maintenance/starboard/fore) +"sRW" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/station/maintenance/port/aft) +"sSc" = ( +/obj/effect/turf_decal/weather/dirt, +/obj/item/flashlight/lantern{ + pixel_x = -12; + pixel_y = 5 + }, +/turf/open/floor/grass, +/area/station/security/prison) +"sSt" = ( +/obj/machinery/mass_driver/chapelgun, +/obj/machinery/door/window/left/directional/east, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating, +/area/station/service/chapel/funeral) +"sSx" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/reinforced, +/area/station/asteroid) +"sSz" = ( +/obj/structure/railing, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/item/storage/medkit/emergency{ + pixel_y = 6 + }, +/obj/item/storage/medkit/emergency, +/obj/structure/table/glass, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"sSP" = ( +/obj/structure/hedge, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/xenobiology) +"sSU" = ( +/obj/effect/turf_decal/tile/purple/half{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/obj/machinery/biomass_recycler, +/obj/item/stack/biomass, +/obj/item/stack/biomass, +/obj/item/stack/biomass, +/obj/item/stack/biomass, +/obj/item/stack/biomass, +/turf/open/floor/iron/dark/smooth_half, +/area/station/science/xenobiology) +"sSX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/green, +/area/station/service/library) +"sTp" = ( +/obj/effect/turf_decal/siding/white{ + dir = 5 + }, +/obj/item/kirbyplants/synthetic/plant27, +/obj/machinery/light/warm/directional/north, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/wood/large, +/area/station/medical/break_room) +"sTr" = ( +/turf/closed/wall/r_wall, +/area/station/tcommsat/computer) +"sTx" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/maintenance/port/greater) +"sTA" = ( +/obj/structure/hedge, +/obj/structure/window/fulltile, +/turf/open/floor/iron/dark/smooth_large, +/area/station/common/cryopods) +"sTE" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/bot, +/turf/open/floor/wood/tile, +/area/station/commons/lounge) +"sTO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 1 + }, +/turf/open/openspace, +/area/station/engineering/atmos/upper) +"sTU" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"sTV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) +"sUb" = ( +/obj/effect/turf_decal/tile/green/opposingcorners, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/hallway/primary/central) +"sUp" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/medical_kiosk, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"sUz" = ( +/obj/structure/chair/pew/right, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/chapel{ + dir = 4 + }, +/area/station/service/chapel) +"sUA" = ( +/obj/structure/desk_bell{ + pixel_x = 8; + pixel_y = 10 + }, +/obj/machinery/door/window/right/directional/west{ + name = "Hydroponics Desk"; + req_access = list("hydroponics") + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "hydroponics_counter"; + name = "Hydroponics Counter Shutters" + }, +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics/upper) +"sUB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"sUG" = ( +/obj/machinery/airalarm/directional/west, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/machinery/chem_mass_spec, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/pharmacy) +"sUX" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/ladder, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"sUY" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/chair/comfy{ + color = "#596479"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/service/chapel/office) +"sVj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"sVw" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/two, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron, +/area/station/maintenance/port/lesser) +"sVJ" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/machinery/door/airlock/atmos/glass{ + name = "HFR Access" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos/hfr_room) +"sVM" = ( +/obj/structure/chair/stool/directional/north, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/station/maintenance/aft/greater) +"sVO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"sVZ" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/layer_manifold/supply/visible, +/turf/open/floor/engine, +/area/station/engineering/atmos) +"sWg" = ( +/obj/structure/lattice/catwalk, +/turf/open/misc/asteroid/moon/airless, +/area/station/asteroid) +"sWh" = ( +/obj/structure/lattice/catwalk, +/obj/structure/ladder, +/turf/open/openspace, +/area/station/maintenance/starboard/greater) +"sWm" = ( +/obj/machinery/atmospherics/components/unary/passive_vent, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"sWn" = ( +/obj/structure/closet/secure_closet/hydroponics, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/service/hydroponics/upper) +"sWA" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/service/janitor) +"sWC" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/icecream_vat, +/turf/open/floor/wood/tile, +/area/station/service/kitchen) +"sWD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, +/obj/effect/turf_decal/box/corners, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"sWH" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"sWM" = ( +/obj/effect/turf_decal/tile/dark/diagonal_edge, +/obj/machinery/light/warm/directional/north, +/turf/open/floor/iron/kitchen/diagonal, +/area/station/security/prison) +"sWN" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/hallway/primary/central/fore) +"sXg" = ( +/obj/machinery/firealarm/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/science/ordnance/testlab) +"sXu" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/light/warm/directional/south, +/turf/open/floor/iron, +/area/station/construction/mining/aux_base) +"sXG" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/bot, +/obj/structure/mop_bucket/janitorialcart, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/janitor) +"sXQ" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white, +/area/station/medical/storage) +"sXX" = ( +/obj/machinery/growing/soil, +/obj/machinery/light/warm/directional/north, +/turf/open/floor/grass, +/area/station/service/hydroponics/garden) +"sYb" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, +/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos) +"sYc" = ( +/obj/effect/spawner/random/maintenance, +/obj/effect/spawner/random/trash/food_packaging, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"sYd" = ( +/obj/structure/flora/rock/pile/style_2, +/obj/structure/flora/rock/pile, +/obj/structure/flora/bush/sparsegrass/style_random, +/turf/open/misc/dirt/planet, +/area/station/security/prison) +"sYg" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Storage" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/storage) +"sYi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"sYj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"sYk" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/medical/break_room) +"sYl" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/chair/sofa/bench/left, +/obj/machinery/light/cold/directional/north, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"sYp" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/corral_corner{ + mapping_id = "6" + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"sYE" = ( +/obj/machinery/light/warm/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/engineering/main) +"sYG" = ( +/obj/docking_port/stationary/escape_pod{ + dir = 2 + }, +/turf/open/space/openspace, +/area/space/nearstation) +"sYM" = ( +/obj/effect/spawner/random/structure/girder, +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"sYS" = ( +/obj/effect/turf_decal/trimline/green/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/mid_joiner{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/service/hydroponics) +"sYY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/cargo/miningdock) +"sZq" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) +"sZG" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/spawner/random/trash/botanical_waste, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"sZH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Arrivals Lounge" + }, +/obj/structure/cable, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/entry) +"sZL" = ( +/obj/machinery/autolathe, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_half, +/area/station/cargo/office) +"sZV" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/science/cytology) +"sZZ" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/department/bridge) +"tag" = ( +/obj/structure/railing, +/mob/living/basic/chicken{ + forced_gender = "female" + }, +/turf/open/floor/grass, +/area/station/service/hydroponics/upper) +"tal" = ( +/turf/closed/wall/r_wall, +/area/station/science/server) +"tam" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/science/xenobiology) +"tat" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/closet/secure_closet/detective, +/obj/item/camera/detective, +/obj/item/restraints/handcuffs{ + pixel_y = -7 + }, +/turf/open/floor/wood/tile, +/area/station/security/detectives_office) +"tav" = ( +/obj/machinery/chem_master/condimaster{ + name = "CondiMaster Neo" + }, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"taB" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/cup/glass/coffee{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/reagent_containers/cup/glass/coffee{ + pixel_x = 4 + }, +/turf/open/floor/carpet/green, +/area/station/service/library) +"taG" = ( +/obj/effect/landmark/start/chief_engineer, +/turf/open/floor/carpet/black, +/area/station/command/heads_quarters/ce) +"taM" = ( +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/spawner/random/trash/botanical_waste, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"taP" = ( +/obj/effect/turf_decal/bot_white, +/obj/machinery/mecha_part_fabricator, +/obj/effect/turf_decal/tile/dark_red/half{ + dir = 1 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron/dark/smooth_half, +/area/station/science/robotics/lab) +"tbc" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/openspace, +/area/station/maintenance/department/security/upper) +"tbd" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/machinery/light/warm/directional/south, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos/upper) +"tbj" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/mob/living/simple_animal/bot/secbot/beepsky, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"tbm" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"tbr" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/closet/firecloset, +/obj/effect/landmark/start/hangover/closet, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"tbD" = ( +/obj/structure/railing{ + dir = 10 + }, +/turf/open/openspace, +/area/station/science/genetics) +"tbE" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/departments/evac, +/turf/open/floor/plating, +/area/station/hallway/secondary/exit/departure_lounge) +"tbL" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 1 + }, +/area/station/security/brig) +"tbZ" = ( +/obj/effect/turf_decal/siding/white{ + dir = 5 + }, +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/obj/structure/disposalpipe/segment, +/obj/machinery/airalarm/directional/east, +/obj/machinery/light/cold/directional/east, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/diagonal, +/area/station/commons/toilet/auxiliary) +"tcb" = ( +/obj/effect/spawner/random/trash/cigbutt, +/obj/effect/spawner/random/trash/garbage, +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/obj/item/storage/bag/trash/filled, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"tci" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"tcl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"tcn" = ( +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/cargo/lobby) +"tcq" = ( +/turf/open/openspace, +/area/station/engineering/atmos/upper) +"tcA" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/service/janitor) +"tcN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"tcV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/main) +"tdd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/qm) +"tdi" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/iron/dark, +/area/station/command/meeting_room/council) +"tdj" = ( +/turf/closed/wall, +/area/station/science/ordnance/burnchamber) +"tdk" = ( +/obj/structure/bookcase/random/fiction, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/station/security/prison) +"tdu" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/openspace, +/area/station/science/xenobiology) +"tdx" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/reagentgrinder{ + pixel_y = 9 + }, +/obj/item/stack/sheet/mineral/plasma, +/obj/structure/table/glass, +/turf/open/floor/iron/white, +/area/station/medical/pharmacy) +"tdC" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/structure/sink/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/airalarm/directional/west, +/obj/structure/cable, +/obj/machinery/camera/directional/west, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"tdJ" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/common/laser_tag) +"tdN" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/engineering/atmos/hfr_room) +"tec" = ( +/obj/structure/table, +/obj/item/storage/dice{ + pixel_x = -4; + pixel_y = 10 + }, +/obj/item/toy/cards/deck{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/machinery/digital_clock/directional/south, +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/holding_cell) +"tef" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/ore_box, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/greater) +"tek" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/fluff/paper/stack{ + dir = 4 + }, +/turf/open/floor/wood, +/area/station/maintenance/starboard/fore) +"tey" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/machinery/atmospherics/pipe/smart/simple/brown/visible, +/turf/open/floor/plating, +/area/station/engineering/atmos/upper) +"teK" = ( +/obj/structure/table, +/obj/item/pipe_dispenser{ + pixel_y = 6 + }, +/obj/item/assault_pod/mining, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/iron, +/area/station/construction/mining/aux_base) +"teV" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"teZ" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/service/chapel) +"tfh" = ( +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"tfk" = ( +/obj/structure/closet/secure_closet/security/engine, +/obj/item/storage/toolbox/drone{ + pixel_y = -6 + }, +/obj/item/radio{ + pixel_x = 6 + }, +/obj/item/clothing/mask/whistle, +/obj/structure/reagent_dispensers/wall/peppertank/directional/north, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/security/checkpoint/engineering) +"tfq" = ( +/obj/effect/turf_decal/tile/dark_blue/half{ + dir = 8 + }, +/obj/item/storage/fancy/donut_box{ + pixel_y = 11 + }, +/obj/item/paper_bin{ + pixel_x = 5 + }, +/obj/item/pen{ + pixel_x = 5 + }, +/obj/item/binoculars{ + pixel_x = -10 + }, +/obj/structure/table/reinforced, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/security/corrections_officer) +"tfu" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/departure_lounge) +"tfC" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/openspace, +/area/station/maintenance/starboard/fore) +"tfE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/small/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/maintenance/port/aft) +"tfN" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/rack, +/obj/effect/spawner/random/trash/soap{ + pixel_y = 6 + }, +/obj/effect/spawner/random/trash/soap, +/obj/machinery/firealarm/directional/south, +/obj/machinery/camera/directional/west{ + c_tag = "Custodial - Lower Closet" + }, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/service/janitor) +"tfQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood/large, +/area/station/medical/break_room) +"tfS" = ( +/obj/structure/table, +/obj/item/reagent_containers/pill/maintenance{ + pixel_y = 4; + pixel_x = 2 + }, +/obj/item/reagent_containers/pill/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard/lesser) +"tfZ" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hopqueue"; + name = "HoP Queue Shutters" + }, +/obj/effect/turf_decal/tile/blue/half, +/turf/open/floor/iron/half, +/area/station/hallway/secondary/command) +"tga" = ( +/obj/machinery/computer/rdconsole{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"tge" = ( +/obj/machinery/computer/security/mining{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/obj/machinery/firealarm/directional/east, +/obj/item/radio/intercom/directional/north{ + pixel_x = 20 + }, +/obj/machinery/camera/directional/east{ + c_tag = "Guard Post - Cargo" + }, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/security/checkpoint/supply) +"tgk" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"tgp" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/commons/storage/primary) +"tgE" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/entry) +"tgG" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/hallway/secondary/command) +"thp" = ( +/obj/structure/tank_dispenser/oxygen{ + pixel_x = -1; + pixel_y = 2 + }, +/obj/effect/turf_decal/box, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron, +/area/station/ai_monitored/command/storage/eva) +"tht" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/commons/storage/primary) +"thJ" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/fluff/meteor/large{ + pixel_y = 12 + }, +/obj/structure/fluff/meteor{ + pixel_x = 14; + pixel_y = 2 + }, +/obj/structure/table/reinforced/plastitaniumglass, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/iron/dark/small, +/area/station/service/library/lounge) +"thU" = ( +/obj/machinery/computer/rdconsole{ + dir = 8 + }, +/turf/open/floor/glass/reinforced, +/area/station/command/heads_quarters/rd) +"thV" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/science/server) +"tia" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/red/fourcorners, +/turf/open/floor/iron/dark, +/area/station/security/execution/education) +"tin" = ( +/obj/item/stock_parts/matter_bin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/micro_laser, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/scanning_module{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stock_parts/scanning_module{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/structure/table/reinforced, +/obj/item/stack/sheet/iron/fifty{ + pixel_y = 4; + pixel_x = 16 + }, +/obj/item/stack/sheet/glass/fifty{ + pixel_y = 4; + pixel_x = 16 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/item/multitool/circuit{ + pixel_x = -7 + }, +/obj/item/multitool/circuit, +/obj/item/multitool/circuit{ + pixel_x = 7 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/circuits) +"tio" = ( +/obj/machinery/exodrone_launcher, +/obj/item/exodrone, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/cargo/drone_bay) +"tiE" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/brig/entrance) +"tiQ" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 4 + }, +/area/station/security/office) +"tiT" = ( +/obj/structure/table/reinforced, +/obj/item/folder{ + pixel_x = -6 + }, +/obj/item/pen{ + pixel_x = -5 + }, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler{ + pixel_y = -6 + }, +/turf/open/floor/iron, +/area/station/science/robotics/mechbay) +"tjc" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/purple, +/obj/item/kirbyplants/monkey, +/obj/structure/disposalpipe/segment, +/obj/machinery/light/cold/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/white, +/area/station/science/explab) +"tjh" = ( +/obj/machinery/light/small/directional/east, +/obj/structure/cable, +/turf/open/floor/wood, +/area/station/commons/dorms/room5) +"tjJ" = ( +/obj/machinery/door/airlock/external{ + name = "Departure Shuttle Airlock"; + space_dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/exit/departure_lounge) +"tjK" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/siding/green{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/siding/green{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_half, +/area/station/service/hydroponics) +"tkj" = ( +/obj/machinery/airalarm/directional/east, +/obj/machinery/light/warm/directional/east, +/obj/effect/turf_decal/tile/bar/fourcorners, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/checker, +/area/station/service/kitchen/diner) +"tkk" = ( +/obj/structure/barricade/wooden/crude, +/obj/machinery/door/airlock/maintenance/external/glass{ + name = "Abandoned Storage" + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/welded, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"tkC" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"tkG" = ( +/obj/effect/spawner/random/engineering/tracking_beacon, +/turf/open/floor/wood, +/area/station/service/library/lounge) +"tkT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/bot, +/obj/structure/closet/l3closet/scientist, +/turf/open/floor/iron/dark/small, +/area/station/science/xenobiology) +"tla" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks{ + pixel_y = 6; + pixel_x = -2 + }, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/bar) +"tlh" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/department/eva) +"tln" = ( +/obj/item/food/grown/banana, +/obj/effect/landmark/event_spawn, +/turf/open/floor/grass, +/area/station/science/genetics) +"tlq" = ( +/turf/closed/wall, +/area/station/science/research/abandoned) +"tlE" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/engineering/transit_tube) +"tlF" = ( +/obj/structure/weightmachine/weightlifter, +/obj/effect/turf_decal/bot_red, +/obj/effect/turf_decal/tile/dark/full, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/prison) +"tlG" = ( +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/customs) +"tlM" = ( +/obj/machinery/door/airlock/engineering{ + name = "Port Bow Solar Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/turf/open/floor/iron/dark/smooth_large, +/area/station/maintenance/solars/port/fore) +"tlX" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/corral_corner{ + mapping_id = "1" + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"tmi" = ( +/obj/machinery/plumbing/receiver{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/medical/chemistry) +"tmv" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/cargo/office) +"tmI" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/engineering/supermatter/room) +"tmT" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "bridge-right" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/airlock/command{ + name = "Bridge" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/bridge) +"tmU" = ( +/obj/machinery/growing/soil, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/grass, +/area/station/service/hydroponics/garden) +"tne" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/visible, +/obj/machinery/meter, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"tnq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"tnA" = ( +/obj/effect/turf_decal/trimline/dark_red/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark_red/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/security/prison) +"tnC" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Ports Inlet" + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"tnI" = ( +/obj/machinery/atmospherics/components/trinary/filter/critical{ + dir = 1 + }, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"tnJ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/evidence) +"toe" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/arrows{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/office) +"toj" = ( +/obj/item/clothing/suit/apron/chef, +/obj/item/clothing/head/soft/mime, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/under/color/white, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/closet/secure_closet/chemical/heisenberg, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"tow" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/machinery/holopad, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"toD" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/openspace, +/area/station/maintenance/port/greater) +"toF" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white, +/area/station/medical/pharmacy) +"toH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"tpd" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/pharmacy) +"tph" = ( +/turf/open/floor/engine, +/area/station/engineering/gravity_generator) +"tpi" = ( +/obj/machinery/door/airlock/bathroom{ + name = "Dormitory Restrooms" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/toilet/restrooms) +"tpr" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"tpH" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/small, +/area/station/science/ordnance) +"tpK" = ( +/obj/effect/turf_decal/tile/blue/half{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/machinery/iv_drip, +/turf/open/floor/iron/dark/smooth_half, +/area/station/medical/surgery/theatre) +"tpP" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/exit/departure_lounge) +"tpX" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/bot, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/iron/dark/small, +/area/station/science/xenobiology) +"tqe" = ( +/obj/machinery/newscaster/directional/north, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 5; + pixel_x = 2 + }, +/obj/item/storage/toolbox/electrical, +/obj/item/storage/belt/utility{ + pixel_y = 2 + }, +/turf/open/floor/iron/white/side{ + dir = 1 + }, +/area/station/science/research) +"tqf" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering Engine Access" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/command/ai_upload, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/lobby) +"tqh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/iron, +/area/station/commons/vacant_room/commissary) +"tqq" = ( +/obj/machinery/atmospherics/pipe/multiz/purple/visible{ + dir = 1; + name = "Infiltrate" + }, +/obj/effect/turf_decal/box, +/turf/open/floor/engine, +/area/station/engineering/atmos/hfr_room) +"tqs" = ( +/obj/structure/table/glass, +/obj/effect/spawner/random/medical/medkit, +/obj/item/clothing/neck/stethoscope{ + pixel_y = 4 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/iron/dark/small, +/area/station/medical/surgery/theatre) +"tqw" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"tqy" = ( +/turf/closed/wall/r_wall, +/area/station/science/ordnance/bomb) +"tqE" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/security/office) +"tqI" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"tqO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/station/science/ordnance/office) +"trb" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/command/teleporter, +/obj/machinery/door/airlock/command{ + name = "Teleportations Access" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/teleporter) +"trd" = ( +/obj/machinery/suit_storage_unit/engine, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced/spawner/directional/west, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/storage) +"trp" = ( +/obj/structure/chair/plastic, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/security/brig/entrance) +"trB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"trG" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/trash_pile, +/turf/open/floor/iron, +/area/station/maintenance/port/lesser) +"trL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/station/service/library/lounge) +"trP" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/cargo/storage) +"trQ" = ( +/obj/machinery/camera/directional/west{ + c_tag = "Custodial - Upper Closet" + }, +/turf/open/openspace, +/area/station/service/janitor) +"tsg" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "sci-entrance" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/general, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/machinery/door/airlock/research/glass{ + name = "Research and Development Lab" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/research) +"tsE" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"tsJ" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners{ + dir = 1 + }, +/obj/structure/table, +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/spawner/random/trash/botanical_waste, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/checker, +/area/station/maintenance/abandon_diner) +"tsO" = ( +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"tsX" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/camera/directional/south{ + c_tag = "Upper Central Primary Hallway - Tech Storage" + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"tto" = ( +/obj/machinery/light/cold/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/machinery/power/port_gen/pacman, +/turf/open/floor/iron, +/area/station/engineering/gravity_generator) +"ttr" = ( +/turf/closed/wall/r_wall, +/area/station/security/prison/upper) +"tts" = ( +/obj/effect/turf_decal/trimline/green/corner, +/obj/effect/turf_decal/trimline/green/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics) +"ttw" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet, +/area/station/commons/dorms) +"ttD" = ( +/obj/structure/bodycontainer/crematorium, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/chapel/funeral) +"tue" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/main) +"tur" = ( +/obj/effect/turf_decal/tile/green, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/hallway/primary/port) +"tuz" = ( +/obj/structure/table/glass, +/obj/machinery/reagentgrinder{ + pixel_y = 8 + }, +/obj/item/stack/sheet/mineral/plasma{ + pixel_y = -6 + }, +/obj/item/storage/box/beakers{ + pixel_x = 5; + pixel_y = -10 + }, +/obj/item/storage/box/syringes{ + pixel_y = -16 + }, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"tuE" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard{ + pixel_y = 4 + }, +/obj/item/book/manual/wiki/security_space_law{ + pixel_y = 3; + pixel_x = 6 + }, +/turf/open/floor/carpet/purple, +/area/station/security/courtroom) +"tuH" = ( +/obj/machinery/door/window/left/directional/south{ + name = "Fitness Ring" + }, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron/dark/smooth_half, +/area/station/common/wrestling/arena) +"tuK" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/iron, +/area/station/maintenance/fore/lesser) +"tuL" = ( +/obj/effect/turf_decal/tile/neutral/full, +/obj/effect/spawner/random/structure/crate, +/obj/effect/turf_decal/bot, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron/dark/smooth_large, +/area/station/maintenance/aft/greater) +"tuZ" = ( +/obj/effect/turf_decal/siding/white, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/machinery/computer/records/medical, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/medbay/lobby) +"tvd" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Dormitories" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) +"tvB" = ( +/obj/effect/turf_decal/tile/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/closet, +/obj/effect/spawner/random/maintenance/two, +/obj/effect/spawner/random/bureaucracy/briefcase, +/turf/open/floor/iron, +/area/station/commons/vacant_room/commissary) +"tvE" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"twj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"twk" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"tws" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/structure/chair/office{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/storage) +"twz" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/command/captain, +/obj/machinery/door/airlock/maintenance/external{ + name = "Captain's Escape" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/command/heads_quarters/captain) +"twB" = ( +/turf/closed/wall, +/area/station/service/salon) +"twF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/any/supply/bit_den, +/obj/machinery/door/airlock/mining/glass, +/turf/open/floor/iron/dark/smooth_large, +/area/station/cargo/storage) +"twM" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/space/basic, +/area/space/nearstation) +"twR" = ( +/obj/structure/drain, +/obj/machinery/shower/directional/west, +/turf/open/floor/iron/white/small, +/area/station/command/heads_quarters/captain) +"twS" = ( +/obj/effect/turf_decal/stripes/white/line, +/turf/open/floor/plating, +/area/station/engineering/gravity_generator) +"twZ" = ( +/turf/closed/wall, +/area/station/security/detectives_office) +"txa" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"txj" = ( +/obj/effect/turf_decal/tile/dark_red{ + dir = 1 + }, +/obj/machinery/autolathe, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/science/robotics/mechbay) +"txq" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall9"; + location = "hall8" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/commons/dorms) +"txx" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/primary/central) +"txy" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/structure/chair/office{ + dir = 4 + }, +/obj/machinery/airalarm/directional/west, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/ai_monitored/turret_protected/ai_upload) +"txV" = ( +/obj/structure/table/reinforced, +/obj/machinery/keycard_auth{ + pixel_x = 6; + pixel_y = -3 + }, +/obj/machinery/recharger{ + pixel_y = 2; + pixel_x = -7 + }, +/obj/machinery/button/door{ + id = "bridge blast"; + name = "Bridge Blast Door Control"; + pixel_y = 7; + req_access = list("command"); + pixel_x = 5 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"tyb" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"tyc" = ( +/obj/machinery/door/window/brigdoor/left/directional/south{ + name = "AI Core Access"; + req_access = list("ai_upload") + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/tcommsat/computer) +"tye" = ( +/obj/machinery/firealarm/directional/west, +/obj/machinery/light/cold/directional/west, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/structure/rack/shelf, +/obj/effect/spawner/random/medical/medkit, +/turf/open/floor/iron/white, +/area/station/medical/pharmacy) +"tyq" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) +"tyt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/departure_lounge) +"tyC" = ( +/obj/effect/decal/cleanable/insectguts, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"tyU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Augmentation Theatre" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/robotics, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/robotics/augments) +"tzq" = ( +/turf/open/misc/asteroid/moon/airless, +/area/station/asteroid) +"tzG" = ( +/obj/structure/disposalpipe/junction/flip, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/large, +/area/station/hallway/secondary/recreation) +"tzM" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"tzO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/engineering/supermatter/room) +"tzP" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/light/small/directional/west, +/obj/effect/landmark/blobstart, +/obj/effect/landmark/generic_maintenance_landmark, +/turf/open/floor/iron/small, +/area/station/maintenance/port/aft) +"tzQ" = ( +/obj/machinery/holopad, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/brig) +"tzT" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light/small/directional/south, +/obj/effect/landmark/generic_maintenance_landmark, +/turf/open/floor/plating, +/area/station/maintenance/solars/starboard/fore) +"tzU" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"tzX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/brigdoor/right/directional/north{ + name = "Armory Desk"; + req_access = list("armory") + }, +/obj/machinery/door/window/left/directional/south{ + name = "Armory Desk"; + req_access = list("security") + }, +/obj/structure/window/reinforced/spawner/directional/west, +/turf/open/floor/engine, +/area/station/ai_monitored/security/armory) +"tAa" = ( +/obj/machinery/airalarm/directional/north, +/obj/effect/mapping_helpers/airalarm/mixingchamber_access, +/obj/effect/mapping_helpers/airalarm/tlv_no_checks, +/obj/effect/turf_decal/stripes/full, +/obj/effect/mapping_helpers/airalarm/link{ + chamber_id = "ordnanceburn" + }, +/turf/open/floor/catwalk_floor/iron_dark/airless, +/area/station/science/ordnance/burnchamber) +"tAh" = ( +/obj/machinery/conveyor{ + id = "cargodisposals" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/status_display/supply{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/station/cargo/sorting) +"tAj" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/commons/dorms) +"tAl" = ( +/obj/machinery/light_switch/directional/south, +/turf/open/floor/catwalk_floor/iron, +/area/station/security/checkpoint/engineering) +"tAm" = ( +/obj/machinery/chem_master, +/obj/effect/turf_decal/tile/yellow/half{ + dir = 4 + }, +/obj/item/toy/figure/chemist{ + pixel_y = 17; + pixel_x = 6 + }, +/turf/open/floor/iron/white/smooth_edge{ + dir = 4 + }, +/area/station/medical/pharmacy) +"tAr" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light/small/directional/east, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"tAs" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/turf/open/floor/plating, +/area/station/engineering/atmos/upper) +"tAH" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"tAJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/turf/open/floor/iron/white/diagonal, +/area/station/common/spa) +"tAM" = ( +/obj/structure/table/wood, +/obj/structure/window/spawner/directional/north, +/obj/structure/window/spawner/directional/east, +/obj/item/food/ballpark_pretzel{ + pixel_x = -4 + }, +/obj/item/food/ballpark_pretzel{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/food/ballpark_pretzel{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/reagent_containers/cup/bottle/syrup_bottle/caramel{ + pixel_x = 6 + }, +/turf/open/floor/wood/tile, +/area/station/hallway/secondary/exit/departure_lounge) +"tAR" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/science/ordnance/testlab) +"tAZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/exit/departure_lounge) +"tBj" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 4 + }, +/area/station/security/range) +"tBo" = ( +/obj/machinery/telecomms/server/presets/supply, +/turf/open/floor/circuit/telecomms/mainframe, +/area/station/tcommsat/server) +"tBy" = ( +/obj/machinery/door/morgue{ + name = "Curator's Study"; + req_access = list("library") + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/cult, +/area/station/service/library/private) +"tBA" = ( +/obj/machinery/air_sensor/air_tank, +/turf/open/floor/engine/air, +/area/station/engineering/atmos) +"tBB" = ( +/obj/structure/extinguisher_cabinet/directional/south, +/obj/machinery/light/warm/directional/south, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"tBM" = ( +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/cargo/storage) +"tBW" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/siding/white/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/virologist, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"tCd" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/station/security/interrogation) +"tCq" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"tCs" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/service/kitchen/diner) +"tCQ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_y = 8 + }, +/obj/item/pen{ + pixel_y = 8 + }, +/obj/item/stamp/denied{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/stamp{ + pixel_x = -3 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"tDb" = ( +/obj/structure/hedge, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/window/fulltile, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/exit) +"tDc" = ( +/obj/structure/table/optable{ + name = "Robotics Operating Table" + }, +/obj/effect/turf_decal/tile/dark_red{ + dir = 1 + }, +/turf/open/floor/iron/showroomfloor, +/area/station/science/robotics/augments) +"tDi" = ( +/obj/item/stack/sheet/iron/fifty, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"tDr" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/security/telescreen/research{ + dir = 1 + }, +/turf/open/floor/glass/reinforced, +/area/station/command/heads_quarters/rd) +"tDz" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/primary/central/aft) +"tDG" = ( +/obj/machinery/door/airlock{ + id_tag = "private_6"; + name = "Private Quarters 6" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms/room6) +"tDJ" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood/tile, +/area/station/commons/lounge) +"tDV" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door_buttons/access_button{ + idDoor = "virology_airlock_interior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_y = -24; + req_access = list("pathology"); + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/medical/virology, +/obj/machinery/door/airlock/virology{ + autoclose = 0; + frequency = 1449; + id_tag = "virology_airlock_interior"; + name = "Virology Interior Airlock" + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/virology) +"tEh" = ( +/obj/effect/turf_decal/lunar_sand, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/multiz/dark/visible, +/obj/machinery/door/window/brigdoor/left/directional/south{ + req_access = list("xenobiology"); + name = "Holding Chamber" + }, +/turf/open/floor/plating, +/area/station/science/xenobiology) +"tEk" = ( +/obj/effect/turf_decal/bot_white, +/obj/machinery/digital_clock/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/camera/directional/west{ + c_tag = "Vacant Commissary - Line" + }, +/turf/open/floor/iron/large, +/area/station/commons/vacant_room/commissary) +"tEp" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"tEw" = ( +/obj/effect/turf_decal/tile/neutral/half{ + dir = 8 + }, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/commons/storage/mining) +"tEQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/bitrunning/den) +"tFn" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/structure/disposaloutlet{ + dir = 8; + name = "TTV safe outlet" + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/testlab) +"tFR" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/virology) +"tFZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "psychology"; + name = "Privacy Shutters"; + dir = 1 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/command) +"tGe" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/chair/sofa/left{ + color = "2c2c2c"; + dir = 1 + }, +/turf/open/floor/carpet, +/area/station/commons/dorms) +"tGh" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/science/robotics/mechbay) +"tGm" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/binary/pump/on, +/turf/open/floor/plating, +/area/station/maintenance/department/science/xenobiology) +"tGq" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/glass/reinforced, +/area/station/hallway/secondary/command) +"tGr" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plating, +/area/station/hallway/secondary/exit/escape_pod) +"tGx" = ( +/obj/structure/chair/office, +/obj/effect/turf_decal/tile/dark_blue, +/obj/effect/landmark/start/security_officer, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/security/office) +"tGH" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"tGL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"tGZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/grunge{ + id_tag = "Cell2Privacy"; + name = "Cell 2" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/prison) +"tHg" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/brig/entrance) +"tHv" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/machinery/light/warm/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/effect/spawner/random/food_or_drink/donkpockets{ + pixel_x = 12 + }, +/obj/machinery/coffeemaker, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/iron/small, +/area/station/engineering/lobby) +"tHB" = ( +/obj/effect/turf_decal/trimline/green/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/mid_joiner{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/service/hydroponics) +"tHK" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/table/glass, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"tHO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Starboard Secondary Hallway" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/primary/starboard) +"tHZ" = ( +/obj/machinery/camera/directional/west{ + c_tag = "MiniSat External South-East"; + network = list("minisat") + }, +/turf/open/space/basic, +/area/space) +"tIc" = ( +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/space_heater, +/obj/effect/turf_decal/bot, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/entry) +"tIr" = ( +/obj/effect/spawner/random/engineering/atmospherics_portable, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"tIL" = ( +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"tJt" = ( +/obj/structure/bookcase/random/religion, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/wood, +/area/station/service/library/lounge) +"tJE" = ( +/obj/effect/turf_decal/tile/green, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/hallway/primary/port) +"tJW" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/cup/glass/mug{ + pixel_x = -6 + }, +/obj/item/reagent_containers/cup/glass/mug{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/reagent_containers/cup/glass/mug{ + pixel_x = 1 + }, +/obj/item/reagent_containers/cup/glass/mug{ + pixel_x = 1; + pixel_y = 4 + }, +/obj/item/reagent_containers/cup/glass/mug{ + pixel_x = 8 + }, +/obj/item/reagent_containers/cup/glass/mug{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/structure/sign/chalkboard_menu{ + pixel_y = -32 + }, +/turf/open/floor/wood/tile, +/area/station/hallway/secondary/exit/departure_lounge) +"tKm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/iron, +/area/station/common/cryopods) +"tKo" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/station/command/heads_quarters/qm) +"tKr" = ( +/obj/effect/turf_decal/tile/dark_blue, +/obj/machinery/status_display/door_timer{ + id = "Cell 1"; + name = "Cell 1"; + pixel_y = -32; + pixel_x = -32 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side, +/area/station/security/holding_cell) +"tKw" = ( +/obj/machinery/vending/wardrobe/chef_wardrobe, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood/tile, +/area/station/service/kitchen) +"tKB" = ( +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/science/genetics) +"tLs" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, +/turf/open/floor/plating, +/area/station/engineering/atmos/upper) +"tLv" = ( +/turf/closed/wall, +/area/station/security/brig/entrance) +"tLw" = ( +/turf/closed/wall, +/area/station/hallway/primary/starboard) +"tLz" = ( +/obj/machinery/camera/directional/south{ + c_tag = "Departures - Upper Hallway" + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit) +"tLE" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/storage/photo_album/chapel, +/obj/item/book/granter/action/spell/smoke/lesser{ + name = "mysterious old book of cloud-chasing"; + pixel_x = -5 + }, +/obj/item/nullrod{ + pixel_x = 4 + }, +/obj/item/soulstone/anybody/chaplain, +/turf/open/floor/wood/large, +/area/station/service/chapel/office) +"tLL" = ( +/obj/machinery/photocopier, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/captain) +"tMg" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/secondary/command) +"tMp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/medical/treatment_center) +"tMx" = ( +/obj/machinery/light/warm/directional/north, +/turf/open/openspace, +/area/station/engineering/main) +"tMG" = ( +/obj/effect/turf_decal/tile/bar/fourcorners, +/obj/item/kirbyplants/organic/plant6, +/turf/open/floor/iron/checker, +/area/station/service/kitchen/diner) +"tMH" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/openspace, +/area/station/maintenance/aft/upper) +"tMR" = ( +/turf/open/floor/glass/reinforced/airless, +/area/station/security/checkpoint/customs) +"tMW" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"tMX" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Custodial Closet Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/service/janitor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/service/janitor) +"tNi" = ( +/obj/item/mmi, +/obj/item/storage/toolbox/electrical{ + pixel_y = 12 + }, +/obj/item/multitool{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/structure/table/reinforced, +/obj/effect/mapping_helpers/requests_console/ore_update, +/obj/effect/mapping_helpers/requests_console/information, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/machinery/requests_console/auto_name/directional/south, +/turf/open/floor/iron/dark/small, +/area/station/science/circuits) +"tNk" = ( +/obj/effect/spawner/random/structure/steam_vent, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"tND" = ( +/obj/item/reagent_containers/cup/bucket, +/obj/machinery/flasher/directional/south{ + id = "Isolation" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/iron/dark/small, +/area/station/security/prison) +"tNH" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Hydroponics Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/service/hydroponics, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"tNY" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall15"; + location = "hall14" + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"tOe" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/hfr_room) +"tOp" = ( +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"tOw" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"tPa" = ( +/obj/structure/disposalpipe/junction/flip, +/obj/machinery/light/small/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"tPb" = ( +/turf/open/floor/engine/o2, +/area/station/engineering/atmos) +"tPl" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/monitored/air_output{ + dir = 4 + }, +/turf/open/floor/engine/air, +/area/station/engineering/atmos) +"tPn" = ( +/obj/effect/turf_decal/tile/dark_red/half{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/smooth_half, +/area/station/science/robotics/lab) +"tPr" = ( +/obj/machinery/door/airlock/hatch{ + name = "Maintenance Hatch" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"tPs" = ( +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/research_director, +/turf/open/floor/carpet/purple, +/area/station/command/heads_quarters/rd) +"tPv" = ( +/obj/machinery/door/airlock/hatch{ + name = "Maintenance Hatch" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"tPA" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/transit_tube, +/turf/open/floor/plating, +/area/station/cargo/lobby) +"tPB" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/white/corner, +/obj/machinery/light/warm/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"tPF" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple/half/contrasted, +/obj/structure/closet/secure_closet/barber, +/obj/item/clothing/suit/apron/chef{ + desc = "A white smock used by barbers to remain hair free."; + name = "barber smock" + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/service/barber) +"tPS" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/structure/closet/toolcloset, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/light/warm/directional/north, +/turf/open/floor/iron, +/area/station/construction/mining/aux_base) +"tPT" = ( +/obj/effect/turf_decal/box/corners, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible, +/obj/machinery/meter, +/turf/open/floor/engine, +/area/station/engineering/atmos) +"tPV" = ( +/obj/machinery/atmospherics/components/trinary/mixer{ + dir = 4 + }, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/science/ordnance) +"tQc" = ( +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, +/obj/machinery/door/airlock/maintenance/external{ + name = "Auxiliary Chemical Lab" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"tQd" = ( +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/effect/turf_decal/box/corners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"tQk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/pipe_dispenser{ + pixel_y = 8 + }, +/obj/item/book/manual/wiki/atmospherics{ + pixel_y = 4 + }, +/obj/item/multitool{ + pixel_x = -5 + }, +/obj/item/holosign_creator/atmos{ + pixel_x = 5 + }, +/turf/open/floor/plating, +/area/station/engineering/atmos/hfr_room) +"tQC" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/brig/entrance) +"tQE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/departure_lounge) +"tQG" = ( +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/medical/break_room) +"tQL" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/command/meeting_room/council) +"tQO" = ( +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/commons/storage/tools) +"tQU" = ( +/obj/effect/turf_decal/tile/red/real_red{ + dir = 1 + }, +/turf/open/floor/iron/white/corner{ + dir = 8 + }, +/area/station/hallway/secondary/exit/escape_pod) +"tQY" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/solars/starboard/aft) +"tQZ" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/science/cytology) +"tRo" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron, +/area/station/engineering/lobby) +"tRv" = ( +/obj/effect/turf_decal/siding/white{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/iv_drip, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/medical/treatment_center) +"tRz" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/cargo/miningdock) +"tRH" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/storage) +"tRL" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"tRO" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"tRP" = ( +/obj/machinery/door/airlock/maintenance/glass{ + name = "Service Maintenance" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/service/general, +/turf/open/floor/plating, +/area/station/service/hydroponics/upper) +"tRR" = ( +/turf/open/openspace, +/area/station/science/genetics) +"tRW" = ( +/obj/structure/table/glass, +/obj/item/assembly/timer, +/obj/item/assembly/signaler{ + pixel_x = 6; + pixel_y = 5 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"tRY" = ( +/turf/closed/wall, +/area/station/maintenance/starboard/fore) +"tSa" = ( +/turf/closed/wall/r_wall, +/area/station/ai_monitored/turret_protected/aisat/equipment) +"tSe" = ( +/obj/machinery/telecomms/bus/preset_three, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/station/tcommsat/server) +"tSt" = ( +/obj/effect/mapping_helpers/mail_sorting/service/chapel, +/obj/structure/disposalpipe/sorting/mail{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/station/service/chapel) +"tSu" = ( +/obj/machinery/component_printer, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/small, +/area/station/science/circuits) +"tSw" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"tSJ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green/opposingcorners, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/camera/directional/east{ + c_tag = "Service - Hydroponics Desk" + }, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron, +/area/station/service/hydroponics/upper) +"tSO" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack/shelf, +/obj/item/electronics/airalarm{ + pixel_y = -2; + pixel_x = 4 + }, +/obj/item/electronics/airalarm{ + pixel_y = -3 + }, +/obj/item/electronics/firelock{ + pixel_y = 5; + pixel_x = 4 + }, +/obj/item/electronics/firelock{ + pixel_y = 3; + pixel_x = -4 + }, +/obj/item/electronics/firealarm{ + pixel_y = 7; + pixel_x = 4 + }, +/obj/item/electronics/firealarm{ + pixel_y = 5; + pixel_x = -4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/storage/tech) +"tSS" = ( +/obj/structure/table, +/obj/item/gps/mining{ + pixel_y = 12 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/item/gps/mining{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/gps/mining{ + pixel_y = 6; + pixel_x = 5 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) +"tSV" = ( +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/department/bridge) +"tSY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/shreds, +/obj/effect/decal/cleanable/garbage, +/obj/effect/spawner/random/trash/food_packaging, +/turf/open/floor/plating, +/area/station/maintenance/central) +"tTb" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/effect/spawner/random/medical/minor_healing, +/obj/structure/rack/shelf, +/turf/open/floor/iron/white, +/area/station/medical/pharmacy) +"tTc" = ( +/obj/machinery/flasher/directional/north{ + id = "visitorflash" + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/security/prison/visit) +"tTi" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 8 + }, +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central/aft) +"tTs" = ( +/turf/open/floor/glass/reinforced, +/area/station/hallway/primary/starboard) +"tTE" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/filingcabinet/chestdrawer, +/obj/item/clothing/head/helmet/chaplain/cage{ + name = "Poly's cage"; + pixel_x = -1; + pixel_y = 13 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/command/heads_quarters/ce) +"tTK" = ( +/obj/structure/window/reinforced/tinted/fulltile, +/obj/structure/hedge/opaque, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/cmo) +"tTL" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"tTT" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/machinery/door/airlock/security/glass{ + name = "Security Office" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/brig/entrance) +"tTV" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, +/turf/open/floor/plating, +/area/station/engineering/atmos) +"tUd" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/closet, +/obj/item/storage/backpack/satchel, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/commons/dorms/room4) +"tUl" = ( +/obj/effect/turf_decal/vg_decals/atmos/oxygen, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos/upper) +"tUq" = ( +/obj/item/kirbyplants/organic/plant22, +/turf/open/floor/carpet, +/area/station/commons/dorms) +"tUt" = ( +/obj/machinery/door/airlock/silver{ + name = "Kitchen Counter" + }, +/obj/effect/mapping_helpers/airlock/access/any/service/kitchen, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"tUw" = ( +/obj/machinery/status_display/ai/directional/south, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"tUJ" = ( +/obj/structure/hedge, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/breakroom) +"tVn" = ( +/obj/machinery/field/generator, +/obj/machinery/camera/directional/south{ + c_tag = "Engineering - Secure Storage"; + network = list("ss13","engine") + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plating, +/area/station/engineering/storage_shared) +"tVv" = ( +/obj/effect/turf_decal/tile/dark/diagonal_edge, +/obj/machinery/oven/range, +/turf/open/floor/iron/kitchen/diagonal, +/area/station/security/prison) +"tVD" = ( +/obj/structure/sign/directions/engineering/directional/east{ + dir = 1; + pixel_y = 8 + }, +/obj/structure/sign/directions/science/directional/east{ + dir = 1 + }, +/obj/structure/sign/directions/evac/directional/east{ + pixel_y = -8 + }, +/obj/structure/disposalpipe/segment, +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/dark/end{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/obj/structure/cable, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central/aft) +"tVL" = ( +/obj/structure/rack/shelf, +/obj/item/assembly/prox_sensor, +/obj/item/assembly/prox_sensor{ + pixel_x = -6 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = 6 + }, +/obj/item/assembly/prox_sensor, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/station/science/ordnance/testlab) +"tVP" = ( +/obj/structure/sign/painting/library{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/junction, +/obj/structure/cable, +/turf/open/floor/wood, +/area/station/service/library/lounge) +"tVS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/bar/half/contrasted, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/corner, +/area/station/service/kitchen/diner) +"tVW" = ( +/obj/effect/turf_decal/tile/red/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/escape) +"tWb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atm/directional/west, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) +"tWo" = ( +/obj/structure/chair/sofa/bench/left, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/landmark/start/hangover, +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/exit/departure_lounge) +"tWw" = ( +/obj/structure/hedge, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/exit/departure_lounge) +"tWJ" = ( +/obj/machinery/computer/crew{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/customs) +"tWK" = ( +/obj/structure/closet/secure_closet/barber, +/obj/effect/turf_decal/tile/purple/half/contrasted, +/obj/effect/turf_decal/tile/purple, +/obj/item/clothing/suit/apron/chef{ + desc = "A white smock used by barbers to remain hair free."; + name = "barber smock" + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/service/barber) +"tWO" = ( +/obj/effect/turf_decal/tile/green/opposingcorners{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/corner, +/area/station/hallway/primary/central/fore) +"tWQ" = ( +/obj/machinery/computer/atmos_control/carbon_tank, +/obj/effect/turf_decal/box, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/light/warm/directional/north, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos/upper) +"tWT" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Public Mining" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/storage/mining) +"tWZ" = ( +/obj/effect/spawner/random/structure/steam_vent, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"tXc" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/iron/diagonal, +/area/station/security/courtroom) +"tXi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"tXx" = ( +/obj/effect/turf_decal/tile/dark_red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side, +/area/station/common/wrestling/arena) +"tXA" = ( +/obj/effect/turf_decal/tile/dark_blue/half{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/item/kirbyplants/synthetic/plant29, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/security/office) +"tXB" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/security/brig/entrance) +"tXI" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/pen{ + pixel_y = 6; + pixel_x = -2 + }, +/turf/open/floor/wood/large, +/area/station/service/library) +"tXL" = ( +/obj/structure/cable, +/obj/machinery/power/smes, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/solars/starboard/fore) +"tXV" = ( +/obj/structure/flora/bush/large/style_random, +/turf/open/floor/grass, +/area/station/medical/virology) +"tXY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"tYa" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"tYu" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/common/wrestling/arena) +"tYy" = ( +/obj/structure/sign/warning/secure_area/directional/south, +/obj/structure/flora/rock/pile/style_random, +/turf/open/misc/asteroid/moon/airless, +/area/station/asteroid) +"tYA" = ( +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/siding/green{ + dir = 8 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/hallway/secondary/service) +"tYB" = ( +/obj/effect/spawner/random/techstorage/command_all, +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/bot, +/obj/structure/rack/shelf, +/obj/machinery/light/cold/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/storage/tech) +"tYL" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"tYW" = ( +/obj/machinery/door/poddoor/massdriver_trash, +/obj/structure/fans/tiny, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/maintenance/disposal) +"tZf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/light/warm/directional/south, +/turf/open/floor/wood, +/area/station/service/chapel) +"tZm" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/obj/machinery/door/airlock/freezer{ + critical_machine = 1; + name = "Medical Freezer" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/coldroom) +"tZn" = ( +/obj/effect/spawner/random/trash/garbage, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"tZu" = ( +/obj/machinery/computer/atmos_control/nitrogen_tank, +/obj/effect/turf_decal/box, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/turf/open/floor/engine, +/area/station/engineering/atmos) +"tZv" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/openspace, +/area/station/maintenance/starboard/greater) +"tZC" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/science/xenobiology/hallway) +"tZE" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/mix_input, +/turf/open/floor/engine/vacuum, +/area/station/engineering/atmos/upper) +"tZQ" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/light/small/directional/west, +/turf/open/openspace, +/area/station/maintenance/aft/greater) +"tZR" = ( +/obj/structure/lattice, +/obj/structure/transit_tube/crossing, +/turf/open/space/basic, +/area/space/nearstation) +"uay" = ( +/obj/machinery/door/airlock/engineering{ + name = "Telecomms Storage" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/engineering/tcoms, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/storage/tcomms) +"uaB" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Catwalk Maintenance Access" + }, +/turf/open/floor/plating, +/area/station/commons/fitness/recreation) +"uaX" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/light/small/directional/east, +/turf/open/openspace, +/area/station/maintenance/starboard/fore) +"ubd" = ( +/turf/open/floor/engine/hull/reinforced, +/area/station/solars/aisat) +"ubi" = ( +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos) +"ubn" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Chapel Office" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/service/chapel_office, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/chapel/office) +"uby" = ( +/obj/structure/marker_beacon/burgundy, +/obj/machinery/artifact_xray, +/turf/open/floor/iron/dark/small, +/area/station/science/explab) +"ubF" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "outerbrig"; + name = "Brig Entrance" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/security/entrance, +/obj/effect/turf_decal/trimline/red/filled/warning, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/security/brig/entrance) +"ubP" = ( +/obj/structure/rack, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/commons/storage/mining) +"uce" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"ucj" = ( +/obj/effect/turf_decal/lunar_sand/plating, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/glass/reinforced, +/area/station/science/xenobiology) +"uck" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"ucl" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"uco" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/station/maintenance/aft/greater) +"ucv" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/iron/dark, +/area/station/security/prison/visit) +"ucJ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side, +/area/station/hallway/primary/port) +"ucK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/medical/morgue) +"ucT" = ( +/obj/effect/turf_decal/tile/dark_blue/half{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/security/brig) +"ucY" = ( +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/command/gateway) +"udg" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/machinery/door/airlock/atmos/glass{ + name = "Lower Atmospherics Deck" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos) +"udh" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/large, +/area/station/command/heads_quarters/hop) +"udt" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/command/teleporter, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/command{ + name = "Teleportations Access" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/command/storage/eva) +"udv" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating/reinforced{ + initial_gas_mix = "TEMP=2.7" + }, +/area/station/science/ordnance/bomb) +"udN" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/storage/medkit/regular{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"ued" = ( +/obj/machinery/light/warm/directional/west, +/obj/structure/chair/wood{ + dir = 4 + }, +/obj/structure/sign/painting/library{ + pixel_x = -32 + }, +/turf/open/floor/carpet/green, +/area/station/service/library) +"uee" = ( +/obj/machinery/computer/monitor{ + name = "backup power monitoring console"; + dir = 1 + }, +/obj/structure/railing, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/aisat/teleporter) +"uep" = ( +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"ues" = ( +/obj/structure/lattice/catwalk, +/obj/effect/spawner/random/trash/caution_sign, +/obj/item/pushbroom{ + pixel_y = -6 + }, +/obj/structure/cable, +/turf/open/openspace, +/area/station/maintenance/aft/upper) +"uey" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/machinery/door/airlock/external{ + name = "Escape Pod" + }, +/obj/effect/mapping_helpers/airlock/unres, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"ueA" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/wood/tile, +/area/station/service/bar) +"ueK" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/landmark/start/cargo_technician, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/cargo/office) +"ufe" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"ufl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/scientist, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron/white/side{ + dir = 4 + }, +/area/station/science/research) +"ufC" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/landmark/start/hangover/closet, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/departure_lounge) +"ufS" = ( +/obj/effect/turf_decal/lunar_sand/plating, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/glass/reinforced, +/area/station/science/xenobiology) +"ugb" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/station/maintenance/starboard/fore) +"uge" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/machinery/door/window/left/directional/south{ + name = "Engineering Desk"; + req_access = list("engineering") + }, +/obj/item/paper_bin{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "engi"; + name = "Engineering Blast Door" + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/engineering/lobby) +"ugj" = ( +/obj/effect/spawner/random/maintenance/two, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"ugq" = ( +/obj/effect/turf_decal/trimline/green/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/mid_joiner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/service/hydroponics) +"ugu" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/large, +/area/station/hallway/secondary/recreation) +"ugC" = ( +/obj/item/kirbyplants/organic/plant22, +/turf/open/floor/carpet/green, +/area/station/command/heads_quarters/nt_rep) +"ugG" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/machinery/atm/directional/east, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"ugJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/commons/storage/mining) +"ugR" = ( +/obj/structure/table, +/obj/item/clothing/head/utility/radiation{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/clothing/suit/utility/radiation{ + pixel_x = -2; + pixel_y = -5 + }, +/obj/item/storage/box/gum/bubblegum{ + pixel_y = -19 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/engineering/gravity_generator) +"ugW" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/machinery/light/warm/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"ugX" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/modular_computer/preset/id{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/machinery/requests_console/auto_name/directional/west, +/obj/effect/mapping_helpers/requests_console/information, +/obj/effect/mapping_helpers/requests_console/assistance, +/turf/open/floor/wood, +/area/station/command/heads_quarters/qm) +"uhn" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/glass/reinforced, +/area/station/hallway/secondary/exit/departure_lounge) +"uhr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"uht" = ( +/obj/structure/closet/secure_closet/freezer/kitchen/maintenance, +/turf/open/floor/iron/freezer, +/area/station/maintenance/port/greater) +"uhz" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/exit/departure_lounge) +"uhN" = ( +/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plastic, +/area/station/common/carpshop) +"uhO" = ( +/obj/structure/hedge, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen_counter"; + name = "Kitchen Counter Shutters"; + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/kitchen) +"uhR" = ( +/obj/structure/rack, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) +"uhZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/science/breakroom) +"uia" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"uil" = ( +/obj/item/radio/intercom/directional/north, +/obj/machinery/deepfryer, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/kitchen) +"uio" = ( +/obj/structure/chair/office, +/obj/structure/reagent_dispensers/wall/peppertank/directional/north, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"uiA" = ( +/obj/item/clothing/head/costume/festive, +/obj/effect/spawner/random/maintenance/two, +/obj/item/clothing/gloves/color/fyellow, +/obj/structure/table, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"uiG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/clown, +/turf/open/floor/wood/tile, +/area/station/service/theater) +"uiN" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Mix to Burner Mix" + }, +/obj/effect/turf_decal/box/corners, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/science/ordnance) +"uiT" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/digital_clock/directional/west, +/turf/open/floor/plating, +/area/station/hallway/secondary/recreation) +"ujj" = ( +/obj/structure/chair/sofa/bench/right, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/landmark/start/hangover, +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/exit/departure_lounge) +"ujn" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/security/processing) +"ujo" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible{ + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/station/engineering/atmos) +"ujr" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/station/command/meeting_room/council) +"ujt" = ( +/turf/open/floor/iron/white/diagonal, +/area/station/common/spa) +"uju" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/abandon_diner) +"ujx" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/trunk/multiz/down{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/station/maintenance/port/greater) +"ujD" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks/beer{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/service/abandoned_gambling_den) +"ujH" = ( +/obj/effect/turf_decal/tile/bar/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4 + }, +/obj/effect/mapping_helpers/mail_sorting/service/bar, +/turf/open/floor/iron/checker, +/area/station/service/kitchen/diner) +"ujI" = ( +/obj/effect/turf_decal/lunar_sand, +/obj/effect/turf_decal/lunar_sand/plating, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"ujJ" = ( +/obj/machinery/atmospherics/components/tank/air, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"ujP" = ( +/obj/structure/lattice, +/obj/structure/window/spawner/directional/east, +/obj/structure/window/spawner/directional/west, +/turf/open/openspace, +/area/station/cargo/office) +"ujS" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/door/airlock/science{ + name = "Xenobiology Pens" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/xenobiology) +"ukh" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood, +/area/station/command/meeting_room/council) +"uki" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/iron/white/side, +/area/station/medical/medbay/lobby) +"ukm" = ( +/obj/effect/turf_decal/tile/green/opposingcorners, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/light/directional/east, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/hallway/primary/central/fore) +"uko" = ( +/obj/structure/tank_holder/anesthetic, +/turf/open/floor/iron/white/small, +/area/station/medical/surgery/theatre) +"ukq" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "AI Core shutters"; + name = "AI Core Shutters" + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/structure/cable/multilayer/connected, +/obj/machinery/camera/directional/north{ + c_tag = "MiniSat AI Chamber North"; + network = list("aicore") + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/ai_monitored/turret_protected/ai) +"ukv" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"ukx" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/security/eva) +"ukI" = ( +/obj/docking_port/stationary/random{ + dir = 4; + name = "lavaland"; + shuttle_id = "pod_1_lavaland" + }, +/turf/open/space/basic, +/area/space/nearstation) +"ukK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"ukS" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple/half{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/smooth_edge{ + dir = 1 + }, +/area/station/command/heads_quarters/rd) +"ukU" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=lowhall10"; + location = "lowhall9" + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"ulc" = ( +/obj/machinery/portable_atmospherics/canister/plasma, +/obj/effect/turf_decal/bot, +/obj/structure/sign/warning/explosives/alt/directional/east, +/obj/machinery/light/cold/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/ordnance) +"ule" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"ulr" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/door/window/left/directional/south{ + name = "Robotics Deliveries"; + req_access = list("robotics") + }, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + location = "Robotics" + }, +/turf/open/floor/iron/large, +/area/station/science/robotics/lab) +"uls" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/ai_monitored/command/nuke_storage) +"ulX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/small, +/area/station/science/research) +"ulY" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/wood, +/area/station/common/carpshop) +"uma" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_half, +/area/station/cargo/office) +"uml" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/science/genetics, +/obj/machinery/door/airlock/medical{ + name = "Genetics Lab" + }, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/genetics) +"umq" = ( +/obj/structure/railing{ + dir = 5 + }, +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"umr" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side, +/area/station/engineering/atmos/hfr_room) +"umu" = ( +/obj/machinery/atmospherics/components/tank/air{ + dir = 4; + initialize_directions = 4 + }, +/turf/open/floor/iron, +/area/station/maintenance/port/aft) +"umG" = ( +/obj/machinery/computer/shuttle/labor{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/half, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/security/corrections_officer) +"umL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/machinery/light/warm/directional/south, +/turf/open/floor/iron, +/area/station/maintenance/disposal/incinerator) +"umM" = ( +/obj/machinery/door/airlock/maintenance/external{ + name = "Observatory" + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"umN" = ( +/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/science/ordnance) +"umV" = ( +/obj/structure/rack, +/obj/item/stack/sheet/mineral/plasma/five, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/item/stack/cable_coil{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/department/electrical) +"una" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "interrogation"; + name = "Privacy Shutters" + }, +/turf/open/floor/plating, +/area/station/security/interrogation) +"unc" = ( +/obj/effect/turf_decal/tile/neutral/half{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/medical/morgue) +"unk" = ( +/obj/machinery/computer/cargo{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/smooth_half, +/area/station/cargo/office) +"unm" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "Distro to Waste" + }, +/turf/open/floor/engine, +/area/station/engineering/atmos) +"uno" = ( +/obj/effect/turf_decal/tile/bar/fourcorners, +/obj/machinery/light/warm/directional/south, +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/checker, +/area/station/service/kitchen/diner) +"unr" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/hallway/primary/central/fore) +"unu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/pharmacy) +"unA" = ( +/obj/machinery/door/airlock/service{ + name = "Bar Backroom" + }, +/obj/effect/mapping_helpers/airlock/access/any/service/bar, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/bar) +"unC" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/co2{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/box, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/medical/treatment_center) +"unW" = ( +/obj/structure/rack, +/obj/item/chair, +/obj/item/chair{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/chair{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"uor" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/security/brig/entrance) +"uot" = ( +/obj/machinery/light/cold/directional/west, +/turf/open/floor/engine, +/area/station/science/ordnance) +"uov" = ( +/turf/closed/wall/r_wall, +/area/station/medical/chemistry) +"uoA" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green, +/turf/open/floor/wood, +/area/station/commons/dorms/room6) +"upf" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 1 + }, +/turf/closed/wall/r_wall, +/area/station/maintenance/disposal/incinerator) +"upk" = ( +/obj/effect/spawner/random/entertainment/arcade, +/turf/open/floor/eighties, +/area/station/common/arcade) +"ups" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"upC" = ( +/obj/effect/turf_decal/bot, +/obj/structure/railing, +/obj/machinery/door/firedoor/border_only, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Arrivals - Lounge" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"upR" = ( +/turf/open/floor/iron/dark/smooth_large, +/area/station/common/laser_tag) +"uqe" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/machinery/firealarm/directional/east, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/customs) +"uqm" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/escape_pod) +"uqt" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/flasher/portable, +/turf/open/openspace, +/area/station/security/brig/upper) +"uqw" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/science/ordnance/testlab) +"uqA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown/half{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/cargo/storage) +"uqB" = ( +/obj/structure/chair/pew/left{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/obj/effect/landmark/start/hangover, +/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/floor/iron/diagonal, +/area/station/security/courtroom) +"uqJ" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/solo{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"uqV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/hfr_box/body/fuel_input{ + pixel_y = 14 + }, +/obj/item/hfr_box/body/moderator_input{ + pixel_y = 7; + pixel_x = -10 + }, +/obj/item/hfr_box/body/waste_output{ + pixel_x = 10; + pixel_y = 7 + }, +/obj/item/hfr_box/body/interface, +/turf/open/floor/plating, +/area/station/engineering/atmos/hfr_room) +"urj" = ( +/obj/structure/bookcase/random/reference, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/light/warm/directional/east, +/turf/open/floor/wood/large, +/area/station/medical/psychology) +"urq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/conveyor_switch/oneway{ + dir = 4; + id = "garbage"; + name = "Disposal Conveyor" + }, +/turf/open/floor/iron, +/area/station/maintenance/disposal) +"urr" = ( +/obj/effect/spawner/random/engineering/atmospherics_portable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"urJ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/medical/morgue) +"usd" = ( +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/machinery/vending/medical, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"usg" = ( +/mob/living/simple_animal/bot/mulebot{ + home_destination = "QM #1"; + suffix = "#1" + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + location = "QM #1" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/light/warm/directional/north, +/turf/open/floor/iron/dark, +/area/station/cargo/office) +"usn" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"usq" = ( +/obj/effect/turf_decal/tile/green/opposingcorners, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall12"; + location = "hall11" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/iron/checker{ + dir = 1 + }, +/area/station/hallway/primary/central/fore) +"usB" = ( +/obj/machinery/shower/directional/west, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/structure/drain, +/turf/open/floor/iron/showroomfloor, +/area/station/engineering/atmos/office) +"usL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/button/door/directional/south{ + pixel_x = 24; + id = "EVAaccess"; + name = "EVA Shutters" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/ai_monitored/command/storage/eva) +"usR" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/wood/large, +/area/station/service/chapel) +"usV" = ( +/obj/structure/stairs/west, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"uti" = ( +/obj/effect/mapping_helpers/burnt_floor, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"utx" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/half{ + dir = 1 + }, +/area/station/command/bridge) +"uty" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/openspace, +/area/station/maintenance/aft/upper) +"utH" = ( +/obj/machinery/computer/crew, +/obj/effect/turf_decal/siding/white, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/storage) +"utS" = ( +/obj/structure/table/reinforced, +/obj/item/storage/lockbox/loyalty{ + pixel_y = 16 + }, +/obj/item/storage/box/trackimp{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/storage/box/chemimp{ + pixel_x = -8; + pixel_y = 6 + }, +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/wall/peppertank/directional/north, +/obj/item/storage/box/handcuffs{ + pixel_x = -8 + }, +/obj/machinery/digital_clock/directional/west, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/engine, +/area/station/ai_monitored/security/armory) +"utW" = ( +/obj/structure/cable/layer1, +/turf/open/floor/engine/hull, +/area/station/solars/aisat) +"uuh" = ( +/turf/open/openspace, +/area/station/medical/paramedic) +"uui" = ( +/obj/machinery/chem_dispenser{ + layer = 2.7 + }, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"uuk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"uur" = ( +/obj/effect/turf_decal/tile/brown/half{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow/half{ + dir = 1 + }, +/obj/structure/chair{ + dir = 4 + }, +/obj/item/radio/intercom/directional/west, +/obj/machinery/light/warm/directional/west, +/turf/open/floor/iron/dark/smooth_half, +/area/station/cargo/lobby) +"uuB" = ( +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/aisat/teleporter) +"uuF" = ( +/obj/structure/sign/poster/random/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"uuH" = ( +/obj/effect/landmark/start/ai/secondary, +/obj/item/radio/intercom/directional/north{ + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_x = -27 + }, +/obj/item/radio/intercom/directional/west{ + freerange = 1; + listening = 0; + name = "Common Channel" + }, +/obj/item/radio/intercom/directional/south{ + freerange = 1; + frequency = 1447; + listening = 0; + name = "Private Channel" + }, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/ai) +"uuI" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/large, +/area/station/service/bar) +"uuO" = ( +/obj/machinery/door/window/elevator/left/directional/north{ + elevator_mode = 1; + elevator_linked_id = "departures_lift" + }, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"uuW" = ( +/turf/closed/wall, +/area/station/service/chapel/funeral) +"uuX" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/rack/gunrack, +/obj/effect/spawner/armory_spawn/shotguns, +/turf/open/floor/engine, +/area/station/ai_monitored/security/armory) +"uvc" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Exfiltrate to BS Gas Sender" + }, +/turf/open/openspace, +/area/station/engineering/atmos/hfr_room) +"uvh" = ( +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation) +"uvv" = ( +/obj/structure/railing{ + dir = 10 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/openspace, +/area/station/science/research) +"uvz" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/medical/morgue) +"uvE" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/maintenance/aft/greater) +"uvO" = ( +/obj/item/flashlight/lantern, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"uvP" = ( +/turf/open/floor/grass, +/area/station/service/hydroponics/garden) +"uvW" = ( +/obj/effect/turf_decal/bot_white, +/obj/machinery/biogenerator, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/service/hydroponics/garden) +"uvY" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/condiment/flour{ + pixel_x = 5; + pixel_y = 12 + }, +/obj/item/food/dough{ + pixel_y = 4 + }, +/obj/item/food/dough{ + pixel_x = 7 + }, +/obj/item/reagent_containers/condiment/mayonnaise{ + pixel_x = -6 + }, +/obj/item/reagent_containers/condiment/mayonnaise{ + pixel_y = -6 + }, +/turf/open/floor/iron/kitchen/diagonal, +/area/station/maintenance/abandon_diner) +"uwF" = ( +/obj/structure/table/wood, +/obj/item/pinpointer/nuke, +/obj/item/disk/nuclear, +/obj/machinery/airalarm/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain) +"uwI" = ( +/obj/machinery/computer/mech_bay_power_console, +/obj/effect/turf_decal/box, +/obj/structure/sign/poster/contraband/borg_fancy_2/directional/north, +/turf/open/floor/plating, +/area/station/science/research/abandoned) +"uwW" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/cable, +/turf/open/floor/glass, +/area/station/ai_monitored/turret_protected/ai) +"uwX" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/clothing/suit/jacket/straight_jacket, +/obj/item/clothing/mask/muzzle, +/obj/item/reagent_containers/cup/bottle/multiver{ + pixel_x = 10 + }, +/obj/item/reagent_containers/syringe{ + pixel_y = -4 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -16; + pixel_y = 2 + }, +/obj/effect/turf_decal/trimline/red/mid_joiner{ + dir = 1 + }, +/turf/open/floor/iron/white/smooth_edge{ + dir = 1 + }, +/area/station/security/medical) +"uxe" = ( +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/effect/turf_decal/weather/snow, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 8 + }, +/obj/structure/closet/secure_closet/freezer/kitchen, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/service/kitchen/coldroom) +"uxg" = ( +/obj/machinery/door/morgue{ + name = "Confession Booth" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/chapel) +"uxv" = ( +/obj/effect/spawner/random/structure/table_or_rack, +/obj/structure/sign/poster/random/directional/south, +/obj/effect/spawner/random/trash/janitor_supplies, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"uxy" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark/small, +/area/station/science/xenobiology) +"uxS" = ( +/turf/open/openspace, +/area/station/maintenance/solars/port/aft) +"uxU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"uyc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/bot, +/obj/structure/closet/l3closet/virology, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/virology) +"uyk" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing, +/turf/open/openspace, +/area/station/engineering/main) +"uyl" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/office) +"uym" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron, +/area/station/common/cryopods) +"uys" = ( +/obj/machinery/growing/tray, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 1 + }, +/obj/machinery/camera/directional/west{ + c_tag = "Service - Hydroponics Bay" + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/service/hydroponics) +"uyw" = ( +/turf/closed/wall/r_wall, +/area/station/commons/vacant_room/office) +"uyx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/bot, +/obj/structure/rack/shelf, +/obj/item/storage/box/lethalshot{ + pixel_y = 4; + pixel_x = 2 + }, +/obj/item/storage/box/lethalshot, +/obj/item/storage/box/lethalshot{ + pixel_y = -4; + pixel_x = -2 + }, +/turf/open/floor/engine, +/area/station/ai_monitored/security/armory) +"uza" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "engi"; + name = "Engineering Blast Door" + }, +/turf/open/floor/plating, +/area/station/engineering/lobby) +"uzb" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"uzg" = ( +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 4 + }, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/gateway) +"uzi" = ( +/obj/machinery/firealarm/directional/north, +/turf/open/openspace, +/area/station/engineering/transit_tube) +"uzk" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/item/radio/intercom/prison/directional/south, +/obj/machinery/camera/directional/west{ + c_tag = "Security - Permabrig Recreation"; + network = list("ss13","prison") + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/security/prison) +"uzm" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/machinery/holopad/secure, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/station/command/heads_quarters/captain) +"uzp" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible/layer1{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible/layer5{ + dir = 9 + }, +/turf/open/floor/engine, +/area/station/science/ordnance) +"uzt" = ( +/obj/effect/turf_decal/tile/brown/opposingcorners, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/computer/exodrone_control_console{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/drone_bay) +"uzw" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/dark/end{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/small, +/area/station/hallway/primary/starboard) +"uzz" = ( +/obj/structure/chair/comfy/barber_chair{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/effect/turf_decal/tile/purple/opposingcorners, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/service/barber) +"uAj" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/airlock/ce/glass{ + name = "Gravity Generator Access" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/gravity_generator) +"uAn" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/blue/half{ + dir = 4 + }, +/obj/machinery/airalarm/directional/west, +/obj/item/surgery_tray, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/medical/surgery/aft) +"uAp" = ( +/obj/structure/cable, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/department/bridge) +"uAz" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external/glass{ + name = "External Access"; + space_dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/effect/mapping_helpers/airlock/unres, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"uAF" = ( +/obj/structure/lattice, +/obj/structure/window/spawner/directional/west, +/obj/structure/window/spawner/directional/east, +/obj/structure/window/spawner/directional/north, +/turf/open/openspace, +/area/station/security/prison/upper) +"uAQ" = ( +/obj/structure/rack/shelf, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/item/crowbar{ + pixel_y = 10 + }, +/obj/item/screwdriver{ + pixel_y = 12; + pixel_x = 6 + }, +/obj/item/mod/module/plasma_stabilizer, +/obj/item/mod/module/signlang_radio, +/obj/item/mod/module/thermal_regulator, +/obj/machinery/airalarm/directional/west, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/engine, +/area/station/security/eva) +"uBb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/suit_storage_unit/open, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/engine, +/area/station/security/eva) +"uBd" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/vending/hydronutrients, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/turf/open/floor/iron, +/area/station/maintenance/abandon_cafeteria/hydro) +"uBj" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"uBr" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/machinery/door/poddoor/preopen{ + id = "engi"; + name = "Engineering Blast Door" + }, +/turf/open/floor/plating, +/area/station/engineering/lobby) +"uBu" = ( +/obj/effect/turf_decal/box, +/obj/machinery/computer/atmos_alert{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/lobby) +"uBA" = ( +/obj/effect/turf_decal/tile/purple/diagonal_centre, +/obj/effect/turf_decal/siding/white{ + dir = 6 + }, +/obj/item/kirbyplants/synthetic/plant27, +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/diagonal, +/area/station/science/breakroom) +"uBC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"uBQ" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/ai_monitored/command/nuke_storage) +"uBS" = ( +/obj/effect/spawner/random/engineering/atmospherics_portable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"uBX" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "mining"; + dir = 1 + }, +/turf/open/floor/plating, +/area/station/cargo/office) +"uCb" = ( +/obj/machinery/door/window/elevator/left/directional/north{ + elevator_mode = 1; + elevator_linked_id = "departures_lift" + }, +/turf/open/floor/glass/reinforced, +/area/station/hallway/secondary/exit) +"uCd" = ( +/obj/structure/lattice/catwalk, +/obj/effect/spawner/random/trash/bucket, +/turf/open/openspace, +/area/station/maintenance/aft/upper) +"uCl" = ( +/obj/structure/table, +/obj/structure/lattice/catwalk, +/obj/machinery/fax{ + fax_name = "Cargo Office"; + name = "Cargo Office Fax Machine"; + pixel_y = 5 + }, +/turf/open/openspace, +/area/station/cargo/office) +"uCt" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/five, +/obj/item/bot_assembly/secbot, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"uCx" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "HFR Access Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/engineering/atmos/hfr_room) +"uCE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/obj/structure/closet, +/obj/item/bodybag, +/obj/item/clothing/under/misc/burial, +/obj/item/clothing/under/misc/burial, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"uCI" = ( +/obj/structure/sign/flag/nanotrasen/directional/north, +/obj/machinery/light/cold/directional/north, +/turf/open/openspace, +/area/station/command/bridge) +"uCL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"uCN" = ( +/obj/structure/table, +/obj/effect/spawner/random/maintenance/three, +/obj/item/stack/sheet/glass{ + amount = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"uCQ" = ( +/obj/effect/turf_decal/stripes/full, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/main) +"uCT" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/cargo/lobby) +"uDe" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/red/line, +/obj/effect/turf_decal/siding/dark_red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"uDo" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/effect/landmark/start/prisoner, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"uDp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"uDG" = ( +/turf/closed/wall/r_wall, +/area/station/hallway/secondary/exit/departure_lounge) +"uDH" = ( +/obj/effect/turf_decal/siding/white, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/medical/medbay/central) +"uDL" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet, +/area/station/commons/dorms) +"uDQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/evidence) +"uDS" = ( +/obj/machinery/door/window/brigdoor/left/directional/south{ + name = "Security Medical"; + req_access = list("brig") + }, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/mid_joiner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/white/smooth_edge{ + dir = 1 + }, +/area/station/security/medical) +"uDT" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/marker_beacon/teal, +/turf/open/floor/glass/reinforced, +/area/station/ai_monitored/turret_protected/ai) +"uDX" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/corral_corner{ + mapping_id = "4" + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"uFd" = ( +/obj/effect/spawner/random/maintenance/three, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"uFH" = ( +/obj/effect/mapping_helpers/burnt_floor, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/plating, +/area/station/maintenance/central) +"uFL" = ( +/obj/effect/turf_decal/trimline/green/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/mid_joiner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/service/hydroponics) +"uFN" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/solars/port/fore) +"uFZ" = ( +/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/effect/turf_decal/siding/dark, +/turf/open/floor/glass/reinforced, +/area/station/security/warden) +"uGd" = ( +/mob/living/carbon/human/species/monkey/punpun, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/bar) +"uGf" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_red/diagonal_centre, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/diagonal, +/area/station/security/courtroom) +"uGo" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) +"uGq" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/window/spawner/directional/east, +/turf/open/openspace, +/area/station/security/brig/upper) +"uGA" = ( +/obj/structure/lattice, +/obj/structure/window/spawner/directional/north, +/obj/structure/window/spawner/directional/south, +/obj/structure/marker_beacon/indigo, +/turf/open/openspace, +/area/station/security/brig/upper) +"uGT" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/engineering/storage) +"uHa" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/storage) +"uHb" = ( +/obj/item/stock_parts/cell/lead{ + pixel_x = -5; + pixel_y = 8 + }, +/obj/item/usb_cable{ + name = "jumper cable"; + pixel_x = -10; + pixel_y = 12 + }, +/obj/item/lead_pipe{ + pixel_x = -5 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/item/reagent_containers/syringe, +/obj/structure/table, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"uHn" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/large, +/area/station/hallway/secondary/recreation) +"uHr" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral/full, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/cargo/lobby) +"uHw" = ( +/obj/effect/turf_decal/tile/green/opposingcorners{ + dir = 1 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/primary/central/fore) +"uHB" = ( +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/medical/morgue) +"uHE" = ( +/obj/machinery/conveyor/inverted{ + dir = 9; + id = "garbage" + }, +/obj/effect/turf_decal/stripes/full, +/turf/open/floor/plating, +/area/station/maintenance/disposal) +"uHH" = ( +/obj/effect/decal/cleanable/oil/slippery, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"uHI" = ( +/obj/machinery/rnd/production/techfab/department/security, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/engine, +/area/station/security/office) +"uHS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron, +/area/station/common/cryopods) +"uIb" = ( +/obj/item/gun/ballistic/shotgun/doublebarrel, +/obj/structure/rack/gunrack, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/bar) +"uIm" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central) +"uIq" = ( +/obj/machinery/button/door/directional/south{ + id = "detective"; + name = "Privacy Shutters Control"; + req_access = list("detective") + }, +/obj/structure/chair/sofa/right/brown{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/station/security/detectives_office) +"uIv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"uIB" = ( +/obj/structure/cable, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/department/bridge) +"uIV" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external/glass{ + name = "External Access"; + space_dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/effect/mapping_helpers/airlock/unres, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"uJh" = ( +/obj/structure/closet, +/obj/item/vending_refill/cigarette, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/stack/sheet/iron{ + amount = 30 + }, +/obj/item/stack/sheet/glass{ + amount = 30 + }, +/obj/item/wrench, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/bar) +"uJk" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/warning, +/obj/structure/railing, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/machinery/door/poddoor/shutters/window/preopen{ + dir = 4; + id = "briggatez1"; + name = "Brig Gate Shutters" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/security/brig/entrance) +"uJw" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/main) +"uJE" = ( +/obj/effect/mapping_helpers/burnt_floor, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"uJJ" = ( +/obj/structure/marker_beacon/cerulean, +/obj/structure/lattice/catwalk, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"uJK" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/digital_clock/directional/north, +/obj/machinery/light/directional/west, +/obj/machinery/flasher/directional/north{ + pixel_x = -21; + id = "hopflash" + }, +/turf/open/floor/iron/large, +/area/station/command/heads_quarters/hop) +"uJS" = ( +/obj/effect/spawner/random/structure/crate, +/obj/item/reagent_containers/pill/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"uJU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/command/teleporter) +"uJW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) +"uJZ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/camera/directional/south{ + c_tag = "Starboard Primary Hallway - Starboard" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/side, +/area/station/hallway/primary/starboard) +"uKe" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/escape_pod) +"uKg" = ( +/obj/structure/table, +/obj/item/kirbyplants/organic/plant15{ + pixel_y = 12; + pixel_x = 6 + }, +/obj/structure/lattice/catwalk, +/obj/item/radio/intercom/directional/west, +/obj/machinery/light/directional/west, +/mob/living/basic/pet/bumbles, +/obj/item/chicken_feed, +/obj/item/chicken_book, +/obj/item/chicken_book, +/obj/item/chicken_book, +/obj/item/botanical_lexicon, +/obj/item/botanical_lexicon, +/obj/item/botanical_lexicon, +/turf/open/openspace, +/area/station/service/hydroponics/upper) +"uKn" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/large, +/area/station/service/hydroponics) +"uKv" = ( +/obj/structure/trash_pile, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"uKx" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/light/warm/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/engineering/atmos/hfr_room) +"uKC" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Security Desk" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/brig/entrance) +"uKM" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "Atmos Supermatter Mix" + }, +/obj/effect/turf_decal/stripes/end, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"uKT" = ( +/obj/structure/railing{ + dir = 5 + }, +/turf/open/openspace, +/area/station/engineering/main) +"uKU" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/command/heads_quarters/captain) +"uLd" = ( +/obj/effect/turf_decal/lunar_sand, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/glass/reinforced, +/area/station/science/cytology) +"uLj" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"uLk" = ( +/obj/structure/chair/wood{ + dir = 1 + }, +/turf/open/floor/glass, +/area/station/service/kitchen) +"uLn" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/tile, +/area/station/commons/lounge) +"uLP" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 1 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/service/hydroponics) +"uLT" = ( +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"uMd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/violet/visible{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"uMe" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/hallway/primary/central) +"uMx" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/openspace, +/area/station/maintenance/port/lesser) +"uMy" = ( +/obj/structure/cable, +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/box, +/obj/machinery/power/solar_control{ + dir = 1; + id = "aftport"; + name = "Port Quarter Solar Control" + }, +/turf/open/floor/plating, +/area/station/maintenance/solars/port/aft) +"uMB" = ( +/obj/effect/turf_decal/loading_area/white{ + dir = 4 + }, +/obj/effect/turf_decal/bot_white, +/obj/effect/decal/cleanable/oil/streak, +/obj/item/robot_suit, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/robotics/lab) +"uMO" = ( +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"uMQ" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/ai_monitored/command/nuke_storage) +"uMX" = ( +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/department/bridge) +"uNe" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"uNg" = ( +/turf/open/floor/carpet/purple, +/area/station/service/barber) +"uNm" = ( +/obj/effect/turf_decal/tile/green/opposingcorners, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/checker{ + dir = 1 + }, +/area/station/hallway/primary/central/fore) +"uNp" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"uNs" = ( +/obj/effect/spawner/random/engineering/tank, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"uNz" = ( +/obj/item/clothing/gloves/color/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/structure/closet/toolcloset, +/obj/item/storage/belt/utility, +/obj/machinery/light/warm/directional/west, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/effect/mapping_helpers/apc/cell_10k, +/turf/open/floor/iron, +/area/station/engineering/main) +"uNF" = ( +/obj/effect/spawner/random/structure/crate, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"uNL" = ( +/obj/effect/spawner/random/trash/cigbutt, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"uNN" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/tile, +/area/station/commons/lounge) +"uNS" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/portables_connector{ + dir = 1 + }, +/obj/effect/turf_decal/bot_white, +/obj/effect/spawner/random/engineering/canister, +/turf/open/floor/iron, +/area/station/construction/mining/aux_base) +"uNW" = ( +/obj/machinery/door/airlock/cmo{ + name = "Chief Medical Officer's Quarters" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/cmo, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/cmo) +"uOe" = ( +/obj/structure/transit_tube/crossing, +/obj/structure/lattice, +/turf/open/space/openspace, +/area/space/nearstation) +"uOj" = ( +/turf/open/floor/glass, +/area/station/service/kitchen) +"uOm" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/command/heads_quarters/hos) +"uOq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/nanite_program_hub, +/turf/open/floor/iron/dark/small, +/area/station/science/circuits) +"uOw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden, +/obj/item/wrench/medical, +/obj/structure/table/glass, +/obj/machinery/airalarm/directional/east, +/obj/machinery/light/cold/no_nightlight/directional/east, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/treatment_center) +"uOB" = ( +/obj/structure/table, +/obj/machinery/cell_charger{ + pixel_y = 3 + }, +/obj/item/stock_parts/cell/high, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/requests_console/auto_name/directional/south, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/item/toy/figure/miner{ + pixel_y = 13; + pixel_x = 7 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) +"uOE" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/engineering/atmos/hfr_room) +"uOI" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"uOJ" = ( +/turf/closed/wall, +/area/station/medical/morgue) +"uOR" = ( +/obj/structure/chair, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation) +"uOS" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark, +/area/station/commons/storage/tools) +"uPa" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "Atmospherics Blast Door" + }, +/turf/open/floor/plating, +/area/station/engineering/atmos/upper) +"uPj" = ( +/turf/closed/wall, +/area/station/cargo/sorting) +"uPX" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/command/storage/eva) +"uPZ" = ( +/obj/machinery/light/warm/directional/north, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/wood, +/area/station/commons/vacant_room/office) +"uQd" = ( +/obj/item/radio/intercom/directional/north, +/obj/machinery/light/red/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown/half{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/bitrunning/den) +"uQe" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 6 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"uQf" = ( +/obj/effect/turf_decal/tile/bar/fourcorners, +/obj/machinery/firealarm/directional/north, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/checker, +/area/station/service/kitchen/diner) +"uQk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"uQp" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/commons/dorms) +"uQz" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) +"uQA" = ( +/obj/machinery/button/door/directional/south{ + id = "kitchen_counter"; + pixel_x = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/warm/directional/south, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"uQZ" = ( +/obj/effect/turf_decal/tile/yellow/half{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/smooth_edge{ + dir = 4 + }, +/area/station/medical/pharmacy) +"uRj" = ( +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/maintenance/port/fore) +"uRp" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"uRK" = ( +/obj/machinery/light/floor/has_bulb, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/neutral, +/obj/effect/turf_decal/trimline/neutral, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"uRM" = ( +/obj/structure/table, +/obj/item/plate, +/obj/effect/turf_decal/tile/bar/fourcorners, +/obj/machinery/light/warm/directional/south, +/obj/machinery/status_display/evac/directional/west, +/obj/item/food/poutine{ + pixel_y = 3 + }, +/turf/open/floor/iron/checker, +/area/station/service/kitchen/diner) +"uRQ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/turf_decal/siding/white, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"uRY" = ( +/obj/structure/sign/departments/aisat/directional/west, +/obj/machinery/camera/directional/south{ + c_tag = "MiniSat Pod Access"; + network = list("minisat") + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"uSh" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/machinery/composters, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"uSm" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/structure/window/spawner/directional/west, +/obj/machinery/door/poddoor/shutters/window{ + dir = 1; + id = "commissary"; + name = "Vacant Commissary Shutters" + }, +/turf/open/floor/plating, +/area/station/commons/vacant_room/commissary) +"uSz" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron, +/area/station/maintenance/starboard/greater) +"uSA" = ( +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"uSJ" = ( +/obj/effect/turf_decal/bot, +/obj/item/stock_parts/subspace/transmitter{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/item/stock_parts/subspace/transmitter{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/item/stock_parts/subspace/amplifier{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/stock_parts/subspace/amplifier, +/obj/item/stock_parts/subspace/amplifier{ + pixel_x = -4; + pixel_y = -3 + }, +/obj/structure/rack/shelf, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/storage/tcomms) +"uSM" = ( +/obj/structure/rack, +/obj/item/tank/internals/anesthetic, +/obj/item/clothing/mask/gas, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"uST" = ( +/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/machinery/light/warm/directional/east, +/obj/machinery/camera/directional/north{ + c_tag = "Cargo - Staircase" + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"uSV" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/camera/motion/directional/south{ + c_tag = "MiniSat AI Chamber Entrance"; + network = list("minisat") + }, +/turf/open/floor/iron/dark/smooth_half, +/area/station/ai_monitored/turret_protected/aisat_interior) +"uTg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 1 + }, +/obj/machinery/light/warm/directional/east, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible/layer4, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"uTp" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + name = "Plasma to Pure" + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"uTs" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/station/hallway/secondary/exit/departure_lounge) +"uTy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/large, +/area/station/service/hydroponics) +"uTA" = ( +/obj/structure/cable, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/kitchen/diagonal, +/area/station/maintenance/abandon_diner) +"uTM" = ( +/obj/effect/turf_decal/siding/white{ + dir = 9 + }, +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/obj/structure/disposalpipe/junction, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/white/diagonal, +/area/station/commons/toilet/restrooms) +"uTT" = ( +/obj/effect/turf_decal/stripes/red/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark_red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom/prison/directional/east, +/obj/machinery/camera/directional/east{ + c_tag = "Security - Permabrig Workout"; + network = list("ss13","prison") + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/structure/closet/crate/bin, +/obj/effect/spawner/random/contraband/prison, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"uTW" = ( +/obj/machinery/stasis{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue/full, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/treatment_center) +"uUj" = ( +/obj/structure/railing, +/obj/machinery/door/firedoor/border_only, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"uUp" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "Cell3Privacy"; + name = "curtain" + }, +/turf/open/floor/plating, +/area/station/security/prison) +"uUr" = ( +/turf/closed/wall/r_wall, +/area/station/security/lockers) +"uUx" = ( +/obj/machinery/shower/directional/east, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/structure/drain, +/turf/open/floor/iron/showroomfloor, +/area/station/engineering/lobby) +"uUz" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white, +/area/station/science/xenobiology) +"uUD" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/spawner/random/trash/garbage, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"uUR" = ( +/turf/closed/wall/r_wall, +/area/station/ai_monitored/command/storage/eva) +"uUU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/department/electrical) +"uVe" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"uVf" = ( +/obj/effect/turf_decal/stripes/red/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/security/execution/education) +"uVG" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/airalarm/directional/north, +/obj/machinery/light/warm/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"uVZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/station/commons/vacant_room/office) +"uWe" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/command/heads_quarters/hos) +"uWj" = ( +/obj/structure/closet/crate/coffin, +/obj/machinery/door/window/right/directional/north{ + name = "Coffin Storage"; + req_access = list("chapel_office") + }, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/chapel/funeral) +"uWq" = ( +/obj/structure/rack, +/obj/effect/spawner/random/engineering/flashlight, +/obj/item/storage/bag/trash/filled, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"uWK" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/station/construction/mining/aux_base) +"uXb" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"uXo" = ( +/obj/machinery/door/window/brigdoor/left/directional/north{ + req_access = list("security"); + name = "Cargo Cell" + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/security/checkpoint/supply) +"uXv" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/chair/office, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/security/checkpoint/service) +"uXw" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Holodeck Access" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured_large, +/area/station/commons/fitness/recreation) +"uXH" = ( +/obj/effect/turf_decal/siding/thinplating_new/light, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/diagonal, +/area/station/common/spa) +"uXI" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/structure/railing{ + dir = 10 + }, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/ai) +"uXN" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/chair, +/turf/open/floor/catwalk_floor/iron, +/area/station/security/checkpoint/science/research) +"uXR" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/iron/dark, +/area/station/medical/treatment_center) +"uYc" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/camera/directional/west{ + c_tag = "Xenobiology Lab - Cytology Pen"; + network = list("ss13","xeno","rd") + }, +/turf/open/floor/glass/reinforced, +/area/station/science/cytology) +"uYi" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"uYn" = ( +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ + color = "#0000ff"; + name = "Supply multi deck pipe adapter"; + dir = 8 + }, +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/openspace, +/area/station/engineering/atmos/upper) +"uYs" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral/full, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/smooth_large, +/area/station/cargo/lobby) +"uYt" = ( +/obj/machinery/atmospherics/pipe/multiz/violet/visible, +/obj/effect/turf_decal/box, +/turf/open/floor/engine, +/area/station/engineering/atmos) +"uYy" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable/multilayer/multiz, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"uYI" = ( +/obj/machinery/power/tracker, +/obj/structure/cable, +/turf/open/floor/iron/solarpanel/airless, +/area/station/solars/starboard/aft) +"uYL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/multiz/green/visible{ + dir = 4 + }, +/obj/machinery/light/warm/directional/north, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/main) +"uYM" = ( +/obj/structure/stairs/east, +/turf/open/floor/plating, +/area/station/tcommsat/computer) +"uYN" = ( +/obj/item/assembly/igniter{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/assembly/signaler{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/screwdriver{ + pixel_y = -3 + }, +/obj/structure/table, +/turf/open/floor/plating, +/area/station/maintenance/starboard/lesser) +"uYV" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/service/chapel) +"uZh" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"uZk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atm/directional/south, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"uZr" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/primary/central/aft) +"uZt" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/storage) +"uZw" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/cargo/lobby) +"uZB" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/visible{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible/layer1{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible/layer5{ + dir = 5 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"uZG" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"uZH" = ( +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/medical/treatment_center) +"uZS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/corner, +/area/station/hallway/primary/central) +"uZU" = ( +/obj/machinery/light/cold/no_nightlight/directional/south, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"uZV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"uZY" = ( +/obj/item/rack_parts, +/obj/effect/spawner/random/engineering/tool, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"vab" = ( +/obj/structure/table/wood, +/obj/machinery/barsign/directional/north, +/obj/effect/turf_decal/bot_white, +/obj/machinery/reagentgrinder{ + pixel_y = 7 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/bar) +"val" = ( +/obj/effect/turf_decal/siding/white{ + dir = 6 + }, +/obj/effect/turf_decal/box/white, +/obj/structure/closet/wardrobe/white, +/obj/item/clothing/under/suit/black/skirt, +/obj/item/clothing/under/suit/black, +/obj/effect/spawner/random/clothing/kittyears_or_rabbitears, +/obj/effect/landmark/start/hangover/closet, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) +"vaq" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"vaC" = ( +/obj/structure/railing, +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/command/gateway) +"vaE" = ( +/obj/effect/turf_decal/tile/dark_red{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/button/door/directional/north{ + id = "Skynet_launch"; + name = "Mech Bay Door Control"; + req_access = list("robotics"); + pixel_x = 24 + }, +/turf/open/floor/iron/dark, +/area/station/science/robotics/mechbay) +"vaF" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners{ + dir = 1 + }, +/obj/structure/chair, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/central) +"vaN" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"vbb" = ( +/obj/machinery/door/window/elevator/left/directional/north{ + elevator_mode = 1; + elevator_linked_id = "arrivals_lift" + }, +/turf/open/floor/glass/reinforced, +/area/station/hallway/secondary/entry) +"vbi" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 1 + }, +/area/station/security/holding_cell) +"vbk" = ( +/turf/closed/wall/r_wall, +/area/station/command/teleporter) +"vbr" = ( +/obj/structure/rack/shelf, +/obj/item/assembly/timer{ + pixel_x = 1 + }, +/obj/item/assembly/timer{ + pixel_x = -4 + }, +/obj/item/assembly/timer{ + pixel_x = 5 + }, +/obj/item/assembly/timer{ + pixel_x = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/camera/directional/east{ + c_tag = "Science - Ordnance Launch Site"; + network = list("ss13","rd") + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/engine, +/area/station/science/ordnance/testlab) +"vbB" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/security/brig/entrance) +"vbF" = ( +/obj/item/radio{ + desc = "An old handheld radio. You could use it, if you really wanted to."; + icon_state = "radio"; + name = "old radio" + }, +/obj/effect/mapping_helpers/broken_floor, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) +"vbH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/door/window/brigdoor/left/directional/east{ + name = "Justice Chamber"; + req_access = list("security") + }, +/obj/machinery/door/window/brigdoor/right/directional/west{ + name = "Justice Chamber"; + req_access = list("security") + }, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red/real_red/half/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/security/execution/education) +"vbN" = ( +/turf/closed/wall/r_wall, +/area/station/command/heads_quarters/blueshield) +"vbO" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/dark_blue/half{ + dir = 1 + }, +/obj/machinery/airalarm/directional/north, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark/smooth_half, +/area/station/security/interrogation) +"vcb" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/solars/starboard/fore) +"vcn" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"vcr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"vcy" = ( +/obj/machinery/camera/directional/south{ + c_tag = "MiniSat External North-East"; + network = list("minisat") + }, +/turf/open/misc/asteroid/moon/airless, +/area/station/asteroid) +"vcM" = ( +/obj/docking_port/stationary/laborcamp_home/kilo, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"vcO" = ( +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/siding/green{ + dir = 8 + }, +/obj/machinery/light/directional/north, +/obj/structure/table, +/obj/machinery/microwave{ + pixel_y = 6 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/hallway/secondary/service) +"vcT" = ( +/obj/effect/turf_decal/tile/yellow/half{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/smooth_edge{ + dir = 4 + }, +/area/station/medical/pharmacy) +"vdI" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"vdM" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/diagonal, +/area/station/security/courtroom) +"vdR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Escape Pods" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/exit/escape_pod) +"vdZ" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners, +/turf/open/floor/iron/vaporwave, +/area/station/maintenance/department/security/upper) +"vee" = ( +/obj/structure/disposalpipe/sorting/mail/flip, +/obj/effect/mapping_helpers/mail_sorting/engineering/general, +/obj/effect/mapping_helpers/mail_sorting/engineering/ce_office, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"vei" = ( +/obj/effect/spawner/random/engineering/atmospherics_portable, +/obj/structure/sign/poster/random/directional/south, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"ven" = ( +/turf/closed/wall, +/area/station/commons/fitness/recreation) +"veq" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/maintenance/abandon_diner) +"veu" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/medical/storage) +"veA" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 8 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/grass, +/area/station/security/prison) +"veB" = ( +/obj/structure/sign/warning/secure_area/directional/north, +/obj/structure/marker_beacon/burgundy, +/obj/machinery/light/red/directional/west, +/obj/machinery/artifact_zapper{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/explab) +"veJ" = ( +/obj/effect/turf_decal/lunar_sand/plating, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"veM" = ( +/obj/structure/lattice, +/obj/structure/grille/broken, +/turf/open/space/basic, +/area/space/nearstation) +"veQ" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/restraints/handcuffs{ + pixel_y = 3 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"veW" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/tile, +/area/station/commons/lounge) +"vfo" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/spawner/random/engineering/tracking_beacon, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"vfp" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/openspace, +/area/station/maintenance/aft/upper) +"vfq" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/flashlight/lamp/green{ + pixel_y = 14 + }, +/obj/item/food/grown/poppy, +/obj/item/food/grown/poppy{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/food/grown/poppy{ + pixel_x = 5; + pixel_y = -2 + }, +/turf/open/floor/wood/large, +/area/station/service/chapel/office) +"vfx" = ( +/turf/open/openspace, +/area/station/service/kitchen/diner) +"vfE" = ( +/obj/structure/bed/double{ + dir = 4 + }, +/obj/item/bedsheet/hop/double{ + dir = 1 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/carpet/executive, +/area/station/command/heads_quarters/hop) +"vfJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/structure/closet/crate/bin{ + name = "biowaste bin" + }, +/obj/effect/turf_decal/box, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/xenobiology) +"vfN" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/folder/blue, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"vfO" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/station/maintenance/starboard/greater) +"vfW" = ( +/obj/structure/railing, +/obj/effect/turf_decal/lunar_sand, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/glass/reinforced, +/area/station/science/xenobiology) +"vgo" = ( +/obj/effect/turf_decal/tile/green/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/checker, +/area/station/hallway/primary/central) +"vgq" = ( +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible{ + dir = 6 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/openspace, +/area/space/nearstation) +"vgr" = ( +/obj/structure/trash_pile, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"vgz" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 8 + }, +/obj/structure/chair/stool/bar/directional/east, +/turf/open/floor/iron/checker, +/area/station/maintenance/abandon_diner) +"vgH" = ( +/obj/structure/rack/shelf, +/obj/effect/spawner/random/decoration/carpet, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light/directional/south, +/turf/open/floor/iron, +/area/station/commons/vacant_room/commissary) +"vgK" = ( +/obj/effect/turf_decal/tile/green/diagonal_centre, +/turf/open/floor/iron/dark/diagonal, +/area/station/hallway/secondary/service) +"vgZ" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/sign/warning/no_smoking/directional/west, +/obj/structure/sign/warning/secure_area/directional/east, +/obj/machinery/door/airlock/atmos{ + name = "Atmoshpherics Engine Access" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/obj/machinery/duct, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos/office) +"vhd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"vhg" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/structure/cable, +/obj/machinery/firealarm/directional/north, +/obj/machinery/camera/directional/north{ + c_tag = "Engineering - Supermatter Room Fore"; + network = list("ss13","engine") + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"vhm" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 9 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"vhr" = ( +/obj/machinery/telecomms/server/presets/security, +/turf/open/floor/circuit/telecomms/mainframe, +/area/station/tcommsat/server) +"vhx" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible/layer1, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible/layer5, +/turf/open/space/basic, +/area/space/nearstation) +"vhF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/virology) +"vhH" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible/layer1, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible/layer5, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"vhL" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/secondary/entry) +"vhZ" = ( +/obj/machinery/door/airlock/hatch{ + name = "Maintenance Hatch" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"vid" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/station/science/xenobiology) +"vif" = ( +/obj/structure/hedge, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/entry) +"vim" = ( +/obj/machinery/light/warm/directional/west, +/turf/open/openspace, +/area/station/engineering/main) +"vir" = ( +/obj/structure/window/reinforced/tinted/fulltile, +/obj/structure/hedge/opaque, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/rd) +"viw" = ( +/obj/structure/girder, +/obj/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/department/bridge) +"viz" = ( +/obj/effect/turf_decal/tile/blue/full, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/bed/roller{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/treatment_center) +"viD" = ( +/obj/machinery/fax{ + fax_name = "Consultant's Office"; + name = "Consultant's Fax Machine"; + pixel_y = 3 + }, +/obj/structure/table, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/nt_rep) +"viE" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"viG" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/trash_pile, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"viJ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/item/radio/intercom/directional/south, +/obj/structure/table/wood/poker, +/obj/item/toy/cards/deck{ + pixel_y = 4; + pixel_x = -4 + }, +/obj/item/storage/dice{ + pixel_y = 2; + pixel_x = 6 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/wood/tile, +/area/station/service/bar) +"vje" = ( +/obj/effect/landmark/start/virologist, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/virology) +"vjj" = ( +/obj/structure/table/wood, +/obj/item/newspaper{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/newspaper, +/obj/item/clothing/glasses/regular, +/turf/open/floor/carpet/green, +/area/station/service/library/lounge) +"vjq" = ( +/obj/machinery/computer/atmos_alert{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"vjH" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/service/abandoned_gambling_den) +"vjO" = ( +/obj/machinery/light/cold/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/virology) +"vjX" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plating, +/area/station/security/corrections_officer) +"vkg" = ( +/obj/machinery/atmospherics/pipe/smart/simple/brown/visible{ + dir = 1 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"vko" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack/shelf, +/obj/effect/spawner/random/maintenance/two, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"vky" = ( +/turf/closed/wall/mineral/plastitanium, +/area/space/nearstation) +"vkz" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "genetics_shutters"; + name = "Genetics Shutters" + }, +/turf/open/floor/plating, +/area/station/science/genetics) +"vkE" = ( +/obj/machinery/atmospherics/components/tank/air, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/aisat/equipment) +"vkG" = ( +/obj/machinery/newscaster/directional/north, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/obj/machinery/photocopier, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/command/heads_quarters/hop) +"vkO" = ( +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/station/service/chapel) +"vkR" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/firealarm/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/blueshield) +"vlh" = ( +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"vly" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, +/obj/machinery/door/airlock/external{ + name = "Xenobiology External Airlock" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, +/turf/open/floor/plating, +/area/station/maintenance/department/science/xenobiology) +"vlI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"vlM" = ( +/turf/open/misc/asteroid/moon, +/area/station/science/xenobiology) +"vlU" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/wood, +/area/station/maintenance/aft/greater) +"vlY" = ( +/obj/effect/turf_decal/tile/yellow/half, +/obj/effect/turf_decal/tile/blue/half, +/obj/effect/turf_decal/bot, +/obj/machinery/plumbing/synthesizer{ + dir = 8; + reagent_id = /datum/reagent/water + }, +/turf/open/floor/iron/edge, +/area/station/engineering/main) +"vmn" = ( +/obj/effect/turf_decal/tile/brown/half{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow/half{ + dir = 1 + }, +/obj/machinery/button/elevator/directional/east{ + id = "cargo_lobbylift"; + req_access = list("cargo"); + pixel_x = 28; + pixel_y = -2 + }, +/turf/open/floor/iron/dark/smooth_half, +/area/station/cargo/lobby) +"vmp" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/folder/red{ + pixel_y = 4 + }, +/obj/item/hand_labeler{ + pixel_y = 2 + }, +/obj/machinery/door/window/brigdoor/left/directional/south{ + name = "Customs Desk"; + req_one_access = list("security","hop") + }, +/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/entry) +"vmq" = ( +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"vmw" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners, +/obj/item/kirbyplants/organic/plant10, +/obj/machinery/digital_clock/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/cafeteria{ + dir = 8 + }, +/area/station/service/salon) +"vmE" = ( +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/station/engineering/atmos) +"vmH" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"vne" = ( +/mob/living/carbon/human/species/monkey{ + dir = 8 + }, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/cable, +/obj/effect/turf_decal/weather/dirt, +/turf/open/floor/grass, +/area/station/medical/virology) +"vnj" = ( +/obj/effect/turf_decal/box/corners, +/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible, +/obj/machinery/meter, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"vnn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron/white, +/area/station/medical/virology) +"vno" = ( +/obj/effect/landmark/start/hangover, +/obj/machinery/station_map/engineering/directional/north, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"vnr" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"vnt" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/window/right/directional/west{ + name = "Cytology Containment Pen"; + req_access = list("xenobiology") + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/misc/asteroid/moon, +/area/station/science/cytology) +"vny" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners{ + dir = 1 + }, +/obj/machinery/camera/directional/west{ + c_tag = "Central Primary Hallway - Port"; + dir = 10 + }, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/hallway/primary/central) +"vnN" = ( +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/obj/effect/turf_decal/siding/red{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/machinery/computer/crew{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/security/warden) +"vnW" = ( +/obj/machinery/computer/apc_control{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/obj/machinery/camera/directional/west{ + c_tag = "Engineering - Chief Engineer's Office"; + network = list("ss13","engine") + }, +/obj/machinery/light/warm/directional/south, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/carpet/black, +/area/station/command/heads_quarters/ce) +"voa" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/machinery/light/warm/directional/north, +/obj/machinery/photocopier, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/wood, +/area/station/command/heads_quarters/cmo) +"voq" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/meter/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/side{ + dir = 1 + }, +/area/station/science/ordnance) +"voE" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/station/medical/psychology) +"voI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"voN" = ( +/obj/machinery/atmospherics/components/trinary/mixer/flipped{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron, +/area/station/maintenance/port/aft) +"voX" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Breakroom Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/command/meeting_room/council) +"voY" = ( +/obj/machinery/camera/directional/east{ + c_tag = "Arrivals - Public Mining Dock" + }, +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/commons/storage/mining) +"vpF" = ( +/obj/structure/lattice, +/obj/structure/railing{ + dir = 9 + }, +/turf/open/space/basic, +/area/space/nearstation) +"vpG" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/eighties, +/area/station/common/arcade) +"vpS" = ( +/obj/effect/turf_decal/trimline/green/filled/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/green/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_corner, +/area/station/service/hydroponics) +"vpU" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 8 + }, +/turf/open/space/basic, +/area/space/nearstation) +"vpW" = ( +/obj/machinery/conveyor{ + id = "QMLoad2" + }, +/obj/effect/turf_decal/stripes/full, +/obj/machinery/light/warm/directional/east, +/turf/open/floor/plating, +/area/station/cargo/storage) +"vqa" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair/wood, +/obj/effect/landmark/start/hangover, +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood/tile, +/area/station/commons/lounge) +"vqc" = ( +/obj/structure/lattice, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/window/spawner/directional/east, +/obj/structure/window/spawner/directional/west, +/obj/structure/window/spawner/directional/north, +/turf/open/openspace, +/area/station/security/brig/upper) +"vqj" = ( +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/science/robotics/lab) +"vqp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown/half{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/bitrunning/den) +"vqA" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Atmospherics Storage Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/engineering/atmos/storage) +"vqG" = ( +/obj/structure/sign/poster/random/directional/north, +/obj/structure/cable, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"vqJ" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/service/hydroponics) +"vqQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/escape_pod) +"vqS" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/dark/end{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/command) +"vre" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/rnd/destructive_analyzer, +/turf/open/floor/glass/reinforced, +/area/station/science/research) +"vrf" = ( +/obj/effect/turf_decal/tile/blue/half{ + dir = 8 + }, +/obj/machinery/computer/operating{ + dir = 8 + }, +/obj/machinery/vending/wallmed/directional/east, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/maintenance/abandon_surgery) +"vrL" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "surg_privacy"; + name = "Surgery Privacy Shutters"; + dir = 1 + }, +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/medical/surgery/theatre) +"vrO" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/two, +/obj/item/poster/random_contraband{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/poster/random_contraband, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"vrT" = ( +/obj/effect/turf_decal/tile/neutral/half{ + dir = 4 + }, +/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/medical/morgue) +"vsa" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/accessory/armband/deputy, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/office) +"vsf" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"vsp" = ( +/obj/machinery/door/airlock/virology/glass{ + name = "Isolation A" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/medical/virology, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/virology) +"vsr" = ( +/obj/machinery/button/door/directional/south{ + id = "Toilet2"; + name = "Lock Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/white/small, +/area/station/commons/toilet/restrooms) +"vsv" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"vsB" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/primary/central/aft) +"vsE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/firealarm/directional/west, +/obj/structure/table/reinforced, +/obj/machinery/fax{ + fax_name = "Engineering Lobby"; + name = "Engineering Lobby Fax Machine"; + pixel_y = 6 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/lobby) +"vsJ" = ( +/obj/machinery/door/airlock/hatch{ + name = "Maintenance Hatch" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"vsQ" = ( +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/security/holding_cell) +"vsY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood, +/area/station/commons/vacant_room/office) +"vtk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) +"vtq" = ( +/turf/open/floor/glass/reinforced, +/area/station/hallway/secondary/entry) +"vtt" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"vtA" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 4 + }, +/mob/living/carbon/human/species/monkey, +/obj/machinery/light/warm/directional/north, +/turf/open/floor/grass, +/area/station/science/genetics) +"vus" = ( +/obj/machinery/shower/directional/south, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/iron/freezer, +/area/station/security/prison) +"vuw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/tile, +/area/station/commons/lounge) +"vuC" = ( +/obj/item/clothing/accessory/medal/gold/ordom, +/obj/item/clothing/gloves/combat, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/nanotrasen_consultant, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/nt_rep) +"vuD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/ai_monitored/command/storage/eva) +"vuN" = ( +/obj/effect/turf_decal/trimline/dark_red/line{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/security/prison) +"vva" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + name = "Arrival Airlock" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"vvb" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/plating, +/area/station/engineering/gravity_generator) +"vvg" = ( +/obj/item/storage/fancy/cigarettes/cigars{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/item/storage/fancy/cigarettes/cigars/havana{ + pixel_x = 2; + pixel_y = 8 + }, +/obj/item/storage/fancy/cigarettes/cigars/cohiba{ + pixel_x = 2; + pixel_y = 10 + }, +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood/end{ + dir = 1 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/wood/tile, +/area/station/service/bar) +"vvo" = ( +/turf/open/floor/carpet, +/area/station/commons/vacant_room/office) +"vvr" = ( +/turf/open/openspace, +/area/station/commons/dorms) +"vvy" = ( +/obj/effect/turf_decal/bot_white/left, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/gravity_generator) +"vvF" = ( +/obj/structure/table, +/obj/item/food/energybar, +/obj/effect/turf_decal/tile/dark/full, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/prison) +"vvQ" = ( +/obj/item/stock_parts/micro_laser, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/micro_laser/high, +/obj/item/stock_parts/micro_laser/high, +/obj/item/stock_parts/micro_laser/high, +/obj/structure/table/reinforced, +/obj/item/stock_parts/micro_laser/high, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/storage/tcomms) +"vvV" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/structure/railing, +/obj/item/clothing/gloves/cargo_gauntlet, +/obj/item/clothing/gloves/cargo_gauntlet{ + pixel_y = 3 + }, +/obj/item/clothing/gloves/cargo_gauntlet{ + pixel_y = 6 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"vwB" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"vwD" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/sorting/mail{ + dir = 1 + }, +/obj/effect/mapping_helpers/mail_sorting/service/kitchen, +/obj/effect/mapping_helpers/mail_sorting/service/hydroponics, +/obj/effect/mapping_helpers/mail_sorting/service/library, +/obj/effect/mapping_helpers/mail_sorting/service/dormitories, +/obj/effect/mapping_helpers/mail_sorting/science/experimentor_lab, +/obj/effect/mapping_helpers/mail_sorting/science/genetics, +/obj/effect/mapping_helpers/mail_sorting/science/ordnance, +/obj/effect/mapping_helpers/mail_sorting/science/rd_office, +/obj/effect/mapping_helpers/mail_sorting/science/research, +/obj/effect/mapping_helpers/mail_sorting/science/xenobiology, +/obj/effect/mapping_helpers/mail_sorting/science/robotics, +/obj/effect/mapping_helpers/mail_sorting/security/hos_office, +/obj/effect/mapping_helpers/mail_sorting/security/general, +/obj/effect/mapping_helpers/mail_sorting/security/detectives_office, +/obj/effect/mapping_helpers/mail_sorting/engineering/general, +/obj/effect/mapping_helpers/mail_sorting/engineering/ce_office, +/obj/effect/mapping_helpers/mail_sorting/engineering/atmospherics, +/obj/effect/mapping_helpers/mail_sorting/service/law_office, +/obj/effect/mapping_helpers/mail_sorting/service/hop_office, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"vwQ" = ( +/obj/structure/railing, +/turf/open/openspace, +/area/station/security/brig/upper) +"vwT" = ( +/obj/structure/rack/gunrack, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/effect/spawner/armory_spawn/mod_lasers_small, +/turf/open/floor/engine, +/area/station/ai_monitored/security/armory) +"vxo" = ( +/turf/open/openspace, +/area/station/medical/psychology) +"vxB" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/secondary/command) +"vxN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"vxQ" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"vye" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/command/gateway, +/obj/machinery/door/airlock/command/glass{ + name = "Gateway Access"; + id_tag = "gatewaydoor" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/gateway) +"vyh" = ( +/obj/machinery/station_map/engineering/directional/west, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"vyv" = ( +/obj/effect/spawner/random/structure/steam_vent, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"vyy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"vyA" = ( +/obj/machinery/door/airlock/external{ + name = "Mining Dock Airlock" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/mining, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "mining-dock" + }, +/turf/open/floor/plating, +/area/station/cargo/miningdock) +"vyH" = ( +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/general/visible{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"vyN" = ( +/obj/effect/turf_decal/stripes/blue/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/blue/line{ + dir = 4 + }, +/obj/machinery/light/blacklight/directional/south, +/turf/open/floor/engine/hull, +/area/space/nearstation) +"vyO" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/wood/tile, +/area/station/commons/lounge) +"vyT" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "AI Chamber" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "AI Chamber Entrance Shutters"; + name = "AI Chamber Entrance Shutters" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/iron/dark/smooth_large, +/area/station/ai_monitored/turret_protected/ai) +"vzd" = ( +/obj/structure/sign/warning/radiation/rad_area/directional/north, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Atmospherics - Lobby"; + network = list("ss13","engine"); + dir = 9 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos/office) +"vzo" = ( +/obj/effect/turf_decal/box/corners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"vzu" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/engineering/atmos/hfr_room) +"vzE" = ( +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/table, +/obj/item/storage/box/prisoner, +/obj/item/restraints/handcuffs, +/obj/machinery/light/cold/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/processing) +"vzF" = ( +/obj/machinery/camera/directional/south{ + c_tag = "Medbay - Chemistry Upper South"; + network = list("ss13","medbay") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"vzM" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/structure/rack/shelf, +/obj/effect/spawner/random/medical/minor_healing, +/turf/open/floor/iron/white, +/area/station/medical/pharmacy) +"vzQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/cargo/storage) +"vzR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"vAe" = ( +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"vAh" = ( +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plastic, +/area/station/common/carpshop) +"vAr" = ( +/obj/structure/table/reinforced, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"vAv" = ( +/obj/machinery/light/floor/has_bulb, +/obj/effect/turf_decal/trimline/neutral, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"vAB" = ( +/obj/item/storage/pill_bottle/happinesspsych{ + pixel_x = -4; + pixel_y = -1 + }, +/obj/structure/closet/secure_closet/freezer/empty/open, +/obj/effect/turf_decal/bot, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/item/reagent_containers/cup/glass/bottle/juice/cream, +/obj/item/reagent_containers/condiment/milk, +/obj/item/reagent_containers/condiment/soymilk, +/obj/item/storage/box/coffeepack/robusta, +/obj/item/storage/box/coffeepack, +/obj/item/reagent_containers/condiment/sugar{ + pixel_y = 4 + }, +/obj/item/reagent_containers/condiment/flour, +/obj/item/reagent_containers/condiment/flour, +/obj/item/reagent_containers/condiment/flour, +/obj/item/reagent_containers/condiment/soymilk, +/obj/item/reagent_containers/condiment/soymilk, +/obj/item/storage/fancy/egg_box, +/obj/item/reagent_containers/cup/bottle/caramel, +/obj/item/food/chocolatebar, +/obj/item/food/chocolatebar, +/obj/item/food/chocolatebar, +/obj/item/reagent_containers/cup/beaker/large, +/turf/open/floor/wood/tile, +/area/station/hallway/secondary/exit/departure_lounge) +"vAK" = ( +/obj/structure/window/reinforced/spawner/directional/west{ + layer = 2.9 + }, +/obj/structure/chair{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/courtroom) +"vAP" = ( +/obj/effect/turf_decal/lunar_sand, +/obj/effect/turf_decal/lunar_sand/plating, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"vAU" = ( +/obj/effect/turf_decal/tile/dark_red/diagonal_centre, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/kirbyplants/organic/plant21, +/turf/open/floor/iron/diagonal, +/area/station/security/courtroom) +"vBd" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/machinery/atmospherics/pipe/smart/simple/violet/visible{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/engineering/atmos/upper) +"vBh" = ( +/obj/effect/spawner/random/structure/crate, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"vBn" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/spawner/random/trash/garbage, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"vBo" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/machinery/recharger{ + pixel_x = -7; + pixel_y = 4 + }, +/obj/item/reagent_containers/cup/glass/bottle/beer/light{ + pixel_y = 12; + pixel_x = 4 + }, +/obj/structure/reagent_dispensers/wall/peppertank/directional/north, +/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/iron, +/area/station/security/checkpoint/supply) +"vBp" = ( +/turf/open/openspace, +/area/station/ai_monitored/turret_protected/aisat_interior) +"vBv" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/structure/chair/stool/directional/west, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"vBz" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/storage) +"vBA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/commons/dorms) +"vBD" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/obj/structure/closet/secure_closet/warden, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 8 + }, +/area/station/security/warden) +"vBE" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/structure/lattice/catwalk, +/obj/machinery/camera/directional/east{ + c_tag = "Cargo - Office" + }, +/obj/machinery/firealarm/directional/east, +/turf/open/openspace, +/area/station/cargo/office) +"vBN" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, +/obj/machinery/door/airlock/research/glass/incinerator/ordmix_interior{ + name = "Mixing Room Airlock" + }, +/turf/open/floor/engine/vacuum, +/area/station/science/ordnance/freezerchamber) +"vBO" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "outerbrig"; + name = "Brig Entrance" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/all/security/entrance, +/obj/effect/turf_decal/trimline/red/filled/warning, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/security/brig/entrance) +"vCf" = ( +/obj/structure/stairs/south, +/turf/open/floor/plating, +/area/station/security/eva) +"vCg" = ( +/obj/effect/turf_decal/lunar_sand, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/glass/reinforced, +/area/station/science/xenobiology) +"vCx" = ( +/obj/machinery/door/poddoor/shutters{ + id = "maint-toggle1"; + name = "Maintenance Secure Shutters"; + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"vCD" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/science/ordnance/burnchamber) +"vCH" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/pharmacy) +"vCV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"vCW" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/sign/poster/contraband/borg_fancy_1/directional/north, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron, +/area/station/science/research/abandoned) +"vDi" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/paramedic) +"vDj" = ( +/obj/item/storage/bag/trash/filled, +/obj/effect/spawner/random/trash/grime, +/obj/effect/spawner/random/engineering/flashlight, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"vDo" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/iron, +/area/station/maintenance/aft/greater) +"vDq" = ( +/obj/machinery/telecomms/server/presets/common, +/turf/open/floor/circuit/telecomms/mainframe, +/area/station/tcommsat/server) +"vDr" = ( +/obj/effect/landmark/start/hangover, +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plastic, +/area/station/common/carpshop) +"vDs" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/line, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/kitchen/diner) +"vDy" = ( +/obj/machinery/door/airlock/grunge{ + name = "Morgue" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/effect/mapping_helpers/airlock/access/all/medical/morgue, +/turf/open/floor/iron/dark, +/area/station/medical/morgue) +"vDB" = ( +/obj/effect/turf_decal/box/white, +/obj/machinery/light/floor/has_bulb, +/mob/living/basic/slime, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"vDE" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/chemistry) +"vDL" = ( +/turf/open/openspace, +/area/station/ai_monitored/turret_protected/aisat/equipment) +"vDN" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 8; + piping_layer = 4 + }, +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/side{ + dir = 1 + }, +/area/station/science/ordnance) +"vDQ" = ( +/obj/structure/fans/tiny, +/obj/effect/mapping_helpers/airlock/access/any/service/kitchen, +/obj/machinery/door/airlock/freezer{ + critical_machine = 1; + name = "Coldroom" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/service/kitchen/coldroom) +"vDZ" = ( +/obj/machinery/door/airlock/command/glass{ + name = "EVA Storage" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/mapping_helpers/airlock/access/all/command/eva, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/command/storage/eva) +"vEj" = ( +/obj/machinery/door_buttons/airlock_controller{ + idExterior = "virology_airlock_exterior"; + idInterior = "virology_airlock_interior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Console"; + pixel_x = -24; + req_access = list("pathology") + }, +/obj/effect/turf_decal/siding/white, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"vEm" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/service/hydroponics) +"vEo" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos) +"vEp" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) +"vEr" = ( +/obj/machinery/growing/tray, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/abandon_cafeteria/hydro) +"vEH" = ( +/obj/machinery/light/warm/directional/east, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/cargo/drone_bay) +"vEL" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"vEO" = ( +/turf/open/floor/iron, +/area/station/common/laser_tag) +"vFc" = ( +/obj/structure/lattice/catwalk, +/obj/structure/chair/plastic{ + dir = 1 + }, +/turf/open/openspace, +/area/station/medical/pharmacy) +"vFd" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"vFf" = ( +/obj/effect/mapping_helpers/airlock/access/all/service/janitor, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/service/glass{ + name = "Custodial Closet" + }, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/janitor) +"vFg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/red/real_red{ + dir = 4 + }, +/turf/open/floor/iron/white/corner{ + dir = 1 + }, +/area/station/commons/storage/mining) +"vFj" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) +"vFl" = ( +/obj/structure/lattice/catwalk, +/obj/effect/spawner/random/medical/patient_stretcher, +/turf/open/openspace, +/area/station/maintenance/aft/upper) +"vFn" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "tempbrigshutter"; + name = "Holding Cell Shutters" + }, +/turf/open/floor/plating, +/area/station/security/holding_cell) +"vFv" = ( +/obj/effect/spawner/random/trash/moisture_trap, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"vFy" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/dresser, +/obj/item/kirbyplants/organic/plant15{ + pixel_y = 22; + pixel_x = -4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/iron, +/area/station/commons/dorms/room1) +"vFB" = ( +/obj/effect/turf_decal/tile/dark_blue/half{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/security/brig) +"vFC" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"vFE" = ( +/obj/structure/table/reinforced, +/obj/machinery/fax{ + fax_name = "Bridge"; + name = "Bridge Fax Machine"; + pixel_y = 6 + }, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"vFJ" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"vFK" = ( +/obj/item/kirbyplants/synthetic/plant27, +/turf/open/floor/glass/reinforced, +/area/station/science/xenobiology) +"vFN" = ( +/obj/structure/rack/shelf, +/obj/item/assembly/signaler, +/obj/item/assembly/signaler{ + pixel_x = -4 + }, +/obj/item/assembly/signaler{ + pixel_x = 4 + }, +/obj/item/assembly/signaler, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/engine, +/area/station/science/ordnance/testlab) +"vFO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/bridge) +"vFP" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, +/turf/open/floor/plating, +/area/station/maintenance/department/science/xenobiology) +"vFS" = ( +/turf/open/openspace, +/area/station/security/processing) +"vFX" = ( +/obj/machinery/computer/atmos_control/mix_tank, +/obj/effect/turf_decal/box, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"vGc" = ( +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"vGe" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Carp Pro Shop" + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/end, +/obj/effect/turf_decal/box, +/obj/machinery/atm/directional/north, +/turf/open/floor/iron/dark/smooth_large, +/area/station/common/carpshop) +"vGh" = ( +/obj/machinery/light/floor/has_bulb, +/obj/effect/turf_decal/siding/dark_blue/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"vGq" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/hedge, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "kitchen_privacy"; + name = "Kitchen Privacy Shutters" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/cafeteria{ + dir = 5 + }, +/area/station/service/kitchen) +"vGr" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/machinery/light/cold/directional/south, +/obj/structure/cable/layer1, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/ai_monitored/turret_protected/aisat/maint) +"vGy" = ( +/obj/effect/turf_decal/box/white{ + color = "#9FED58" + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/hfr_room) +"vGA" = ( +/obj/effect/turf_decal/tile/dark/diagonal_edge, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/kitchen/diagonal, +/area/station/security/prison) +"vGL" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"vGO" = ( +/obj/structure/table/wood, +/obj/item/plate, +/obj/item/food/donut/caramel{ + pixel_x = 1; + pixel_y = 4 + }, +/turf/open/floor/carpet/cyan, +/area/station/command/heads_quarters/blueshield) +"vHo" = ( +/obj/structure/lattice, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/window/spawner/directional/north, +/obj/structure/window/spawner/directional/south, +/turf/open/openspace, +/area/station/security/brig/upper) +"vHr" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"vHt" = ( +/turf/open/floor/iron/dark/small, +/area/station/cargo/storage) +"vHx" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"vHy" = ( +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/book/manual/wiki/research_and_development{ + pixel_x = -8 + }, +/turf/open/floor/glass/reinforced, +/area/station/science/research) +"vHE" = ( +/turf/open/floor/glass/reinforced, +/area/station/science/genetics) +"vHG" = ( +/obj/machinery/airalarm/directional/east, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/lattice/catwalk, +/obj/structure/closet/secure_closet/brig/genpop, +/obj/item/card/id/advanced/prisoner/one, +/turf/open/openspace, +/area/station/security/holding_cell) +"vHR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/green, +/area/station/service/library/lounge) +"vIb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/station/medical/psychology) +"vIg" = ( +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"vIj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/station/service/chapel) +"vIo" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/science/robotics/lab) +"vIr" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral/full, +/obj/effect/spawner/random/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/cargo/lobby) +"vIB" = ( +/turf/open/misc/asteroid/moon/airless, +/area/space/nearstation) +"vID" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"vIQ" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/item/clothing/head/cone, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"vIR" = ( +/obj/structure/closet/secure_closet/miner, +/obj/effect/turf_decal/delivery, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) +"vIV" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners{ + dir = 1 + }, +/obj/machinery/light/directional/east, +/obj/machinery/atm/directional/south, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"vJD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"vJJ" = ( +/obj/structure/table, +/obj/item/stack/package_wrap{ + pixel_y = 8 + }, +/obj/item/stack/package_wrap{ + pixel_y = 5 + }, +/obj/item/stack/sheet/cloth/ten, +/obj/structure/railing, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"vJN" = ( +/obj/effect/turf_decal/siding/white{ + dir = 10 + }, +/obj/item/reagent_containers/cup/glass/waterbottle{ + pixel_y = 6; + pixel_x = -6 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/structure/table, +/obj/item/radio/intercom/directional/west, +/obj/machinery/light/warm/directional/west, +/turf/open/floor/wood/parquet, +/area/station/medical/patients_rooms) +"vJR" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 6 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"vJY" = ( +/obj/machinery/door/airlock/mining/glass{ + name = "Cargo Office" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining, +/obj/effect/mapping_helpers/airlock/access/any/supply/general, +/obj/effect/turf_decal/tile/brown/half{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow/half{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_half, +/area/station/cargo/office) +"vKb" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -10; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = -10; + pixel_y = 4 + }, +/turf/open/floor/carpet/purple, +/area/station/command/heads_quarters/rd) +"vKc" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"vKh" = ( +/obj/machinery/computer/cargo, +/obj/machinery/button/door/directional/north{ + id = "QMLoaddoor"; + pixel_x = -6; + name = "Supply Dock Loading Door" + }, +/obj/machinery/button/door/directional/north{ + id = "QMLoaddoor2"; + pixel_x = 6; + name = "Supply Dock Offloading Door" + }, +/obj/machinery/status_display/supply{ + pixel_y = 38 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/obj/machinery/camera/directional/north{ + c_tag = "Cargo - Receiving Dock" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"vKo" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "detective"; + name = "Privacy Shutters" + }, +/turf/open/floor/plating, +/area/station/security/detectives_office) +"vKG" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/firecloset, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos/upper) +"vKJ" = ( +/obj/structure/stairs/west, +/turf/open/floor/plating, +/area/station/engineering/transit_tube) +"vKM" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/department/science/xenobiology) +"vKW" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral/full, +/obj/structure/closet/crate, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/iron/dark/smooth_large, +/area/station/cargo/lobby) +"vLh" = ( +/obj/structure/rack/shelf, +/obj/item/aquarium_kit{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/aquarium_kit{ + pixel_y = -8; + pixel_x = 3 + }, +/obj/effect/turf_decal/box/blue, +/turf/open/floor/plastic, +/area/station/common/carpshop) +"vLk" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"vLw" = ( +/obj/structure/chair/office, +/obj/machinery/firealarm/directional/north, +/obj/effect/landmark/start/lawyer, +/turf/open/floor/carpet, +/area/station/service/lawoffice) +"vLA" = ( +/obj/machinery/atmospherics/components/tank/air{ + initialize_directions = 2 + }, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plating, +/area/station/medical/virology) +"vLF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"vLL" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/structure/chair, +/obj/structure/cable, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/hallway/primary/central/aft) +"vLO" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"vLV" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "CEShutter"; + name = "Privacy Shutters"; + dir = 1 + }, +/turf/open/floor/plating, +/area/station/command/heads_quarters/ce) +"vMi" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 1; + id = "genetics_shutters"; + name = "Genetics Shutters" + }, +/turf/open/floor/plating, +/area/station/science/genetics) +"vMj" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/status_display/ai/directional/west, +/turf/open/floor/iron/dark/corner, +/area/station/commons/dorms) +"vMl" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/customs) +"vMr" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/machinery/door/airlock/external{ + name = "Escape Pod" + }, +/obj/effect/mapping_helpers/airlock/unres, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"vMs" = ( +/turf/closed/wall, +/area/station/maintenance/department/eva) +"vMG" = ( +/obj/structure/table, +/obj/item/storage/bag/ore, +/obj/item/pickaxe, +/obj/item/mining_scanner, +/obj/item/flashlight, +/obj/item/gps/mining, +/obj/item/clothing/glasses/meson, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/iron/dark/side, +/area/station/commons/storage/mining) +"vMJ" = ( +/obj/item/radio/intercom/directional/north, +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/circuits) +"vMT" = ( +/obj/structure/stairs/south, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/engineering/atmos) +"vMX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/cargo/lobby) +"vNc" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"vNK" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/station/maintenance/disposal/incinerator) +"vNQ" = ( +/obj/structure/chair/comfy{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/wood, +/area/station/commons/dorms/room1) +"vOa" = ( +/obj/structure/railing, +/turf/open/openspace, +/area/station/maintenance/solars/port/fore) +"vOb" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/small, +/area/station/science/ordnance) +"vOe" = ( +/obj/structure/table/wood, +/obj/machinery/door/window/right/directional/north{ + req_access = "service" + }, +/turf/open/floor/wood/tile, +/area/station/hallway/secondary/exit/departure_lounge) +"vOt" = ( +/obj/machinery/door/airlock{ + id_tag = "private_4"; + name = "Private Quarters 4" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms/room4) +"vOz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/structure/sign/flag/nanotrasen/directional/north, +/obj/machinery/light/directional/east, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/hop) +"vOA" = ( +/obj/structure/lattice/catwalk, +/obj/structure/sign/poster/random/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/openspace, +/area/station/maintenance/aft/greater) +"vOD" = ( +/obj/machinery/light_switch/directional/west, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/light/warm/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/service/hydroponics/garden) +"vOG" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/lattice, +/turf/open/openspace, +/area/station/engineering/main) +"vOI" = ( +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/cable/multilayer/multiz, +/obj/machinery/camera/directional/west{ + c_tag = "Solar Maintenance - Fore Starboard" + }, +/turf/open/floor/plating, +/area/station/maintenance/solars/starboard/fore) +"vOM" = ( +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 1 + }, +/obj/machinery/camera/directional/west{ + c_tag = "MiniSat Telecomms Left"; + network = list("tcomms") + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"vPj" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics_shutters"; + name = "Robotics Privacy Shutters"; + dir = 8 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/robotics/lab) +"vPk" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/bot_white, +/obj/machinery/camera/motion/directional/north{ + c_tag = "Bridge - EVA Storage" + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/command/storage/eva) +"vPH" = ( +/obj/effect/mapping_helpers/burnt_floor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"vPL" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/engineering/atmos) +"vPQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"vPX" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/structure/chair, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/white, +/area/station/medical/pharmacy) +"vQg" = ( +/obj/structure/lattice, +/obj/structure/window/spawner/directional/east, +/obj/structure/window/spawner/directional/west, +/turf/open/openspace, +/area/station/security/holding_cell) +"vQs" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/iron, +/area/station/maintenance/starboard/lesser) +"vQt" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/security/brig/entrance) +"vQB" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/engineering/supermatter/room) +"vQF" = ( +/obj/machinery/requests_console/auto_name/directional/north, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/mapping_helpers/requests_console/information, +/obj/effect/mapping_helpers/requests_console/announcement, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/command/teleporter) +"vQN" = ( +/obj/item/kirbyplants/synthetic/plant28, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/lockers) +"vQT" = ( +/obj/structure/ladder, +/obj/machinery/incident_display/delam/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/main) +"vRq" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ + dir = 1 + }, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/white/smooth_edge{ + dir = 1 + }, +/area/station/medical/treatment_center) +"vRz" = ( +/obj/structure/table/glass, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Xenobiology Lab - Front Desk"; + network = list("ss13","xeno","rd") + }, +/obj/machinery/cell_charger{ + pixel_y = 3 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/white, +/area/station/science/xenobiology) +"vRA" = ( +/obj/machinery/button/crematorium{ + id = "crematoriumChapel"; + pixel_x = 25 + }, +/obj/machinery/camera/directional/east{ + c_tag = "Chapel - Crematorium" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/service/chapel/funeral) +"vRR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"vRY" = ( +/obj/effect/turf_decal/tile/dark_red{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/central) +"vSd" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/airalarm/directional/west, +/obj/machinery/light/cold/directional/west, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/engineering/transit_tube) +"vSv" = ( +/obj/effect/turf_decal/weather/snow, +/obj/machinery/atmospherics/pipe/heat_exchanging/manifold, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/service/kitchen/coldroom) +"vSA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/station/command/meeting_room/council) +"vSB" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"vSJ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/iv_drip, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/maintenance/abandon_surgery) +"vSS" = ( +/obj/structure/hedge, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/command) +"vSW" = ( +/turf/open/openspace, +/area/station/security/holding_cell) +"vTi" = ( +/obj/effect/spawner/random/trash/moisture_trap, +/obj/structure/sign/poster/random/directional/south, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"vTn" = ( +/obj/machinery/door/window/left/directional/east{ + name = "Monkey Pen"; + req_access = list("genetics") + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/science/genetics) +"vTo" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/service/crematorium, +/obj/machinery/door/airlock/hatch{ + name = "Crematorium" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/chapel/funeral) +"vTq" = ( +/obj/effect/turf_decal/lunar_sand, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/glass/reinforced, +/area/station/science/xenobiology) +"vTC" = ( +/obj/structure/stairs/south, +/turf/open/floor/plating, +/area/station/maintenance/starboard/lesser) +"vTQ" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/railing, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"vTZ" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/machinery/status_display/ai/directional/north, +/obj/machinery/power/port_gen/pacman, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/aisat/maint) +"vUj" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/cable, +/obj/machinery/light/warm/directional/west, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"vUt" = ( +/obj/effect/turf_decal/tile/dark_red/half, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/effect/spawner/random/mod/maint{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/mod/core/standard{ + pixel_y = 4 + }, +/obj/item/mod/core/standard{ + pixel_x = -4 + }, +/obj/item/mod/core/standard{ + pixel_x = 4 + }, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/smooth_half, +/area/station/science/robotics/lab) +"vUH" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/machinery/space_heater, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"vVo" = ( +/obj/effect/spawner/random/structure/steam_vent, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"vVq" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/pen, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/chapel/office) +"vVs" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/turf_decal/bot, +/obj/structure/ore_box, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/greater) +"vVv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/structure/cable, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/aisat/equipment) +"vVK" = ( +/obj/structure/hedge, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/primary/central/aft) +"vVO" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/maintenance/aft/greater) +"vVT" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/mapping_helpers/requests_console/information, +/obj/effect/mapping_helpers/requests_console/announcement, +/obj/effect/mapping_helpers/requests_console/ore_update, +/obj/machinery/camera/motion/directional/east{ + c_tag = "AI Upload Entrance"; + network = list("aiupload") + }, +/obj/machinery/requests_console/auto_name/directional/east, +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/ai_monitored/turret_protected/ai_upload) +"vVV" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/aisat/maint) +"vWi" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/command/general, +/obj/effect/mapping_helpers/airlock/access/any/command/minisat, +/obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Minisat Access Maintenance" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/transit_tube) +"vWm" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/structure/table, +/obj/item/toy/figure/borg{ + pixel_y = 10; + pixel_x = 5 + }, +/obj/effect/spawner/round_default_module, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/ai_monitored/turret_protected/ai_upload) +"vWo" = ( +/obj/item/reagent_containers/cup/glass/shaker{ + pixel_x = -6; + pixel_y = 12 + }, +/obj/item/reagent_containers/cup/rag{ + pixel_y = 3 + }, +/obj/structure/table/wood/poker, +/obj/machinery/light/warm/dim/directional/south, +/turf/open/floor/wood, +/area/station/service/abandoned_gambling_den) +"vWu" = ( +/obj/structure/bed/dogbed/mcgriff{ + anchored = 1 + }, +/mob/living/basic/pet/dog/pug/mcgriff, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/security/warden) +"vWv" = ( +/obj/machinery/blackbox_recorder, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/station/tcommsat/server) +"vWA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/grass, +/area/station/service/hydroponics/garden) +"vWK" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/turf/open/floor/glass/reinforced, +/area/station/hallway/primary/central/fore) +"vWL" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/engineering/ce, +/obj/machinery/door/airlock/ce{ + name = "Chief Engineer's Office" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/ce) +"vWO" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/machinery/light/warm/directional/south, +/turf/open/floor/iron/dark/corner, +/area/station/commons/dorms) +"vWY" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk, +/obj/machinery/camera/directional/east{ + c_tag = "Canteen - Bar"; + network = list("ss13","bar") + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/bar) +"vWZ" = ( +/turf/open/floor/catwalk_floor, +/area/station/cargo/storage) +"vXd" = ( +/obj/machinery/door/poddoor/incinerator_atmos_aux, +/turf/open/floor/engine, +/area/station/maintenance/disposal/incinerator) +"vXn" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"vXr" = ( +/obj/machinery/door/window/brigdoor/right/directional/south{ + req_one_access = list("ai_upload"); + name = "AI Core Access" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/tcommsat/computer) +"vXy" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/structure/cable/layer1, +/obj/structure/cable/layer3, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/aisat/maint) +"vXT" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Detective's Office Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/detective, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/detectives_office) +"vXU" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"vXW" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/table, +/obj/machinery/fax{ + fax_name = "Research Division"; + name = "Research Division Fax Machine"; + pixel_y = 4 + }, +/turf/open/floor/iron/white/side{ + dir = 1 + }, +/area/station/science/research) +"vYe" = ( +/turf/closed/wall/r_wall, +/area/station/security/brig/upper) +"vYl" = ( +/obj/structure/cable/layer1, +/obj/structure/cable/layer3, +/turf/open/floor/glass, +/area/station/ai_monitored/turret_protected/ai) +"vYm" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/ai_monitored/turret_protected/aisat/teleporter) +"vYo" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 9 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"vYp" = ( +/obj/item/reagent_containers/cup/bottle/toxin{ + pixel_x = 4 + }, +/obj/structure/table, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/reagentgrinder{ + pixel_y = 8 + }, +/obj/item/reagent_containers/pill/morphine{ + pixel_x = -9; + pixel_y = -4; + name = "estrogen pill"; + desc = "Commonly used to treat dysphoria." + }, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/item/reagent_containers/pill/morphine{ + pixel_x = -12; + name = "estrogen pill"; + desc = "Commonly used to treat dysphoria."; + pixel_y = 4 + }, +/turf/open/floor/iron/showroomfloor, +/area/station/maintenance/port/aft) +"vYq" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack/shelf, +/obj/item/circuitboard/machine/telecomms/broadcaster{ + pixel_y = 2; + pixel_x = -2 + }, +/obj/item/circuitboard/machine/telecomms/bus{ + pixel_y = -3; + pixel_x = 2 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/storage/tcomms) +"vYt" = ( +/obj/structure/table/wood, +/obj/item/folder{ + pixel_x = -10; + pixel_y = 4 + }, +/obj/item/laser_pointer, +/obj/machinery/door/window/left/directional/south{ + name = "Desk Access"; + req_access = list("library") + }, +/obj/machinery/airalarm/directional/west, +/obj/machinery/cassette/adv_cassette_deck{ + pixel_y = 5 + }, +/turf/open/floor/carpet/green, +/area/station/service/library/lounge) +"vYH" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"vYO" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/dark/end{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/small, +/area/station/hallway/primary/port) +"vYY" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/obj/structure/chair/office/light, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"vZe" = ( +/obj/effect/turf_decal/box, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/railing, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) +"vZj" = ( +/obj/structure/chair/sofa/bench/left, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/entry) +"vZm" = ( +/turf/open/openspace, +/area/station/maintenance/port/aft) +"vZq" = ( +/obj/effect/turf_decal/tile/red/real_red/half/contrasted{ + dir = 8 + }, +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/escape_pod) +"vZy" = ( +/turf/closed/wall, +/area/station/science/breakroom) +"vZz" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible/layer2{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"vZM" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/common/carpshop) +"vZR" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/openspace, +/area/station/maintenance/aft/upper) +"vZW" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Catwalk Maintenance Access" + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/command) +"vZZ" = ( +/obj/machinery/firealarm/directional/south, +/obj/item/fuel_pellet, +/obj/item/fuel_pellet{ + pixel_x = 4 + }, +/obj/structure/table, +/obj/machinery/camera/directional/south{ + c_tag = "Cargo - Drone Bay" + }, +/turf/open/floor/iron/dark/small, +/area/station/cargo/drone_bay) +"wah" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/medical/break_room) +"wal" = ( +/obj/machinery/camera/directional/south{ + c_tag = "MiniSat External Upper North-West"; + network = list("minisat") + }, +/obj/structure/lattice, +/turf/open/space/openspace, +/area/space/nearstation) +"wau" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/left/directional/east{ + name = "Chemistry Desk"; + req_access = list("pharmacy") + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "pharmacy_shutters_2"; + name = "Chemlab Shutters"; + dir = 8 + }, +/obj/structure/desk_bell{ + pixel_x = -4; + pixel_y = 8 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/pharmacy) +"waz" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/vending/wardrobe/hydro_wardrobe, +/turf/open/openspace, +/area/station/service/hydroponics/upper) +"waB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/box, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/treatment_center) +"waH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 10 + }, +/turf/open/floor/iron/dark/small, +/area/station/security/execution/education) +"waM" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible/layer2{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "HFR Access Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/engineering/atmos/hfr_room) +"waW" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/recreation) +"wbh" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/warden) +"wbs" = ( +/obj/effect/landmark/start/bartender, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/large, +/area/station/service/bar) +"wbD" = ( +/obj/structure/stairs/west, +/turf/open/floor/iron/dark, +/area/station/command/meeting_room/council) +"wbG" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/box, +/obj/machinery/newscaster/directional/north, +/obj/structure/disposalpipe/trunk, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/janitor) +"wbT" = ( +/obj/structure/lattice/catwalk, +/obj/structure/window/spawner/directional/east, +/obj/structure/window/spawner/directional/west, +/obj/structure/window/spawner/directional/north, +/obj/structure/window/spawner/directional/south, +/obj/structure/marker_beacon/bronze, +/turf/open/openspace, +/area/station/cargo/office) +"wbY" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/machinery/holopad/secure, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/station/medical/psychology) +"wcf" = ( +/obj/effect/turf_decal/stripes/blue/line, +/obj/structure/chair/office, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/diagonal, +/area/station/ai_monitored/security/armory) +"wcy" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/cargo/miningoffice) +"wcA" = ( +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"wcF" = ( +/obj/effect/turf_decal/siding/dark_blue{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/command/meeting_room/council) +"wcN" = ( +/obj/machinery/computer/mecha{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner/directional/west, +/turf/open/floor/glass/reinforced, +/area/station/command/heads_quarters/rd) +"wcO" = ( +/obj/effect/spawner/random/trash/garbage{ + spawn_scatter_radius = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"wde" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/machinery/firealarm/directional/north, +/obj/machinery/light/warm/directional/north, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"wdk" = ( +/obj/effect/spawner/random/trash/mess, +/obj/effect/spawner/random/trash/botanical_waste, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"wds" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/diagonal, +/area/station/commons/toilet/restrooms) +"wdv" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue/full, +/obj/structure/rack/shelf, +/obj/machinery/firealarm/directional/south, +/obj/item/roller, +/obj/item/roller{ + pixel_y = 3 + }, +/obj/item/roller{ + pixel_y = 6 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/paramedic) +"wdz" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"wdE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/engineering/transit_tube) +"wdK" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/station/commons/storage/mining) +"wdM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) +"wdQ" = ( +/obj/structure/disposalpipe/trunk/multiz, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/plating, +/area/station/service/hydroponics) +"wdU" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"web" = ( +/turf/closed/wall/r_wall, +/area/station/command/heads_quarters/rd) +"wef" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/spawner/random/trash/garbage, +/obj/effect/spawner/random/maintenance, +/obj/effect/spawner/random/structure/table_or_rack, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"wey" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/closed/wall, +/area/station/maintenance/abandon_diner) +"weE" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/central) +"weG" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark/side, +/area/station/engineering/atmos/hfr_room) +"weH" = ( +/turf/open/openspace, +/area/station/commons/lounge) +"weK" = ( +/obj/structure/chair/stool/bar/directional/north, +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/turf/open/floor/iron/cafeteria{ + dir = 5 + }, +/area/station/service/kitchen/diner) +"weN" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/maintenance/aft/upper) +"weR" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/brigdoor/left/directional/east{ + name = "Access Desk"; + req_access = list("hop") + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "hop"; + name = "Privacy Shutters" + }, +/obj/item/paper_bin/carbon{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/machinery/recharger{ + pixel_x = 7; + pixel_y = 2 + }, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/item/pen/fourcolor{ + pixel_x = -6; + pixel_y = 7 + }, +/turf/open/floor/iron, +/area/station/command/heads_quarters/hop) +"weT" = ( +/turf/open/openspace, +/area/station/hallway/primary/central) +"weX" = ( +/obj/effect/turf_decal/caution/stand_clear{ + pixel_x = 16; + dir = 1 + }, +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/science/robotics/mechbay) +"weY" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/turf_decal/siding/white, +/obj/machinery/duct, +/turf/open/misc/asteroid/moon, +/area/station/science/xenobiology) +"wfb" = ( +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 10 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/medical/morgue) +"wfd" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/mapping_helpers/airlock/access/all/engineering/aux_base, +/obj/machinery/door/airlock/external{ + name = "Auxiliary Base External Access" + }, +/turf/open/floor/plating, +/area/station/construction/mining/aux_base) +"wfk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/small, +/area/station/medical/surgery/fore) +"wfn" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/three, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"wfI" = ( +/obj/item/poster/random_contraband, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/box, +/obj/structure/rack/shelf, +/obj/effect/spawner/random/maintenance/three, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"wfM" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/ai_monitored/turret_protected/ai_upload) +"wfQ" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/checker, +/area/station/maintenance/abandon_diner) +"wfU" = ( +/obj/structure/rack/shelf, +/obj/effect/spawner/random/maintenance/five, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"wgb" = ( +/obj/effect/turf_decal/tile/green/opposingcorners, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/checker{ + dir = 1 + }, +/area/station/hallway/secondary/recreation) +"wgc" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/simple/violet/visible{ + dir = 4 + }, +/turf/open/openspace, +/area/station/engineering/atmos/upper) +"wgx" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/light/cold/no_nightlight/directional/east, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"wgE" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/diagonal, +/area/station/commons/fitness/recreation) +"wgG" = ( +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/engine, +/area/station/engineering/atmos) +"wgM" = ( +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/plating, +/area/station/science/xenobiology) +"wgW" = ( +/obj/effect/turf_decal/tile/dark/diagonal_edge, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/execution/education) +"whc" = ( +/obj/item/toy/figure/curator{ + pixel_y = 29 + }, +/obj/item/reagent_containers/cup/glass/trophy{ + desc = "Coming to the competition already covered in 'Ectoplasm' definitely helped."; + name = "Ghosthunting 1st prize"; + pixel_x = 8; + pixel_y = 36 + }, +/obj/machinery/firealarm/directional/west, +/obj/structure/table/wood, +/obj/machinery/cassette/dj_station{ + pixel_y = 12 + }, +/turf/open/floor/cult, +/area/station/service/library/private) +"whe" = ( +/obj/effect/turf_decal/tile/green/opposingcorners, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/hallway/primary/central/fore) +"whh" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/station/medical/pharmacy) +"whG" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/requests_console/auto_name/directional/east, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/mapping_helpers/requests_console/ore_update, +/obj/machinery/light/warm/directional/east, +/turf/open/openspace, +/area/station/cargo/office) +"whH" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"whS" = ( +/obj/structure/table, +/obj/item/stack/cable_coil/five, +/obj/item/stack/cable_coil/five, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"whW" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/station/ai_monitored/command/nuke_storage) +"wib" = ( +/obj/machinery/light/small/directional/east, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"wij" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/commons/storage/mining) +"wip" = ( +/obj/machinery/door/airlock/hatch{ + id_tag = "vacant_space"; + name = "Vacant Commissary" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/station/commons/vacant_room/commissary) +"wir" = ( +/obj/structure/stairs/north, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/kitchen/diner) +"wit" = ( +/obj/structure/frame/machine, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/cable_coil/five, +/turf/open/floor/plating, +/area/station/maintenance/department/electrical) +"wiu" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/chair/plastic{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/tile, +/area/station/service/bar) +"wix" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"wiz" = ( +/obj/machinery/incident_display/delam/directional/north, +/obj/machinery/firealarm/directional/west, +/obj/machinery/light/warm/directional/west, +/turf/open/floor/engine, +/area/station/engineering/main) +"wiB" = ( +/obj/effect/spawner/random/trash/box, +/obj/item/stack/sheet/glass{ + amount = 4 + }, +/turf/open/floor/iron, +/area/station/maintenance/port/greater) +"wiV" = ( +/obj/effect/turf_decal/siding/white, +/obj/structure/disposalpipe/segment, +/obj/item/kirbyplants/synthetic/plant28, +/obj/machinery/light/cold/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/medical/medbay/central) +"wjk" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space) +"wjl" = ( +/obj/item/storage/box/deputy, +/obj/item/storage/box/seccarts{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/structure/table/wood, +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/station/command/heads_quarters/hos) +"wjw" = ( +/obj/machinery/button/elevator/directional/north{ + id = "departures_lift" + }, +/turf/open/floor/glass/reinforced, +/area/station/hallway/secondary/exit) +"wjH" = ( +/obj/structure/rack, +/obj/item/circuitboard/machine/processor{ + pixel_y = 5 + }, +/obj/item/circuitboard/machine/microwave{ + pixel_y = -5 + }, +/obj/item/circuitboard/machine/griddle{ + pixel_x = -2 + }, +/turf/open/floor/plating, +/area/station/commons/vacant_room/commissary) +"wjK" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"wjZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"wka" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/tile, +/area/station/service/bar) +"wkd" = ( +/obj/structure/stairs/north, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"wkg" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"wkj" = ( +/obj/structure/chair/comfy{ + color = "#596479"; + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) +"wkk" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/structure/rack/shelf, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 7 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 3; + pixel_x = 3 + }, +/obj/item/stack/cable_coil{ + pixel_y = 3 + }, +/obj/item/storage/toolbox/electrical{ + pixel_y = -6 + }, +/turf/open/floor/iron/dark, +/area/station/commons/storage/primary) +"wkn" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/cmo) +"wko" = ( +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/plasteel{ + amount = 20 + }, +/obj/item/stack/sheet/iron/fifty, +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/table, +/turf/open/floor/iron/white/side{ + dir = 1 + }, +/area/station/science/research) +"wkw" = ( +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics Turbine Access" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/maintenance/disposal/incinerator) +"wkA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/station/command/meeting_room/council) +"wkB" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/iron/white/side{ + dir = 10 + }, +/area/station/medical/paramedic) +"wkF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Customs Agent's Office" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/checkpoint/supply) +"wkG" = ( +/obj/structure/railing{ + dir = 9 + }, +/turf/open/openspace, +/area/station/engineering/atmos/hfr_room) +"wkJ" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral/full, +/obj/item/stack/rods/ten, +/obj/item/shard, +/obj/effect/decal/cleanable/glass, +/obj/machinery/light/broken/directional/east, +/turf/open/floor/iron/dark/smooth_large, +/area/station/maintenance/aft/greater) +"wkO" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/command/gateway) +"wkR" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Medbay - Chemistry Lower North"; + network = list("ss13","medbay") + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/end, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/chemistry) +"wkV" = ( +/obj/structure/table/glass, +/obj/item/storage/pill_bottle/system_cleaner{ + pixel_y = 14 + }, +/obj/item/storage/pill_bottle/epinephrine{ + pixel_x = -8; + pixel_y = 12 + }, +/obj/item/grenade/chem_grenade{ + pixel_y = 4 + }, +/obj/item/grenade/chem_grenade{ + pixel_x = -5 + }, +/obj/item/grenade/chem_grenade{ + pixel_x = 5 + }, +/obj/item/stack/cable_coil, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/machinery/light/cold/directional/east, +/obj/effect/turf_decal/tile/yellow/anticorner, +/obj/structure/railing{ + dir = 8 + }, +/obj/item/screwdriver{ + pixel_y = -8 + }, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/iron/white/smooth_corner{ + dir = 1 + }, +/area/station/medical/pharmacy) +"wkY" = ( +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/warden) +"wkZ" = ( +/obj/machinery/airalarm/directional/east, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/item/kirbyplants/synthetic/plant27, +/turf/open/floor/wood, +/area/station/medical/psychology) +"wlH" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"wmh" = ( +/obj/effect/spawner/random/food_or_drink/cups, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/trash_pile, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"wmi" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"wmo" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/obj/item/mining_voucher, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"wmu" = ( +/obj/structure/sign/directions/evac/directional/east, +/obj/machinery/light/directional/east, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"wmw" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"wmC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Paramedic Dispatch Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/storage) +"wmP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"wmR" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/customs) +"wmW" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"wnd" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=lowhall4"; + location = "lowhall3" + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"wnf" = ( +/obj/effect/turf_decal/tile/red/real_red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/obj/machinery/airalarm/directional/north, +/obj/machinery/camera/directional/north{ + c_tag = "Departures - Lounge Fore" + }, +/turf/open/floor/iron/white/corner{ + dir = 4 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"wng" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen_counter"; + name = "Kitchen Counter Shutters" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"wnl" = ( +/obj/machinery/button/door/directional/west{ + id = "pharmacy_shutters_2"; + name = "Chemistry Privacy Shutters Toggle"; + req_one_access = list("pharmacy") + }, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/machinery/camera/directional/west{ + c_tag = "Medbay - Chemistry Upper Pharmacy"; + network = list("ss13","medbay") + }, +/turf/open/floor/iron/white, +/area/station/medical/pharmacy) +"wnm" = ( +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"wnw" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "cmoshutter"; + name = "Office Privacy Shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/cmo) +"wnQ" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/command/captain, +/obj/machinery/door/airlock/corporate{ + id_tag = "BSdoor"; + name = "Blueshield's Office" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) +"wnX" = ( +/obj/structure/chair/pew/left, +/turf/open/floor/iron/chapel{ + dir = 1 + }, +/area/station/service/chapel) +"wnY" = ( +/obj/effect/turf_decal/tile/brown/half/contrasted, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/lobby) +"woc" = ( +/obj/structure/girder, +/obj/structure/grille, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"wor" = ( +/obj/effect/turf_decal/tile/green, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/hallway/secondary/recreation) +"wov" = ( +/obj/effect/turf_decal/tile/dark_red{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/science/robotics/mechbay) +"wow" = ( +/obj/structure/closet/wardrobe/grey, +/obj/effect/turf_decal/siding/white, +/obj/effect/turf_decal/box/white, +/obj/machinery/firealarm/directional/north, +/obj/effect/landmark/start/hangover/closet, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) +"woY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"woZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/checkpoint/escape) +"wpc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/service/hydroponics/garden) +"wpl" = ( +/obj/effect/spawner/random/engineering/tank, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"wpA" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/arrows/white, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/edge, +/area/station/hallway/primary/central/fore) +"wpK" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/trimline/blue/end{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/mid_joiner, +/obj/effect/turf_decal/trimline/blue/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/mid_joiner{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/hallway/primary/central/aft) +"wpZ" = ( +/obj/effect/turf_decal/tile/dark_red/half/contrasted, +/obj/effect/turf_decal/siding/dark_red{ + dir = 1 + }, +/obj/machinery/recharger, +/obj/machinery/light/no_nightlight/directional/south, +/turf/open/floor/iron/dark, +/area/station/common/laser_tag) +"wqf" = ( +/obj/effect/spawner/random/trash/grime, +/turf/open/floor/plating, +/area/station/maintenance/central/lesser) +"wqg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"wqi" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"wqr" = ( +/obj/effect/landmark/event_spawn, +/mob/living/basic/bot/cleanbot/medbay, +/turf/open/floor/iron/dark/small, +/area/station/medical/surgery/theatre) +"wqu" = ( +/obj/effect/turf_decal/tile/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/obj/item/radio/intercom/directional/north, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/white/corner{ + dir = 4 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"wqE" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/dark_red/diagonal_centre, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/blobstart, +/turf/open/floor/iron/diagonal, +/area/station/security/courtroom) +"wrd" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/blueshield) +"wrl" = ( +/obj/effect/turf_decal/lunar_sand, +/turf/open/floor/plating/airless, +/area/station/asteroid) +"wrB" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/landmark/start/shaft_miner, +/obj/machinery/firealarm/directional/north, +/obj/machinery/light/warm/directional/north, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) +"wrJ" = ( +/obj/machinery/light/floor/has_bulb, +/obj/effect/spawner/liquids_spawner, +/turf/open/floor/lowered/iron/pool/cobble, +/area/station/common/spa) +"wrU" = ( +/obj/machinery/light/warm/directional/north, +/obj/structure/flora/bush/jungle/b/style_random, +/turf/open/floor/grass, +/area/station/medical/virology) +"wsa" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/chair/comfy/brown{ + color = "#439C1E"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/station/command/heads_quarters/nt_rep) +"wsb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm/directional/west, +/obj/machinery/suit_storage_unit/security, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/engine, +/area/station/security/eva) +"wsi" = ( +/obj/machinery/vending/cola/red, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/holding_cell) +"wso" = ( +/obj/machinery/firealarm/directional/north, +/obj/machinery/camera/directional/north{ + c_tag = "Xenobiology Lab - Access"; + network = list("ss13","xeno","rd") + }, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/artifact_spawner, +/turf/open/floor/iron/white, +/area/station/science/xenobiology/hallway) +"wsv" = ( +/obj/machinery/vending/access/command, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"wsF" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Library Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/service/library/lounge) +"wsI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"wsS" = ( +/obj/structure/railing{ + dir = 5 + }, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/floor/iron, +/area/station/science/xenobiology) +"wsY" = ( +/obj/machinery/requests_console/auto_name/directional/east, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/machinery/light/cold/no_nightlight/directional/east, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/pharmacy) +"wti" = ( +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/machinery/modular_computer/preset/cargochat/science, +/turf/open/floor/iron/dark/small, +/area/station/science/circuits) +"wtk" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"wtn" = ( +/obj/effect/turf_decal/siding/white{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/structure/window/reinforced/tinted/frosted/spawner/directional/east, +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/wood/parquet, +/area/station/medical/patients_rooms) +"wtE" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/item/radio/intercom/prison/directional/west, +/obj/machinery/light/warm/directional/west, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"wtG" = ( +/obj/effect/turf_decal/tile/red/real_red{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"wtQ" = ( +/obj/effect/spawner/random/bureaucracy/briefcase, +/obj/structure/sign/poster/random/directional/south, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"wtS" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/bronze, +/turf/open/openspace, +/area/station/medical/pharmacy) +"wtT" = ( +/obj/structure/chair, +/obj/machinery/camera/directional/north{ + c_tag = "Dormitories - Fitness Ring" + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark, +/area/station/common/wrestling/arena) +"wtY" = ( +/obj/structure/trash_pile, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"wub" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/common/laser_tag) +"wuw" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"wuC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/captain) +"wuJ" = ( +/turf/closed/wall/r_wall, +/area/station/medical/patients_rooms) +"wuM" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"wuT" = ( +/obj/structure/chair/stool/bar/directional/north, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/light/warm/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/tile, +/area/station/service/bar) +"wvJ" = ( +/obj/effect/turf_decal/box/white/corners{ + dir = 8 + }, +/obj/machinery/requests_console/auto_name/directional/south, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/structure/table, +/obj/machinery/plantgenes{ + pixel_y = 5 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/hydroponics) +"wvM" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/lattice, +/turf/open/openspace, +/area/station/engineering/main) +"wvO" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/large, +/area/station/service/hydroponics) +"wvR" = ( +/obj/item/reagent_containers/cup/glass/bottle/vermouth{ + pixel_x = -9; + pixel_y = 14 + }, +/obj/item/reagent_containers/cup/glass/bottle/juice/pineapplejuice{ + pixel_y = 9; + pixel_x = 6 + }, +/obj/item/reagent_containers/cup/soda_cans/tonic, +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/machinery/light/warm/dim/directional/east, +/turf/open/floor/iron/dark, +/area/station/service/abandoned_gambling_den) +"wvS" = ( +/obj/item/kirbyplants/organic/plant17{ + pixel_x = -38 + }, +/obj/item/toy/figure/hop{ + pixel_x = -28; + pixel_y = 17 + }, +/obj/item/toy/figure/ian{ + pixel_y = 14; + pixel_x = -24 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/executive, +/area/station/command/heads_quarters/hop) +"wvY" = ( +/obj/machinery/disposal/bin{ + desc = "A pneumatic waste disposal unit. This one leads to the frozen exterior of the moon."; + name = "deathsposal unit" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/siding/white{ + dir = 6 + }, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/virology) +"wvZ" = ( +/obj/machinery/holopad, +/obj/machinery/vending/medical, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/cold/directional/south, +/obj/machinery/requests_console/auto_name/directional/south, +/obj/effect/mapping_helpers/requests_console/assistance, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/paramedic) +"wwh" = ( +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/command/gateway) +"wwt" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/commons/storage/mining) +"wwu" = ( +/obj/structure/cable, +/obj/machinery/light/cold/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/science/xenobiology) +"wwD" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/disposalpipe/segment, +/obj/machinery/light/warm/directional/east, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"wwO" = ( +/obj/machinery/power/port_gen/pacman/pre_loaded, +/obj/structure/sign/poster/random/directional/south, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"wwP" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/dark/end{ + dir = 8 + }, +/turf/open/floor/iron/small, +/area/station/hallway/primary/port) +"wwY" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, +/turf/open/floor/engine, +/area/station/engineering/atmos) +"wxj" = ( +/obj/item/plate/large, +/obj/item/plate, +/obj/item/plate/small{ + pixel_y = 2 + }, +/obj/structure/table/wood, +/turf/open/floor/glass, +/area/station/service/kitchen) +"wxp" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners{ + dir = 1 + }, +/obj/structure/table, +/obj/effect/spawner/random/trash/food_packaging, +/obj/machinery/light/warm/dim/directional/south, +/turf/open/floor/iron/checker, +/area/station/maintenance/abandon_diner) +"wxr" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/dark_red/diagonal_centre, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/diagonal, +/area/station/security/courtroom) +"wxt" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"wxx" = ( +/obj/effect/turf_decal/bot, +/obj/item/stock_parts/subspace/analyzer{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/stock_parts/subspace/analyzer{ + pixel_y = 3 + }, +/obj/item/stock_parts/subspace/analyzer{ + pixel_x = -6 + }, +/obj/structure/rack/shelf, +/obj/item/stock_parts/subspace/treatment{ + pixel_x = 6 + }, +/obj/item/stock_parts/subspace/treatment{ + pixel_y = -3 + }, +/obj/item/stock_parts/subspace/treatment{ + pixel_y = -6; + pixel_x = -6 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Engineering - Telecomms Storage"; + network = list("ss13","engine") + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/storage/tcomms) +"wxJ" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/trimline/green/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/service/hydroponics) +"wxR" = ( +/obj/effect/spawner/random/trash/moisture_trap, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"wxV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"wyb" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "holodeck" + }, +/obj/machinery/door/airlock/public/glass{ + name = "Holodeck" + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/recreation) +"wyh" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_x = -6 + }, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = 6 + }, +/obj/item/geiger_counter{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/turf/open/floor/iron, +/area/station/security/checkpoint/engineering) +"wyp" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch" + }, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"wys" = ( +/obj/structure/flora/rock/pile, +/obj/structure/flora/rock/pile/style_2, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/misc/dirt/planet, +/area/station/science/genetics) +"wyv" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/window/reinforced/spawner/directional/west, +/turf/open/floor/plating, +/area/station/medical/chemistry) +"wyw" = ( +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/violet/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/open/floor/engine, +/area/station/engineering/atmos) +"wyD" = ( +/obj/effect/spawner/random/maintenance, +/obj/structure/table, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"wze" = ( +/obj/structure/sign/painting/library{ + pixel_x = 32 + }, +/obj/structure/chair/sofa/left/brown{ + dir = 8 + }, +/turf/open/floor/carpet/green, +/area/station/service/library/lounge) +"wzy" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/ordnance) +"wzz" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/bot, +/obj/machinery/light/warm/directional/east, +/obj/structure/reagent_dispensers/watertank/high, +/turf/open/floor/iron, +/area/station/engineering/supermatter/room) +"wzB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"wzC" = ( +/turf/closed/wall, +/area/space/nearstation) +"wzK" = ( +/obj/structure/hedge, +/obj/structure/window/fulltile, +/obj/machinery/status_display/evac, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/exit/departure_lounge) +"wzM" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/bartender, +/turf/open/floor/wood/tile, +/area/station/service/bar) +"wzP" = ( +/obj/structure/rack, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"wzR" = ( +/obj/effect/mapping_helpers/mail_sorting/medbay/general, +/obj/effect/mapping_helpers/mail_sorting/medbay/cmo_office, +/obj/effect/mapping_helpers/mail_sorting/medbay/virology, +/obj/structure/disposalpipe/sorting/mail{ + dir = 8 + }, +/obj/effect/mapping_helpers/mail_sorting/medbay/chemistry, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"wAc" = ( +/obj/structure/girder, +/obj/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"wAg" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"wAo" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/computer/shuttle/mining/common, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/storage/mining) +"wAE" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + name = "Primary Common Mining Dock Airlock" + }, +/turf/open/floor/plating, +/area/station/commons/storage/mining) +"wAH" = ( +/obj/structure/table/optable, +/obj/effect/turf_decal/bot_white, +/obj/machinery/defibrillator_mount/directional/south, +/obj/effect/turf_decal/tile/blue/full, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/surgery/aft) +"wAJ" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/lattice/catwalk, +/obj/structure/closet/secure_closet/brig/genpop, +/obj/item/card/id/advanced/prisoner/six, +/turf/open/openspace, +/area/station/security/holding_cell) +"wAL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"wAT" = ( +/obj/item/storage/box/syringes, +/obj/item/storage/box/beakers{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/gun/syringe, +/obj/item/gun/syringe, +/obj/structure/rack/shelf, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/storage) +"wAV" = ( +/obj/machinery/door/airlock/maintenance/external{ + name = "Storage Room" + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"wBa" = ( +/obj/structure/ladder, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"wBk" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"wBt" = ( +/obj/structure/lattice/catwalk, +/obj/structure/sign/poster/random/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/openspace, +/area/station/maintenance/department/security/upper) +"wBv" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/dark/diagonal_edge, +/obj/structure/reagent_dispensers/servingdish, +/obj/machinery/camera/directional/east{ + c_tag = "Security - Permabrig Kitchen"; + network = list("ss13","prison") + }, +/turf/open/floor/iron/kitchen/diagonal, +/area/station/security/prison) +"wBw" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/white/smooth_edge{ + dir = 1 + }, +/area/station/medical/treatment_center) +"wBF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/burnt_floor, +/obj/structure/cable, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"wBG" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/simple/violet/visible{ + dir = 1 + }, +/turf/open/space/openspace, +/area/space/nearstation) +"wBK" = ( +/obj/structure/cable, +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/effect/spawner/random/maintenance/four, +/turf/open/floor/plating, +/area/station/maintenance/starboard/lesser) +"wBQ" = ( +/obj/structure/table/reinforced, +/obj/machinery/fax{ + fax_name = "Chief Medical Officer's Office"; + name = "Chief Medical Officer's Fax Machine"; + pixel_y = 3 + }, +/turf/open/floor/wood, +/area/station/command/heads_quarters/cmo) +"wCb" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/carbon_output{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/open/floor/engine/co2, +/area/station/engineering/atmos/upper) +"wCe" = ( +/obj/structure/marker_beacon/purple, +/obj/structure/lattice/catwalk, +/turf/open/space/openspace, +/area/space/nearstation) +"wCf" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/pharmacy) +"wCv" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"wCz" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/ai_monitored/command/nuke_storage) +"wCV" = ( +/obj/effect/spawner/random/maintenance/four, +/obj/structure/closet/crate, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/large, +/area/station/cargo/storage) +"wCX" = ( +/obj/effect/turf_decal/tile/green, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/station_map/engineering/directional/south, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/hallway/primary/port) +"wCY" = ( +/obj/effect/turf_decal/box/white, +/obj/effect/turf_decal/bot_white, +/obj/structure/training_machine, +/obj/item/target/syndicate, +/turf/open/floor/engine, +/area/station/security/range) +"wCZ" = ( +/obj/structure/chair/pew/left{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/floor/iron/diagonal, +/area/station/security/courtroom) +"wDi" = ( +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/airlock/security{ + name = "Permabrig Visitation" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/prison/visit) +"wDu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/wood/large, +/area/station/service/library) +"wDy" = ( +/obj/item/storage/toolbox/electrical{ + pixel_y = -6 + }, +/obj/effect/spawner/random/maintenance, +/obj/effect/decal/cleanable/robot_debris/up, +/turf/open/floor/plating, +/area/station/science/research/abandoned) +"wDA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/holopad, +/turf/open/floor/iron/dark/smooth_half, +/area/station/cargo/office) +"wDD" = ( +/obj/machinery/chem_dispenser/drinks/beer{ + pixel_y = 6; + pixel_x = 2 + }, +/obj/structure/table/wood, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/bar) +"wDM" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/openspace, +/area/station/hallway/primary/central) +"wDS" = ( +/obj/structure/marker_beacon/burgundy, +/turf/open/misc/asteroid/moon/airless, +/area/station/asteroid) +"wDX" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/turf/open/floor/plating, +/area/station/engineering/atmos) +"wEa" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/science/ordnance) +"wEl" = ( +/turf/closed/wall/r_wall, +/area/station/security/checkpoint/science/research) +"wEs" = ( +/obj/structure/closet/crate/critter, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"wEB" = ( +/obj/item/stack/sheet/cardboard, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"wEH" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/oxygen_input, +/turf/open/floor/engine/o2, +/area/station/engineering/atmos) +"wES" = ( +/obj/machinery/atmospherics/components/trinary/mixer/airmix{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/engine, +/area/station/engineering/atmos) +"wEU" = ( +/obj/effect/spawner/random/structure/grille, +/obj/structure/window/spawner/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"wEW" = ( +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"wEY" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/science/xenobio, +/obj/machinery/door/airlock/science/glass{ + name = "Specialized Research Access" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/any/science/ordnance, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/ordnance/office) +"wFm" = ( +/obj/effect/turf_decal/tile/blue/full, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/bed/roller, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/treatment_center) +"wFp" = ( +/obj/structure/table/rolling, +/obj/item/food/ready_donk/nachos_grandes{ + pixel_y = 10 + }, +/obj/item/reagent_containers/cup/soda_cans/grey_bull{ + pixel_y = 8; + pixel_x = -6 + }, +/turf/open/floor/wood, +/area/station/maintenance/starboard/fore) +"wFs" = ( +/turf/closed/wall/r_wall, +/area/station/security/brig/entrance) +"wFC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/holding_cell) +"wFI" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/service/hydroponics/upper) +"wFM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm/directional/west, +/obj/machinery/suit_storage_unit/security, +/obj/structure/reagent_dispensers/wall/peppertank/directional/north, +/obj/machinery/light/warm/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/blueshield) +"wFN" = ( +/obj/effect/turf_decal/trimline/dark_red/warning{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark_red{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/security/prison) +"wFQ" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/dark/end{ + dir = 8 + }, +/obj/machinery/firealarm/directional/east, +/obj/machinery/light/directional/east, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/entry) +"wFT" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/iron, +/area/station/commons/dorms) +"wGb" = ( +/obj/machinery/status_display/ai/directional/west, +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/hallway/secondary/recreation) +"wGh" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Arrival Airlock"; + space_dir = 8 + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"wGj" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos) +"wGk" = ( +/obj/effect/turf_decal/tile/green/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/hallway/primary/central) +"wGC" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/openspace, +/area/station/engineering/main) +"wGI" = ( +/obj/effect/turf_decal/tile/dark_red/half{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/science/robotics/lab) +"wGO" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/corral_corner{ + mapping_id = "1" + }, +/obj/machinery/corral_corner{ + mapping_id = "3" + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"wGQ" = ( +/obj/effect/turf_decal/bot_white/left, +/obj/structure/window/reinforced/plasma/spawner/directional/east, +/turf/open/floor/engine, +/area/station/engineering/gravity_generator) +"wGX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 6 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"wHd" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/effect/landmark/start/atmospheric_technician, +/turf/open/floor/iron/small, +/area/station/engineering/atmos/office) +"wHi" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"wHr" = ( +/obj/effect/turf_decal/lunar_sand/plating, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"wHH" = ( +/turf/closed/wall, +/area/station/maintenance/starboard/lesser) +"wHN" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/obj/structure/cable, +/obj/item/kirbyplants/fern, +/turf/open/floor/wood, +/area/station/command/heads_quarters/captain) +"wHP" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"wHX" = ( +/obj/machinery/light/floor/has_bulb, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible/layer2, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"wHZ" = ( +/obj/effect/spawner/random/trash/food_packaging, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"wIp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"wIt" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/iron, +/area/station/science/xenobiology) +"wIv" = ( +/obj/structure/bed/double{ + dir = 4 + }, +/obj/effect/spawner/random/bedsheet/double{ + dir = 1 + }, +/turf/open/floor/wood, +/area/station/commons/dorms/room5) +"wID" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/large, +/area/station/service/chapel) +"wIF" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/cargo/office) +"wIM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple/half{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/cargo/storage) +"wIS" = ( +/obj/effect/turf_decal/tile/brown/anticorner/contrasted, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/machinery/computer/cargo/request{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark, +/area/station/cargo/lobby) +"wJa" = ( +/obj/effect/turf_decal/tile/purple, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/item/kirbyplants/synthetic/plant27, +/turf/open/floor/iron/white/side{ + dir = 4 + }, +/area/station/science/research) +"wJl" = ( +/obj/effect/spawner/random/trash/garbage, +/obj/effect/mapping_helpers/burnt_floor, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/central) +"wJm" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/spawner/random/engineering/canister, +/turf/open/floor/iron, +/area/station/maintenance/port/aft) +"wJo" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/station/service/library/lounge) +"wJr" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"wJz" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_y = 3 + }, +/obj/item/storage/fancy/donut_box{ + pixel_y = -12 + }, +/turf/open/floor/wood, +/area/station/service/library/lounge) +"wJA" = ( +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"wJE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/maintenance/abandon_surgery) +"wJX" = ( +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/diagonal, +/area/station/security/courtroom) +"wJY" = ( +/obj/structure/table/wood, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/item/reagent_containers/cup/glass/shaker{ + pixel_x = -6; + pixel_y = 12 + }, +/obj/item/holosign_creator/robot_seat/bar{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/reagent_containers/cup/rag{ + pixel_y = 3 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/bar) +"wKi" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"wKt" = ( +/obj/machinery/firealarm/directional/west, +/obj/machinery/light_switch/directional/west{ + pixel_y = -9 + }, +/obj/machinery/light/red/directional/west, +/turf/open/floor/iron/dark/small, +/area/station/bitrunning/den) +"wKw" = ( +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/commons/vacant_room/commissary) +"wKy" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"wKA" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"wKD" = ( +/obj/item/radio/intercom/directional/west{ + freerange = 1; + listening = 0; + name = "Common Channel"; + pixel_x = -25; + pixel_y = 2 + }, +/obj/item/radio/intercom/directional/east{ + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_x = 25; + pixel_y = -11 + }, +/obj/effect/landmark/start/ai, +/obj/machinery/turretid{ + icon_state = "control_stun"; + name = "AI Chamber turret control"; + pixel_x = 32; + pixel_y = -32 + }, +/obj/structure/cable, +/obj/machinery/button/door/directional/south{ + id = "AI Chamber Entrance Shutters"; + name = "AI Chamber Entrance Shutters Control"; + req_access = list("ai_upload"); + pixel_x = 6 + }, +/obj/machinery/button/door/directional/south{ + id = "AI Core shutters"; + name = "AI Core Shutters Control"; + req_access = list("ai_upload"); + pixel_x = -6 + }, +/obj/item/radio/intercom/directional/west{ + freerange = 1; + frequency = 1447; + name = "Private Channel"; + pixel_x = -25; + pixel_y = -11; + listening = 0 + }, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/ai) +"wKK" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/turf/open/floor/glass, +/area/station/service/barber) +"wKV" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm/directional/west, +/obj/machinery/photocopier, +/turf/open/floor/wood/large, +/area/station/service/library) +"wKY" = ( +/obj/effect/spawner/random/mod/maint, +/obj/structure/closet/crate, +/obj/effect/spawner/random/maintenance/three, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/station/maintenance/central) +"wLb" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/common/arcade) +"wLm" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"wLs" = ( +/obj/machinery/door/airlock/maintenance/external{ + name = "Auxiliary Ordinance Lab" + }, +/obj/effect/mapping_helpers/airlock/welded, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"wLx" = ( +/turf/open/floor/engine, +/area/station/science/xenobiology) +"wLz" = ( +/obj/structure/lattice/catwalk, +/obj/structure/window/spawner/directional/east, +/obj/structure/window/spawner/directional/west, +/obj/structure/window/spawner/directional/north, +/obj/structure/window/spawner/directional/south, +/obj/structure/marker_beacon/olive, +/turf/open/openspace, +/area/station/service/hydroponics/upper) +"wLI" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/side, +/area/station/hallway/primary/starboard) +"wLJ" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch" + }, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"wLQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/table/wood, +/obj/structure/window/spawner/directional/north, +/obj/structure/window/spawner/directional/west, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/wood/tile, +/area/station/hallway/secondary/exit/departure_lounge) +"wLT" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/structure/chair/office, +/obj/effect/landmark/start/hangover, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/common/arcade) +"wMe" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible{ + dir = 9 + }, +/turf/open/space/openspace, +/area/space/nearstation) +"wMl" = ( +/turf/closed/wall, +/area/station/maintenance/department/cargo) +"wMn" = ( +/obj/effect/turf_decal/tile/dark_blue/half{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/security/brig/entrance) +"wMu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Departures Lounge" + }, +/obj/structure/sign/directions/evac/directional/north{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/exit) +"wMJ" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light/warm/directional/west, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"wMM" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/supply/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/station/engineering/atmos) +"wMR" = ( +/obj/machinery/door/window/elevator/left/directional/north{ + elevator_mode = 1; + elevator_linked_id = "cargo_lobbylift" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/effect/turf_decal/loading_area, +/obj/effect/turf_decal/caution/stand_clear{ + pixel_x = 16 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/light/warm/directional/west, +/obj/machinery/button/elevator/directional/west{ + id = "cargo_lobbylift"; + req_access = list("cargo"); + pixel_x = -26 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"wMV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/blueshield, +/obj/machinery/vending/wallmed/directional/south, +/obj/machinery/light/warm/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/blueshield) +"wMZ" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/structure/sink/kitchen/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/service/barber) +"wNk" = ( +/obj/machinery/door/airlock/hatch{ + name = "Maintenance Hatch" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"wNI" = ( +/obj/effect/turf_decal/lunar_sand, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/firealarm/directional/east, +/obj/machinery/corral_corner{ + mapping_id = "5" + }, +/turf/open/floor/plating, +/area/station/science/xenobiology) +"wNL" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/light/cold/directional/east, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"wNO" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/execution/education) +"wNR" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/light/warm/directional/west, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/bed/dogbed/renault, +/mob/living/basic/pet/fox/renault, +/turf/open/floor/wood, +/area/station/command/heads_quarters/captain) +"wNU" = ( +/obj/item/stack/rods/two, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"wNZ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/light/small/blacklight/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/maintenance/abandon_surgery) +"wOd" = ( +/obj/structure/flora/bush/large/style_random, +/turf/open/floor/grass, +/area/station/science/genetics) +"wOi" = ( +/obj/structure/stairs/north, +/turf/open/floor/plating, +/area/station/maintenance/starboard/lesser) +"wOj" = ( +/turf/open/floor/iron/dark/small, +/area/station/bitrunning/den) +"wOt" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/engineering/supermatter/room) +"wOR" = ( +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/engineering/transit_tube) +"wOT" = ( +/obj/machinery/light/warm/directional/west, +/obj/structure/railing, +/turf/open/openspace, +/area/station/engineering/lobby) +"wPa" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/chair/office/light, +/obj/structure/cable, +/obj/effect/landmark/start/scientist, +/turf/open/floor/iron/dark/small, +/area/station/science/circuits) +"wPb" = ( +/obj/structure/hedge, +/obj/structure/window/fulltile, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/primary/starboard) +"wPd" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/closet/secure_closet/miner, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) +"wPe" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"wPj" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/secondary/entry) +"wPp" = ( +/obj/structure/table/wood, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/wood, +/area/station/commons/dorms/room1) +"wPr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/obj/effect/landmark/start/assistant, +/turf/open/floor/eighties, +/area/station/common/arcade) +"wPD" = ( +/obj/structure/chair/stool/bar/directional/north, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/tile, +/area/station/service/bar) +"wPO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/requests_console/auto_name/directional/north, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/mapping_helpers/requests_console/ore_update, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron, +/area/station/engineering/atmos/office) +"wPV" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/food/donut/choco{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/security/checkpoint/science/research) +"wPX" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/science/cytology) +"wPY" = ( +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/station/engineering/atmos/upper) +"wQc" = ( +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/commons/dorms) +"wQz" = ( +/obj/effect/turf_decal/lunar_sand, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/glass/reinforced, +/area/station/science/cytology) +"wQD" = ( +/turf/closed/wall, +/area/station/common/wrestling/arena) +"wQS" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/station/cargo/office) +"wQW" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners{ + dir = 1 + }, +/obj/machinery/airalarm/directional/south, +/obj/structure/table/glass, +/obj/item/pai_card{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/hallway/primary/central/aft) +"wRf" = ( +/obj/structure/chair/pew/right, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/chapel{ + dir = 4 + }, +/area/station/service/chapel) +"wRj" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted, +/obj/effect/turf_decal/tile/blue/half/contrasted, +/obj/effect/turf_decal/tile/purple/half/contrasted, +/obj/structure/closet/crate/bin, +/obj/item/vending_refill/donksoft, +/obj/item/circuitboard/machine/vending/donksofttoyvendor, +/obj/structure/railing, +/obj/machinery/airalarm/directional/north, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/common/arcade) +"wRn" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airalarm/tlv_no_checks, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"wRp" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/command/heads_quarters/qm) +"wRw" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "sci-entrance" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/general, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/machinery/door/airlock/research/glass{ + name = "Research and Development Lab" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/research) +"wRM" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/turf/open/floor/plating, +/area/station/maintenance/disposal/incinerator) +"wRX" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Canteen - Coldroom" + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/tile, +/area/station/service/kitchen) +"wSf" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/ai_monitored/turret_protected/ai_upload) +"wSD" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/structure/bed/dogbed{ + anchored = 1; + name = "Jerry's bed" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/mob/living/simple_animal/pet/cat/jerry, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"wSK" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/openspace, +/area/station/maintenance/port/lesser) +"wSM" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/service/hydroponics/garden) +"wSP" = ( +/obj/effect/decal/cleanable/glass, +/obj/effect/decal/cleanable/generic, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"wSU" = ( +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron, +/area/station/maintenance/solars/port/fore) +"wSW" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/spawner/random/engineering/atmospherics_portable, +/obj/structure/sign/poster/random/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"wTb" = ( +/turf/closed/wall, +/area/station/maintenance/abandon_cafeteria/hydro) +"wTd" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/machinery/atmospherics/pipe/smart/simple/violet/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/engineering/atmos/upper) +"wTx" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/cable, +/obj/effect/spawner/random/engineering/atmospherics_portable, +/turf/open/floor/plating, +/area/station/maintenance/department/science/xenobiology) +"wTI" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 6 + }, +/turf/open/floor/engine/hull, +/area/space/nearstation) +"wTK" = ( +/turf/open/floor/iron/freezer, +/area/station/maintenance/port/greater) +"wTL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"wTQ" = ( +/obj/machinery/atmospherics/pipe/multiz/yellow/visible{ + dir = 1 + }, +/obj/effect/turf_decal/box/corners, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos) +"wUc" = ( +/obj/structure/railing, +/turf/open/openspace, +/area/station/engineering/atmos/hfr_room) +"wUe" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/obj/machinery/rnd/production/techfab/department/medical, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/storage) +"wUj" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/requests_console/auto_name/directional/west, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/mapping_helpers/requests_console/announcement, +/obj/effect/mapping_helpers/requests_console/information, +/obj/item/radio/intercom/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/vending/wardrobe/sec_wardrobe, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/checkpoint/escape) +"wUH" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/marker_beacon/teal, +/turf/open/floor/glass/reinforced, +/area/station/ai_monitored/turret_protected/ai) +"wUI" = ( +/obj/structure/table, +/obj/effect/spawner/random/engineering/vending_restock, +/obj/effect/spawner/random/engineering/tool, +/obj/structure/sign/poster/random/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"wUK" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/obj/machinery/meter, +/turf/open/floor/engine, +/area/station/engineering/atmos) +"wUP" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"wUQ" = ( +/obj/machinery/space_heater, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/security/execution/education) +"wUS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"wUT" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) +"wVa" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/machinery/duct, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"wVc" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/spawner/random/structure/closet_private, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/commons/dorms/room1) +"wVg" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/turf_decal/tile/brown/half/contrasted, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/cargo/office) +"wVj" = ( +/turf/closed/mineral/random/stationside/moon, +/area/space) +"wVn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"wVs" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/chair/office, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/escape) +"wVu" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/landmark/start/janitor, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/service/janitor) +"wVx" = ( +/turf/closed/wall, +/area/station/medical/medbay/lobby) +"wVC" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/machinery/meter, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"wVE" = ( +/obj/effect/turf_decal/vg_decals/atmos/plasma, +/turf/open/floor/engine/plasma, +/area/station/engineering/atmos/upper) +"wVH" = ( +/turf/open/openspace, +/area/station/medical/pharmacy) +"wVQ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/hydroponics) +"wWy" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/escape) +"wWB" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/openspace, +/area/station/service/janitor) +"wWD" = ( +/obj/structure/table, +/obj/item/grenade/smokebomb{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/book/manual/wiki/grenades{ + pixel_x = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"wWT" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/vg_decals/numbers/two, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"wXl" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/security/brig/entrance) +"wXq" = ( +/obj/effect/decal/cleanable/confetti, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/eighties, +/area/station/common/arcade) +"wXB" = ( +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 10 + }, +/obj/structure/rack/shelf, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/iron/white/diagonal, +/area/station/common/spa) +"wXC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron, +/area/station/maintenance/disposal/incinerator) +"wXJ" = ( +/obj/structure/rack/shelf, +/obj/item/pipe_dispenser{ + pixel_x = -1; + pixel_y = 2 + }, +/obj/item/pipe_dispenser{ + pixel_y = -2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white/side, +/area/station/science/ordnance) +"wXL" = ( +/obj/structure/toilet/greyscale{ + dir = 4 + }, +/obj/machinery/light/small/directional/west, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"wXZ" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/openspace, +/area/station/maintenance/starboard/greater) +"wYc" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/machinery/plumbing/ooze_compressor, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"wYg" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"wYv" = ( +/obj/machinery/light/warm/directional/west, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/openspace, +/area/station/engineering/main) +"wYx" = ( +/obj/effect/turf_decal/tile/dark_blue, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/security/holding_cell) +"wYz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"wYT" = ( +/obj/structure/railing{ + dir = 10 + }, +/turf/open/openspace, +/area/station/engineering/atmos/upper) +"wZj" = ( +/obj/effect/turf_decal/siding/white{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/iv_drip, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/medical/treatment_center) +"wZl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/white/small, +/area/station/medical/surgery/theatre) +"wZq" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/engineering/atmos/hfr_room) +"wZy" = ( +/obj/effect/turf_decal/tile/blue/full, +/obj/effect/turf_decal/tile/dark_blue/full, +/obj/structure/chair/comfy{ + color = "#596479"; + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) +"wZE" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/machinery/door/airlock/atmos/glass{ + name = "HFR Access" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos/hfr_room) +"wZM" = ( +/obj/structure/railing, +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/simple/violet/visible{ + dir = 4 + }, +/obj/machinery/light/warm/directional/south, +/turf/open/openspace, +/area/station/engineering/atmos/upper) +"wZT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/service/kitchen/coldroom) +"xab" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/ammo_workbench/unlocked, +/turf/open/floor/engine, +/area/station/ai_monitored/security/armory) +"xac" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_x = -7; + pixel_y = 3 + }, +/obj/machinery/recharger{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/security/office) +"xah" = ( +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/maintenance/port/lesser) +"xap" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Holodeck Access" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/recreation) +"xaC" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/dark/end, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central/fore) +"xaD" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners{ + dir = 1 + }, +/obj/structure/table, +/turf/open/floor/iron/checker, +/area/station/maintenance/abandon_diner) +"xaO" = ( +/obj/effect/turf_decal/trimline/green/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/corner, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/hydroponics) +"xaP" = ( +/turf/closed/wall, +/area/station/commons/storage/primary) +"xaR" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair/comfy{ + color = "#596479"; + dir = 8 + }, +/obj/machinery/airalarm/directional/north, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood/large, +/area/station/service/chapel/office) +"xbc" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/cable/multilayer/multiz, +/turf/open/floor/plating, +/area/station/tcommsat/server) +"xbr" = ( +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/station/medical/psychology) +"xbJ" = ( +/obj/effect/turf_decal/bot_white, +/obj/structure/reagent_dispensers/watertank, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/iron, +/area/station/service/hydroponics/garden) +"xbZ" = ( +/obj/machinery/door/airlock/external{ + name = "Labor Camp Shuttle Airlock"; + shuttledocked = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/turf/open/floor/plating, +/area/station/security/corrections_officer) +"xcb" = ( +/turf/closed/wall/r_wall, +/area/station/medical/medbay/lobby) +"xcg" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/open/floor/iron, +/area/station/maintenance/disposal/incinerator) +"xcy" = ( +/obj/structure/trash_pile, +/turf/open/floor/plating, +/area/station/maintenance/department/bridge) +"xcz" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"xcE" = ( +/obj/effect/spawner/random/trash/grime, +/obj/structure/sign/poster/random/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"xcG" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/white/side{ + dir = 6 + }, +/area/station/hallway/primary/central/fore) +"xcH" = ( +/obj/effect/spawner/random/trash/food_packaging, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"xcP" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/openspace, +/area/station/engineering/main) +"xcR" = ( +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"xdc" = ( +/obj/structure/rack, +/obj/item/book/manual/wiki/engineering_guide{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/effect/spawner/random/maintenance, +/obj/effect/spawner/random/trash/janitor_supplies, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"xdj" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"xdl" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/airalarm/directional/east, +/obj/machinery/light/warm/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/commons/storage/tools) +"xdr" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Cargo Lobby" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/smooth_large, +/area/station/cargo/lobby) +"xdt" = ( +/obj/effect/turf_decal/tile/yellow/anticorner{ + dir = 1 + }, +/obj/machinery/airalarm/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/smooth_corner, +/area/station/medical/pharmacy) +"xdO" = ( +/obj/machinery/suit_storage_unit/atmos, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos/storage) +"xej" = ( +/obj/machinery/ntnet_relay, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/station/tcommsat/server) +"xeI" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"xeU" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central) +"xeW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/showroomfloor, +/area/station/science/robotics/augments) +"xfg" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/robotics/lab) +"xfl" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/exit/departure_lounge) +"xfw" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/glass/reinforced, +/area/station/hallway/primary/starboard) +"xfy" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"xfC" = ( +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/security/checkpoint/supply) +"xfD" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/engineering/main) +"xfJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/ordnance/testlab) +"xfN" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "interrogation"; + name = "Privacy Shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/hallway/secondary/command) +"xfY" = ( +/obj/machinery/door/morgue{ + name = "Massage Lounge" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/barber) +"xgl" = ( +/obj/effect/turf_decal/weather/dirt, +/obj/effect/turf_decal/weather/dirt{ + dir = 1 + }, +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/firealarm/directional/west, +/obj/machinery/light/warm/directional/west, +/turf/open/floor/grass, +/area/station/security/prison) +"xgp" = ( +/obj/machinery/requests_console/auto_name/directional/west, +/obj/effect/mapping_helpers/requests_console/announcement, +/obj/effect/mapping_helpers/requests_console/information, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/machinery/light/warm/directional/west, +/obj/machinery/computer/records/medical/laptop{ + dir = 4 + }, +/obj/structure/table/reinforced, +/turf/open/floor/carpet/blue, +/area/station/command/heads_quarters/cmo) +"xgw" = ( +/obj/machinery/camera/directional/east{ + c_tag = "Departures - Lower Hallway" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/tile/red/real_red{ + dir = 4 + }, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"xgx" = ( +/turf/open/floor/plating/airless, +/area/space/nearstation) +"xgB" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/glass/reinforced, +/area/station/hallway/primary/port) +"xgN" = ( +/obj/machinery/oven, +/obj/machinery/light/cold/dim/directional/north, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/kitchen/diagonal, +/area/station/maintenance/abandon_diner) +"xgP" = ( +/turf/open/floor/plating, +/area/station/cargo/storage) +"xhf" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"xhg" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"xhh" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/machinery/plumbing/ooze_compressor, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"xhu" = ( +/obj/machinery/recharge_station, +/obj/effect/turf_decal/bot, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/science/robotics/mechbay) +"xhS" = ( +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/escape) +"xhY" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/hallway/primary/central/aft) +"xig" = ( +/obj/structure/ore_vein/plasma, +/turf/open/misc/asteroid/moon/airless, +/area/station/asteroid) +"xii" = ( +/obj/structure/stairs/west, +/turf/open/floor/plating, +/area/station/cargo/storage) +"xil" = ( +/obj/machinery/air_sensor/carbon_tank, +/turf/open/floor/engine/co2, +/area/station/engineering/atmos/upper) +"xis" = ( +/mob/living/simple_animal/bot/secbot/beepsky/armsky, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/diagonal, +/area/station/ai_monitored/security/armory) +"xiT" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/structure/rack/shelf, +/obj/item/reagent_containers/hypospray/medipen/blood_loss, +/turf/open/floor/iron/white, +/area/station/medical/pharmacy) +"xiU" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"xiW" = ( +/turf/closed/wall, +/area/station/security/prison) +"xiX" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/customs) +"xjd" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/service/chapel/office) +"xjf" = ( +/obj/structure/sink/directional/east, +/obj/structure/mirror/directional/west, +/turf/open/floor/iron/white/small, +/area/station/commons/toilet/restrooms) +"xjl" = ( +/obj/structure/bookcase/random/fiction, +/turf/open/floor/wood, +/area/station/service/library/lounge) +"xjm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/cable/multilayer/multiz, +/obj/machinery/camera/directional/west{ + c_tag = "Solar Maintenance - Aft Starboard" + }, +/turf/open/floor/plating, +/area/station/maintenance/solars/starboard/aft) +"xjv" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/flora/rock/pile/style_random, +/turf/open/misc/asteroid/moon, +/area/station/science/cytology) +"xjy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/roboticist, +/turf/open/floor/iron/dark, +/area/station/science/robotics/mechbay) +"xjB" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/item/kirbyplants/organic/plant17, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/wood/large, +/area/station/service/barber) +"xjC" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_y = 17 + }, +/obj/item/pen{ + pixel_y = 17 + }, +/obj/item/flashlight/lamp{ + pixel_y = 2; + pixel_x = -4 + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/wood/large, +/area/station/service/library) +"xjL" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/spawner/random/structure/steam_vent, +/turf/open/floor/plating, +/area/station/maintenance/starboard/lesser) +"xjR" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering Storage" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/storage) +"xjZ" = ( +/obj/structure/chair, +/turf/open/floor/carpet/purple, +/area/station/security/courtroom) +"xkb" = ( +/obj/effect/decal/cleanable/glass, +/obj/machinery/light/broken/directional/south, +/turf/open/floor/engine, +/area/station/medical/chemistry) +"xkd" = ( +/obj/effect/turf_decal/tile/dark_red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 4 + }, +/area/station/science/robotics/lab) +"xkh" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"xki" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"xkw" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/department/bridge) +"xkE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/department/science/xenobiology) +"xkH" = ( +/obj/structure/rack, +/obj/item/tank/jetpack/carbondioxide{ + pixel_x = -9; + pixel_y = 7 + }, +/obj/item/tank/jetpack/carbondioxide{ + pixel_x = -9; + pixel_y = -1 + }, +/obj/item/tank/jetpack/carbondioxide{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/item/tank/jetpack/carbondioxide{ + pixel_x = 7; + pixel_y = -1 + }, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/command/storage/eva) +"xlg" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"xln" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Janitorial" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/prison) +"xlr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/white/side{ + dir = 1 + }, +/area/station/medical/pharmacy) +"xls" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/item/crowbar/red, +/obj/item/restraints/handcuffs, +/obj/item/wrench, +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/virology) +"xlH" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 8 + }, +/turf/open/space/basic, +/area/space/nearstation) +"xlL" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/office) +"xlU" = ( +/obj/structure/chair/office, +/obj/machinery/firealarm/directional/east, +/obj/machinery/light/cold/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/security/checkpoint/science/research) +"xlZ" = ( +/turf/open/floor/glass/reinforced, +/area/station/hallway/secondary/exit) +"xme" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"xmh" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/treatment_center) +"xmp" = ( +/obj/effect/turf_decal/siding/dark_blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/holding_cell) +"xmr" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/structure/sink/directional/west, +/turf/open/floor/wood/large, +/area/station/service/bar) +"xmu" = ( +/obj/effect/spawner/random/trash/cigbutt, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"xna" = ( +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/machinery/computer/order_console/cook{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/diagonal, +/area/station/hallway/secondary/service) +"xnc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"xnf" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder{ + pixel_y = 8 + }, +/obj/item/stack/sheet/mineral/plasma{ + amount = 5 + }, +/obj/item/reagent_containers/cup/beaker/large, +/obj/item/reagent_containers/cup/beaker/large, +/obj/item/reagent_containers/dropper, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"xng" = ( +/obj/machinery/door/airlock/hatch{ + name = "Maintenance Hatch" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"xnp" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/machinery/camera/directional/west{ + c_tag = "Upper Central Primary Hallway - Medbay Foyer" + }, +/turf/open/floor/iron/white/side{ + dir = 9 + }, +/area/station/hallway/primary/central/fore) +"xnJ" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners, +/obj/structure/closet/athletic_mixed, +/turf/open/floor/iron/cafeteria{ + dir = 8 + }, +/area/station/service/salon) +"xnS" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/dark/end{ + dir = 8 + }, +/turf/open/floor/iron/small, +/area/station/hallway/primary/starboard) +"xof" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/hallway/primary/port) +"xop" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"xox" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/edge, +/area/station/engineering/storage) +"xoz" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"xoA" = ( +/obj/structure/hedge, +/obj/structure/window/reinforced/tinted/fulltile, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/patients_rooms) +"xoC" = ( +/turf/closed/wall, +/area/station/medical/surgery/theatre) +"xoS" = ( +/obj/machinery/disease2/incubator, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"xoT" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/station/maintenance/department/security/upper) +"xoV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"xpi" = ( +/obj/structure/hedge, +/obj/structure/window/fulltile, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) +"xpm" = ( +/obj/effect/spawner/random/structure/girder, +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"xpu" = ( +/obj/structure/table/wood, +/obj/machinery/coffeemaker/impressa{ + pixel_y = 5; + pixel_x = 2 + }, +/obj/machinery/camera/directional/south{ + c_tag = "Departures - Lounge Aft" + }, +/turf/open/floor/wood/tile, +/area/station/hallway/secondary/exit/departure_lounge) +"xpB" = ( +/obj/structure/chair/office, +/obj/effect/turf_decal/tile/dark_blue, +/obj/effect/landmark/start/security_officer, +/obj/structure/disposalpipe/sorting/mail, +/obj/effect/mapping_helpers/mail_sorting/security/general, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/security/office) +"xpE" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/machinery/camera/directional/south{ + c_tag = "Command Hallway - Aft Port" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/hallway/secondary/command) +"xpQ" = ( +/turf/closed/wall, +/area/station/medical/pharmacy) +"xqb" = ( +/obj/effect/turf_decal/lunar_sand/plating, +/turf/open/floor/engine/hull, +/area/station/asteroid) +"xqc" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/machinery/airalarm/directional/east, +/obj/machinery/camera/directional/south{ + c_tag = "Guard Post - Science"; + network = list("ss13","rd") + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/security/checkpoint/science/research) +"xqu" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron/white, +/area/station/hallway/primary/starboard) +"xqz" = ( +/obj/effect/turf_decal/box, +/obj/machinery/computer/records/security{ + dir = 8 + }, +/obj/machinery/firealarm/directional/east, +/obj/machinery/light/cold/directional/south, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/security/checkpoint/medical) +"xqE" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/glass/reinforced, +/area/station/hallway/primary/central/fore) +"xqL" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/bot, +/obj/machinery/space_heater, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/storage/mining) +"xqN" = ( +/obj/item/stack/sheet/iron/five, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"xro" = ( +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/mid_joiner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/medical/morgue) +"xrp" = ( +/turf/open/openspace, +/area/station/science/ordnance/office) +"xrI" = ( +/obj/structure/railing, +/turf/open/floor/glass/reinforced, +/area/station/hallway/primary/port) +"xrK" = ( +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 1 + }, +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/requests_console/auto_name/directional/west, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/mapping_helpers/requests_console/information, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/customs) +"xsq" = ( +/obj/effect/spawner/random/trash/grime, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"xsG" = ( +/obj/structure/chair/comfy{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/wood, +/area/station/commons/dorms/room3) +"xsO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/directional/north, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/dark/diagonal, +/area/station/commons/fitness/recreation) +"xsW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"xtd" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/simple/violet/visible{ + dir = 6 + }, +/turf/open/space/openspace, +/area/space/nearstation) +"xte" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green, +/turf/open/floor/wood, +/area/station/commons/dorms/room1) +"xtg" = ( +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"xtt" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "pharmacy_shutters_2"; + name = "Chemlab Shutters"; + dir = 8 + }, +/turf/open/floor/plating, +/area/station/medical/pharmacy) +"xtv" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners{ + dir = 1 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/hallway/primary/central/aft) +"xty" = ( +/obj/machinery/light/cold/directional/west, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/science/ordnance/office) +"xtO" = ( +/turf/open/floor/grass, +/area/station/service/hydroponics/upper) +"xtX" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/brig/entrance) +"xuj" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/cerulean, +/turf/open/space/basic, +/area/space/nearstation) +"xum" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Departures Hallway" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/exit) +"xux" = ( +/obj/structure/lattice/catwalk, +/obj/structure/ladder, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/openspace, +/area/station/maintenance/port/greater) +"xuB" = ( +/turf/closed/mineral/random/stationside/moon, +/area/station/asteroid) +"xuC" = ( +/obj/effect/turf_decal/lunar_sand/plating, +/obj/machinery/light/cold/directional/east, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/science/xenobiology) +"xuK" = ( +/obj/machinery/door/window/left/directional/north{ + req_access = "service" + }, +/obj/effect/turf_decal/siding/wood/end{ + dir = 1 + }, +/turf/open/floor/carpet/green, +/area/station/hallway/secondary/exit/departure_lounge) +"xuM" = ( +/obj/structure/lattice/catwalk, +/obj/structure/ladder, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/openspace, +/area/station/maintenance/aft/greater) +"xuS" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/sign/painting/library{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/station/maintenance/aft/greater) +"xuX" = ( +/turf/open/floor/wood, +/area/station/command/meeting_room/council) +"xvc" = ( +/obj/machinery/shower/directional/south, +/obj/effect/turf_decal/trimline/blue/end, +/obj/structure/drain, +/turf/open/floor/iron/white/small, +/area/station/medical/virology) +"xvn" = ( +/obj/machinery/vending/imported/yangyu, +/obj/effect/turf_decal/bot_white, +/obj/machinery/firealarm/directional/north, +/obj/item/toy/figure/scientist{ + pixel_y = 16 + }, +/turf/open/floor/wood/large, +/area/station/science/breakroom) +"xvx" = ( +/obj/effect/turf_decal/tile/dark_blue/half{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/security/medical) +"xvz" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"xvD" = ( +/obj/item/stack/sheet/cardboard, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/spawner/random/maintenance, +/obj/effect/spawner/random/engineering/flashlight, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"xvK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/white/small, +/area/station/medical/paramedic) +"xvW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"xwo" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/machinery/light/cold/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 1 + }, +/area/station/security/medical) +"xwB" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/scrubber/huge, +/obj/structure/lattice, +/turf/open/openspace, +/area/station/engineering/main) +"xwG" = ( +/obj/structure/bed/double, +/obj/item/bedsheet/ce/double, +/turf/open/floor/carpet/black, +/area/station/command/heads_quarters/ce) +"xxd" = ( +/turf/open/floor/iron/dark/small, +/area/station/commons/dorms/room4) +"xxw" = ( +/obj/machinery/portable_atmospherics/canister/plasma, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/small, +/area/station/science/ordnance) +"xxz" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/marker_beacon/cerulean, +/obj/structure/lattice/catwalk, +/turf/open/floor/engine/hull/reinforced, +/area/station/asteroid) +"xxE" = ( +/obj/machinery/restaurant_portal/bar, +/obj/effect/turf_decal/bot, +/turf/open/floor/wood/large, +/area/station/service/bar) +"xxH" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_half, +/area/station/cargo/storage) +"xxK" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"xxM" = ( +/obj/effect/turf_decal/box, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/recreation) +"xxP" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4 + }, +/obj/effect/mapping_helpers/mail_sorting/service/hop_office, +/turf/open/floor/iron/dark/small, +/area/station/command/bridge) +"xxW" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/structure/closet/radiation, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/station/engineering/supermatter/room) +"xyg" = ( +/obj/effect/turf_decal/tile/dark/diagonal_edge, +/obj/structure/sink/kitchen/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/kitchen/diagonal, +/area/station/security/prison) +"xyh" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/security/corrections_officer) +"xyi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/engineering/atmos/hfr_room) +"xyn" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/machinery/firealarm/directional/north, +/obj/machinery/light/warm/directional/north, +/obj/structure/cable, +/turf/open/floor/wood, +/area/station/command/heads_quarters/nt_rep) +"xyr" = ( +/obj/effect/turf_decal/siding/white{ + dir = 10 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/medical/medbay/central) +"xyv" = ( +/obj/structure/closet/firecloset, +/obj/structure/sign/poster/random/directional/south, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"xyz" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/obj/structure/sign/warning/deathsposal/directional/north, +/obj/machinery/disposal/bin{ + desc = "A pneumatic waste disposal unit. This one leads to the frozen exterior of the moon."; + name = "deathsposal unit" + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/science/ordnance/testlab) +"xyC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/janitor) +"xyE" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/service/chapel/funeral) +"xyP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/science/circuits) +"xyQ" = ( +/turf/closed/wall/r_wall, +/area/station/command/heads_quarters/qm) +"xyT" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 1 + }, +/area/station/security/range) +"xza" = ( +/obj/structure/cable, +/obj/machinery/power/smes, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/solars/port/aft) +"xzj" = ( +/turf/closed/wall, +/area/station/commons/lounge) +"xzG" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/mid_joiner{ + dir = 8 + }, +/obj/machinery/vending/hydroseeds, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/service/hydroponics) +"xzO" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external/glass{ + name = "External Access"; + space_dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/obj/effect/mapping_helpers/airlock/unres, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"xzS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/science/xenobiology) +"xzU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"xAa" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/bed/dogbed/runtime, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/mob/living/simple_animal/pet/cat/runtime, +/obj/structure/cable, +/turf/open/floor/wood, +/area/station/command/heads_quarters/cmo) +"xAb" = ( +/obj/structure/chair/comfy/black, +/obj/effect/landmark/start/head_of_security, +/turf/open/floor/carpet, +/area/station/command/heads_quarters/hos) +"xAe" = ( +/obj/effect/spawner/random/decoration/material, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"xAm" = ( +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/bot_white, +/obj/machinery/airalarm/directional/south, +/obj/machinery/light/warm/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/science/breakroom) +"xAx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/security/processing) +"xAG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron, +/area/station/engineering/atmos) +"xAN" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/folder/red{ + pixel_y = 4 + }, +/obj/item/hand_labeler{ + pixel_y = 2 + }, +/obj/machinery/door/window/brigdoor/left/directional/south{ + name = "Customs Desk"; + req_one_access = list("security") + }, +/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/escape) +"xAT" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/machinery/camera/directional/east{ + c_tag = "Upper Central Primary Hallway - Brig Desk" + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/hallway/primary/central/aft) +"xBb" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron, +/area/station/maintenance/port/aft) +"xBg" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"xBq" = ( +/obj/item/radio/intercom/directional/east, +/obj/machinery/camera/directional/east{ + c_tag = "Atmospherics - HFR Overlook"; + network = list("ss13","engine") + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/engineering/atmos/hfr_room) +"xBr" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/glass, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"xBF" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/department/security/upper) +"xBP" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + name = "Gas to Cold Loop"; + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"xBR" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/closet/secure_closet/security/sec, +/turf/open/floor/engine, +/area/station/security/lockers) +"xBS" = ( +/obj/effect/turf_decal/bot_white, +/turf/open/floor/engine, +/area/station/engineering/gravity_generator) +"xBV" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"xBZ" = ( +/obj/machinery/light/directional/south, +/obj/machinery/firealarm/directional/east, +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/end, +/turf/open/floor/wood/large, +/area/station/commons/storage/mining) +"xCj" = ( +/obj/structure/cable, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/maintenance/starboard/fore) +"xCo" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/spawner/random/engineering/tank, +/turf/open/floor/plating, +/area/station/maintenance/starboard/lesser) +"xCq" = ( +/obj/effect/turf_decal/tile/green/opposingcorners, +/obj/structure/sign/directions/evac/directional/north{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/checker{ + dir = 1 + }, +/area/station/hallway/primary/central/fore) +"xCO" = ( +/obj/effect/spawner/random/trash/grime, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"xCR" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"xCS" = ( +/turf/closed/wall, +/area/station/service/kitchen) +"xCW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"xDc" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 6 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) +"xDe" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"xDj" = ( +/turf/open/openspace, +/area/station/maintenance/aft/greater) +"xDu" = ( +/obj/effect/turf_decal/tile/purple/half{ + dir = 1 + }, +/obj/item/kirbyplants/random/dead/research_director, +/obj/machinery/airalarm/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/white/smooth_edge{ + dir = 1 + }, +/area/station/command/heads_quarters/rd) +"xDv" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/blue/line{ + dir = 8 + }, +/obj/item/kirbyplants/synthetic/plant27, +/turf/open/floor/iron/dark, +/area/station/security/range) +"xDx" = ( +/obj/structure/chair/comfy/brown{ + buildstackamount = 0; + color = "#4169e1" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/landmark/start/captain, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain) +"xDz" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"xDI" = ( +/turf/closed/wall/r_wall, +/area/station/medical/medbay/central) +"xDM" = ( +/obj/item/clipboard{ + pixel_y = 4 + }, +/obj/effect/turf_decal/tile/dark_red/diagonal_centre, +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/security_space_law{ + pixel_y = 3; + pixel_x = -3 + }, +/turf/open/floor/iron/diagonal, +/area/station/security/courtroom) +"xDY" = ( +/obj/machinery/firealarm/directional/west, +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/white, +/area/station/medical/paramedic) +"xEc" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Crematorium Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/service/crematorium, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/service/chapel/funeral) +"xEd" = ( +/obj/machinery/holopad/secure, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet/black, +/area/station/command/heads_quarters/ce) +"xEh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/computer/records/medical{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/heads_quarters/hop) +"xEn" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/dresser, +/obj/item/kirbyplants/organic/plant2{ + pixel_y = 22; + pixel_x = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/iron, +/area/station/commons/dorms/room6) +"xEu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/cargo/storage) +"xEB" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/light/cold/directional/east, +/obj/effect/turf_decal/bot_blue, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Medbay - Cold Storage"; + network = list("ss13","medbay") + }, +/obj/machinery/airalarm/directional/north, +/obj/machinery/portable_atmospherics/canister/anesthetic_mix, +/turf/open/floor/iron/showroomfloor, +/area/station/medical/coldroom) +"xEQ" = ( +/turf/closed/wall, +/area/station/engineering/atmos/upper) +"xEX" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/tile, +/area/station/commons/lounge) +"xFa" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"xFe" = ( +/obj/structure/rack/shelf, +/obj/effect/spawner/random/engineering/tool, +/obj/effect/spawner/random/engineering/tool, +/obj/effect/spawner/random/engineering/tool, +/obj/effect/turf_decal/trimline/yellow/end{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/mid_joiner, +/obj/effect/turf_decal/trimline/yellow/mid_joiner{ + dir = 4 + }, +/obj/effect/spawner/random/engineering/material_cheap, +/obj/effect/spawner/random/engineering/material, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/iron/dark/small, +/area/station/hallway/primary/central/aft) +"xFh" = ( +/obj/effect/turf_decal/lunar_sand, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/components/binary/pump{ + name = "Port to Holding Pen"; + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"xFk" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/station/science/xenobiology) +"xFl" = ( +/obj/structure/reflector/double{ + dir = 6 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"xFq" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/security/entrance, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/security/glass{ + id_tag = "outerbrig"; + name = "Brig Entrance" + }, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/security/brig/entrance) +"xFv" = ( +/obj/structure/ladder, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/main) +"xFI" = ( +/turf/open/floor/iron, +/area/station/hallway/secondary/command) +"xFK" = ( +/obj/structure/sign/directions/evac/directional/north{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"xFX" = ( +/obj/effect/mapping_helpers/burnt_floor, +/obj/structure/holosign/barrier/engineering, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"xGg" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 1 + }, +/area/station/security/brig) +"xGi" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/station/maintenance/solars/starboard/aft) +"xGj" = ( +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) +"xGn" = ( +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"xGo" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/command/heads_quarters/hos) +"xGq" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/white, +/area/station/science/explab) +"xGJ" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/iron/kitchen/diagonal, +/area/station/maintenance/abandon_diner) +"xGR" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/machinery/light/cold/directional/south, +/obj/machinery/status_display/ai/directional/south, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/ai_monitored/turret_protected/aisat_interior) +"xGX" = ( +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/camera/directional/east{ + c_tag = "Atmospherics - HFR Core South"; + network = list("ss13","engine"); + dir = 6 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/hfr_room) +"xGY" = ( +/obj/effect/turf_decal/siding/dark_blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/command/meeting_room/council) +"xHl" = ( +/obj/item/kirbyplants/synthetic/plant27, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/security/eva) +"xHo" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"xHt" = ( +/obj/structure/table, +/obj/machinery/camera/directional/east{ + c_tag = "Bridge - Breakroom" + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/wood, +/area/station/command/meeting_room/council) +"xHw" = ( +/obj/structure/sign/directions/evac/directional/north{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Upper Central Primary Hallway - Atmospherics" + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"xHx" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/machinery/vending/drugs, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"xHD" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Atmospherics - Upper Deck Fore Starboard"; + network = list("ss13","engine") + }, +/turf/open/openspace, +/area/station/engineering/atmos/upper) +"xHV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/executive, +/area/station/command/heads_quarters/hop) +"xHW" = ( +/obj/structure/lattice, +/obj/structure/window/spawner/directional/east, +/obj/structure/window/spawner/directional/south, +/turf/open/openspace, +/area/station/security/prison/upper) +"xHZ" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/red/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark_red/corner{ + dir = 8 + }, +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"xIb" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue/half{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/security/corrections_officer) +"xId" = ( +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/departure_lounge) +"xIg" = ( +/turf/open/floor/iron/dark, +/area/station/common/wrestling/arena) +"xIj" = ( +/turf/closed/wall, +/area/station/maintenance/department/security/upper) +"xIk" = ( +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 1 + }, +/obj/item/storage/box/ids{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/storage/box/pdas{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/storage/box/silver_ids, +/obj/structure/table, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/command/heads_quarters/hop) +"xIB" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"xIG" = ( +/obj/structure/stairs/north, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"xIL" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"xIN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/edge, +/area/station/service/janitor) +"xIP" = ( +/obj/machinery/computer/scan_consolenew{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/genetics) +"xJi" = ( +/obj/machinery/airalarm/directional/north, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/command/teleporter) +"xJj" = ( +/obj/effect/turf_decal/bot, +/obj/effect/spawner/random/maintenance/two, +/obj/item/storage/box/lights/mixed, +/obj/item/stock_parts/cell/high/empty, +/obj/structure/closet/crate, +/turf/open/floor/iron/large, +/area/station/cargo/storage) +"xJu" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"xJv" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/engineering/transit_tube) +"xJA" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/security/brig/entrance) +"xJC" = ( +/obj/effect/turf_decal/weather/snow, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 8 + }, +/obj/structure/kitchenspike, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/service/kitchen/coldroom) +"xJI" = ( +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/brig/entrance) +"xJN" = ( +/obj/structure/hedge, +/obj/structure/window/fulltile, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms/room4) +"xJQ" = ( +/obj/structure/bed/double, +/obj/item/bedsheet/centcom/double, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/carpet/green, +/area/station/command/heads_quarters/nt_rep) +"xKb" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/structure/displaycase/captain, +/turf/open/floor/wood/parquet, +/area/station/command/heads_quarters/captain) +"xKk" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/hallway/secondary/exit/escape_pod) +"xKn" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"xKB" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"xKC" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/command/meeting_room/council) +"xKL" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light/small/directional/east, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/department/security/lower) +"xKN" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/maintenance/disposal/incinerator) +"xLw" = ( +/obj/structure/closet/crate/trashcart/laundry, +/obj/item/reagent_containers/hypospray/medipen, +/obj/item/toy/crayon/spraycan, +/obj/effect/spawner/random/contraband/prison, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/kitchen{ + dir = 1 + }, +/area/station/security/prison) +"xLO" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/medical/morgue, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/machinery/door/airlock/grunge{ + name = "Morgue" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/morgue) +"xLY" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lantern{ + pixel_y = 3 + }, +/obj/item/food/grown/harebell{ + pixel_x = -7 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/wood, +/area/station/service/chapel) +"xMC" = ( +/turf/open/floor/plating, +/area/station/science/xenobiology) +"xML" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/secondary/exit) +"xMM" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/cargo/miningoffice) +"xMT" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 6 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space) +"xNd" = ( +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/holding_cell) +"xNj" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/science/explab) +"xNW" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=lowhall11"; + location = "lowhall10" + }, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/hallway/primary/central) +"xOa" = ( +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"xOi" = ( +/obj/effect/spawner/random/trash/garbage{ + spawn_scatter_radius = 1 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"xOk" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/simple/supply/visible, +/turf/open/space/basic, +/area/space) +"xOm" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"xOu" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/obj/machinery/fax{ + fax_name = "Warden Office"; + name = "Warden's Office Fax Machine"; + pixel_y = 6 + }, +/obj/item/binoculars{ + pixel_x = 16 + }, +/obj/machinery/computer/security/telescreen/interrogation{ + dir = 1; + pixel_y = -28 + }, +/obj/item/toy/figure/warden{ + pixel_x = 4; + pixel_y = 16 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/warden) +"xOz" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/station/ai_monitored/turret_protected/aisat/equipment) +"xOB" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/closet/crate/freezer, +/obj/effect/spawner/random/food_or_drink/cake_ingredients, +/obj/effect/spawner/random/food_or_drink/cake_ingredients, +/obj/effect/spawner/random/food_or_drink/cake_ingredients, +/obj/machinery/light/small/dim/directional/north, +/turf/open/floor/iron/freezer, +/area/station/maintenance/port/greater) +"xOH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"xOL" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 1 + }, +/turf/open/openspace, +/area/station/engineering/atmos/upper) +"xOM" = ( +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, +/turf/open/floor/engine, +/area/station/engineering/atmos) +"xOU" = ( +/obj/machinery/portable_atmospherics/canister/plasma, +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/plasma_output{ + dir = 4 + }, +/turf/open/floor/engine/plasma, +/area/station/engineering/atmos/upper) +"xPk" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"xPq" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Central Primary Hallway - EVA Storage" + }, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central) +"xPu" = ( +/obj/structure/rack, +/obj/item/reagent_containers/cup/bottle/phosphorus{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/reagent_containers/cup/bottle/potassium{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/reagent_containers/cup/bottle/sodium{ + pixel_x = -5; + pixel_y = -2 + }, +/obj/item/reagent_containers/cup/bottle/oxygen{ + pixel_x = 7; + pixel_y = -2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/pharmacy) +"xPz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/brig/entrance) +"xPB" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/openspace, +/area/station/maintenance/solars/starboard/aft) +"xPI" = ( +/obj/effect/landmark/start/chief_medical_officer, +/turf/open/floor/carpet/blue, +/area/station/command/heads_quarters/cmo) +"xPT" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/machinery/computer/warrant, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/central) +"xPX" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/iron/small, +/area/station/maintenance/port/aft) +"xQp" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"xQD" = ( +/obj/effect/turf_decal/trimline/dark_red/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/security/prison) +"xQF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) +"xQR" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"xQW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/half{ + dir = 1 + }, +/area/station/engineering/supermatter/room) +"xRb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/evidence) +"xRc" = ( +/obj/structure/girder, +/obj/structure/grille, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"xRh" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Bridge" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "bridge-right" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/bridge) +"xRx" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/mid_joiner{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/storage/medkit/regular{ + pixel_y = 3 + }, +/obj/item/storage/medkit/regular{ + pixel_y = 10 + }, +/turf/open/floor/iron/white/smooth_edge{ + dir = 1 + }, +/area/station/security/medical) +"xRD" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Bouncer's Office" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/checkpoint/service) +"xRI" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/firealarm/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/light/cold/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/storage) +"xRM" = ( +/obj/effect/turf_decal/tile/dark_red/half{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_half, +/area/station/science/robotics/lab) +"xSb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side, +/area/station/service/kitchen/diner) +"xSw" = ( +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 10 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"xSx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/command) +"xTd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/cargo/lobby) +"xTg" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 1 + }, +/mob/living/basic/lizard/eats_the_roaches, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/service/janitor) +"xTA" = ( +/obj/structure/lattice, +/obj/item/stack/rods/two, +/turf/open/space/basic, +/area/space/nearstation) +"xTG" = ( +/obj/effect/turf_decal/tile/dark_blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/security/office) +"xTS" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/box, +/obj/machinery/digital_clock/directional/north, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/exit/departure_lounge) +"xTU" = ( +/obj/machinery/camera/directional/west{ + c_tag = "MiniSat External Upper East"; + network = list("minisat") + }, +/obj/structure/cable/multilayer/connected, +/turf/open/floor/engine/hull, +/area/station/solars/aisat) +"xUm" = ( +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "blueshield"; + name = "curtain" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/command/heads_quarters/blueshield) +"xUr" = ( +/obj/effect/turf_decal/tile/dark_red{ + dir = 8 + }, +/turf/open/floor/iron/dark/side, +/area/station/hallway/primary/central/aft) +"xUv" = ( +/turf/open/floor/wood, +/area/station/commons/dorms/room3) +"xUy" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"xUV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"xVq" = ( +/obj/effect/turf_decal/lunar_sand, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/grille, +/turf/open/floor/plating/airless, +/area/station/asteroid) +"xVy" = ( +/obj/structure/railing, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"xVC" = ( +/obj/effect/turf_decal/box, +/obj/item/radio/intercom/directional/east, +/obj/machinery/computer/department_orders/engineering{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/lobby) +"xVJ" = ( +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + name = "N2O to Pure" + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"xVN" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/wood, +/area/station/command/heads_quarters/nt_rep) +"xVU" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/plating, +/area/station/science/explab) +"xVW" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/digital_clock/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/security/holding_cell) +"xWk" = ( +/obj/machinery/camera/directional/west{ + c_tag = "Upper Central Primary Hallway - Brig Entrance" + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"xWl" = ( +/obj/effect/turf_decal/tile/red/real_red/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/cafeteria, +/area/station/hallway/secondary/exit/escape_pod) +"xWo" = ( +/obj/machinery/digital_clock/directional/north, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/photocopier, +/obj/item/toy/figure/paramedic{ + pixel_y = 10; + pixel_x = -5 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/paramedic) +"xWp" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/dark_blue, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_corner, +/area/station/command/meeting_room/council) +"xWs" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/item/extinguisher, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"xWx" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/wood, +/area/station/command/heads_quarters/cmo) +"xWG" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/window/spawner/directional/south, +/obj/structure/window/spawner/directional/north, +/obj/structure/window/spawner/directional/east, +/obj/structure/lattice, +/obj/structure/marker_beacon/indigo, +/turf/open/openspace, +/area/station/security/holding_cell) +"xWO" = ( +/obj/structure/railing, +/obj/effect/turf_decal/siding/white, +/turf/open/floor/iron/dark/smooth_half, +/area/station/ai_monitored/turret_protected/aisat_interior) +"xWV" = ( +/obj/effect/turf_decal/tile/green/opposingcorners, +/turf/open/floor/iron/checker{ + dir = 1 + }, +/area/station/hallway/primary/central/fore) +"xXe" = ( +/turf/closed/wall, +/area/station/common/spa) +"xXf" = ( +/obj/effect/turf_decal/tile/red/real_red/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/cafeteria, +/area/station/hallway/secondary/exit/escape_pod) +"xXp" = ( +/obj/docking_port/stationary/random{ + dir = 4; + name = "lavaland"; + shuttle_id = "pod_2_lavaland" + }, +/turf/open/space/basic, +/area/space/nearstation) +"xXv" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/pharmacy) +"xXK" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/department/science/xenobiology) +"xYh" = ( +/obj/effect/spawner/random/trash/janitor_supplies, +/obj/effect/spawner/random/maintenance, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) +"xYp" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/light/warm/directional/east, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/lawoffice) +"xYx" = ( +/obj/effect/turf_decal/lunar_sand/plating, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/glass/reinforced, +/area/station/science/cytology) +"xYB" = ( +/obj/effect/turf_decal/tile/yellow/half{ + dir = 8 + }, +/turf/open/floor/iron/white/smooth_edge{ + dir = 8 + }, +/area/station/medical/pharmacy) +"xYD" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/red/directional/south, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"xYE" = ( +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/cargo/office) +"xYT" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/light/small/directional/north, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/department/security/lower) +"xYU" = ( +/obj/machinery/airalarm/directional/south, +/obj/machinery/light/warm/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/command/meeting_room/council) +"xZg" = ( +/obj/effect/turf_decal/tile/brown/half/contrasted, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/cargo/lobby) +"xZl" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"xZn" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "Port to Infiltrate/Filter"; + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"xZs" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/cold/directional, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"xZH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/vending/mechcomp, +/turf/open/floor/iron/dark/small, +/area/station/science/research) +"xZI" = ( +/obj/structure/closet/radiation, +/obj/item/clothing/glasses/meson, +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm/directional/west, +/obj/machinery/light/warm/directional/west, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos) +"xZL" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/solars/port/aft) +"xZN" = ( +/obj/effect/turf_decal/tile/red, +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/security/holding_cell) +"xZU" = ( +/obj/effect/turf_decal/tile/dark_blue/half{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/security/brig) +"xZX" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"yaa" = ( +/obj/effect/turf_decal/stripes/blue/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull, +/area/space/nearstation) +"yag" = ( +/obj/item/camera_film{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/item/camera_film{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/structure/table, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron, +/area/station/maintenance/fore/lesser) +"yai" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/effect/turf_decal/box/corners, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"yax" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/meter, +/obj/machinery/airalarm/directional/east, +/obj/machinery/light/warm/directional/east, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"ybd" = ( +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"ybn" = ( +/obj/effect/spawner/random/trash/janitor_supplies, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"ybv" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"ybM" = ( +/obj/effect/spawner/random/trash/mess, +/obj/item/clothing/head/cone, +/obj/effect/mapping_helpers/burnt_floor, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4 + }, +/obj/effect/mapping_helpers/mail_sorting/service/bar, +/obj/effect/mapping_helpers/mail_sorting/service/janitor_closet, +/obj/effect/mapping_helpers/mail_sorting/service/theater, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"ybP" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/light/small/directional/east, +/obj/machinery/roulette, +/turf/open/floor/wood, +/area/station/maintenance/port/fore) +"ycc" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/chair/wood, +/obj/effect/landmark/start/assistant, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/wood/tile, +/area/station/commons/lounge) +"ycf" = ( +/obj/machinery/door/poddoor/shutters/window{ + id = "EVAaccess"; + name = "External Operations Shutter Access" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/command/storage/eva) +"yci" = ( +/obj/effect/turf_decal/tile/dark/fourcorners, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "custodialshutters"; + name = "Custodial Closet Shutters" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark, +/area/station/service/janitor) +"ycn" = ( +/obj/machinery/shower/directional/east, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/structure/drain, +/turf/open/floor/iron/showroomfloor, +/area/station/engineering/atmos/office) +"ycA" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos/hfr_room) +"ycG" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 1 + }, +/area/station/security/holding_cell) +"ycJ" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 4 + }, +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central/aft) +"ycT" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/security/processing) +"ydj" = ( +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/interrogation) +"ydz" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"ydS" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/checker, +/area/station/hallway/primary/central/aft) +"ydU" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/ai) +"yet" = ( +/obj/structure/table, +/obj/item/storage/toolbox/emergency{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/toolbox/emergency, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/machinery/airalarm/directional/west, +/obj/machinery/light/warm/directional/west, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) +"yeB" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"yeJ" = ( +/obj/machinery/door/airlock/virology/glass{ + name = "Monkey Pen" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/medical/virology, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"yeU" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/engineering/atmos/office) +"yfb" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/effect/turf_decal/box/corners, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"yfi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/cargo/storage) +"yfm" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/machinery/button/curtain{ + id = "backbarbercurtains"; + pixel_x = 24 + }, +/obj/structure/closet, +/turf/open/floor/wood/large, +/area/station/service/barber) +"yfu" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"yfw" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/science/robotics/mechbay) +"yfC" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"yfO" = ( +/obj/effect/turf_decal/trimline/green/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/line, +/obj/item/cultivator, +/obj/item/reagent_containers/cup/bucket/wooden{ + pixel_x = -10; + pixel_y = 4 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/machinery/light/small/directional/south, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/maintenance/abandon_cafeteria/hydro) +"yfT" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 1"; + name = "Cell 1 Locker" + }, +/obj/effect/turf_decal/siding/dark_blue, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/obj/machinery/airalarm/directional/west, +/obj/machinery/light/cold/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/side, +/area/station/security/holding_cell) +"yfZ" = ( +/obj/structure/hedge/opaque, +/obj/structure/window/reinforced/tinted/fulltile, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/chapel) +"ygj" = ( +/obj/structure/lattice, +/obj/structure/window/spawner/directional/south, +/obj/structure/window/spawner/directional/north, +/turf/open/openspace, +/area/station/commons/fitness/recreation) +"ygl" = ( +/obj/structure/railing, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"ygp" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/window/spawner/directional/west, +/obj/structure/window/spawner/directional/north, +/turf/open/openspace, +/area/station/security/brig/upper) +"ygq" = ( +/turf/closed/wall/r_wall, +/area/station/command/heads_quarters/captain) +"ygB" = ( +/obj/structure/chair/office, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/solars/starboard/aft) +"ygD" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"ygF" = ( +/obj/machinery/door/airlock/hatch{ + name = "Maintenance Hatch" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"ygN" = ( +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + name = "O2 to Pure" + }, +/turf/open/floor/engine, +/area/station/engineering/atmos) +"ygR" = ( +/obj/machinery/growing/soil, +/obj/machinery/light/warm/directional/south, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/grass, +/area/station/service/hydroponics/garden) +"yhc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/window/right/directional/west{ + name = "Cargo Desk"; + req_access = list("cargo") + }, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/cargo/sorting) +"yhg" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"yhj" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/command/general, +/obj/effect/mapping_helpers/airlock/access/any/command/minisat, +/obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms, +/obj/machinery/door/airlock/ce{ + name = "MiniSat Access" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/transit_tube) +"yhq" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall2"; + location = "hall1" + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"yhz" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rndlab1"; + name = "Research and Development Shutter" + }, +/turf/open/floor/plating, +/area/station/science/research) +"yhM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) +"yhZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/iron/cafeteria{ + dir = 5 + }, +/area/station/common/cryopods) +"yik" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/item/shovel{ + pixel_x = -5 + }, +/obj/item/pickaxe{ + pixel_x = 5 + }, +/obj/structure/rack, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/commons/storage/mining) +"yip" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/machinery/firealarm/directional/north, +/obj/structure/rack/shelf, +/obj/machinery/camera/directional/north{ + c_tag = "Tool Storage - Primary" + }, +/obj/item/storage/box/shipping{ + pixel_y = 8; + pixel_x = -5 + }, +/obj/item/storage/box/emergencytank{ + pixel_y = 7; + pixel_x = 4 + }, +/obj/item/storage/box/lights/mixed{ + pixel_x = -3 + }, +/obj/item/storage/box/lights/tubes{ + pixel_y = -4; + pixel_x = 1 + }, +/turf/open/floor/iron/dark, +/area/station/commons/storage/primary) +"yiq" = ( +/obj/effect/turf_decal/tile/red/real_red/opposingcorners, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/iron/white/corner{ + dir = 8 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"yir" = ( +/obj/structure/railing, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/glass/reinforced, +/area/station/hallway/secondary/command) +"yiy" = ( +/obj/machinery/light/small/directional/east, +/turf/open/openspace, +/area/station/maintenance/port/lesser) +"yiE" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/stripes/blue/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/aisat_interior) +"yiG" = ( +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Break Room Maintenance" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/break_room) +"yiS" = ( +/turf/open/floor/wood/tile, +/area/station/commons/lounge) +"yiW" = ( +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"yjc" = ( +/obj/effect/turf_decal/tile/dark_blue/half{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/security/office) +"yje" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"yji" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/turf/open/floor/iron/small, +/area/station/hallway/primary/starboard) +"yjl" = ( +/obj/structure/cable, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/main) +"yjC" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners{ + dir = 1 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Central Primary Hallway - Mech Bay" + }, +/obj/structure/chair, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/central) +"yjI" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/white/corner{ + dir = 1 + }, +/obj/structure/closet/crate/bin, +/obj/effect/spawner/random/contraband/prison, +/obj/effect/turf_decal/bot, +/obj/effect/spawner/random/maintenance/three, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"yjZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain) +"ykg" = ( +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"ykp" = ( +/obj/effect/mapping_helpers/airlock/access/all/science/general, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Break Room Maintenance" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/science/breakroom) +"yks" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/side, +/area/station/science/genetics) +"ykB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/blueshield) +"ykE" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/photocopier, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/small, +/area/station/engineering/atmos/office) +"ykH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"ykP" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/primary/central/fore) +"yli" = ( +/obj/effect/spawner/random/trash/grime, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"ylp" = ( +/obj/machinery/field/generator, +/turf/open/floor/plating, +/area/station/engineering/storage_shared) +"ylv" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/white, +/area/station/common/cryopods) +"ylw" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"ylD" = ( +/obj/effect/spawner/random/engineering/tank, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"ylF" = ( +/turf/closed/wall, +/area/station/security/medical) +"ylH" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/command/storage/eva) +"ylJ" = ( +/turf/open/openspace, +/area/station/hallway/secondary/entry) +"ylO" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/trimline/red/real_red/end{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/real_red/mid_joiner, +/obj/effect/turf_decal/trimline/red/real_red/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/real_red/mid_joiner{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/hallway/primary/central/aft) +"ylS" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/box, +/obj/machinery/power/solar_control{ + id = "forestarboard"; + name = "Starboard Bow Solar Control" + }, +/turf/open/floor/plating, +/area/station/maintenance/solars/starboard/fore) +"ylV" = ( +/obj/structure/frame/machine, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/stack/cable_coil/five, +/turf/open/floor/plating, +/area/station/maintenance/department/electrical) + +(1,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(2,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(3,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(4,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(5,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(6,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(7,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(8,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +laO +laO +laO +laO +laO +laO +laO +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +bRn +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(9,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(10,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +laO +laO +laO +tzq +tzq +tzq +xuB +laO +laO +laO +laO +laO +laO +bRn +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +bRn +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +tzq +xuB +laO +laO +laO +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +bRA +bRn +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(11,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +tzq +bRn +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +laO +laO +laO +laO +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +xuB +bRn +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(12,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +laO +xuB +tzq +xuB +xuB +xuB +bRn +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +tzq +bRn +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +laO +laO +laO +laO +laO +xuB +xuB +xuB +bRn +tzq +tzq +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(13,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +bRn +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +bRn +xuB +tzq +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +laO +laO +laO +laO +xuB +xuB +bRn +bRA +tzq +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(14,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +bRn +xuB +xuB +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +xuB +bRn +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +tzq +laO +tzq +laO +obu +laO +laO +laO +obu +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(15,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +bRn +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +wVj +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +tzq +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +xuB +xuB +xuB +tzq +laO +laO +laO +aAM +laO +laO +laO +aAM +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +tzq +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(16,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +tzq +laO +laO +laO +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +obu +laO +laO +laO +obu +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(17,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +laO +laO +laO +laO +laO +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(18,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +bRn +xuB +xuB +tzq +xuB +xuB +tzq +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +bRn +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +bRn +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +tzq +tzq +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(19,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +tzq +xuB +xuB +tzq +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +bRn +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +bRn +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +laO +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +tzq +tzq +tzq +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(20,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +bRn +tzq +tzq +xuB +xuB +tzq +tzq +laO +laO +laO +laO +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +tzq +xig +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +tzq +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +tzq +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(21,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +bRA +xuB +xuB +xuB +tzq +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +bRn +laO +laO +laO +laO +laO +tzq +tzq +xuB +xuB +xuB +xuB +tzq +tzq +tzq +tzq +tzq +tzq +xuB +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +tzq +laO +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(22,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +xuB +xuB +xuB +xuB +tzq +tzq +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +xuB +tzq +laO +laO +laO +laO +laO +tzq +bRn +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +xuB +tzq +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +xuB +tzq +tzq +tzq +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(23,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +xuB +xuB +xuB +bRn +tzq +tzq +xuB +xuB +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +bRn +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +bRn +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +tzq +tzq +tzq +xuB +xuB +xuB +laO +laO +laO +laO +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +aSz +tzq +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(24,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +xuB +xuB +laO +laO +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +xuB +xuB +xuB +xuB +xuB +bRn +tzq +laO +laO +laO +laO +laO +laO +bRn +xuB +xuB +xuB +xuB +xuB +xuB +bRn +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +laO +tzq +bRn +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +bRn +xuB +xuB +xuB +bRA +tzq +bRn +xuB +xuB +tzq +tzq +laO +laO +laO +laO +xuB +tzq +laO +xuB +laO +laO +laO +laO +laO +laO +laO +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +bRn +bRA +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +tzq +tzq +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(25,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +tzq +xuB +xuB +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +xuB +bRn +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +tzq +tzq +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(26,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +tzq +tzq +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +tzq +xuB +xuB +laO +xuB +xuB +tzq +bRA +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +tzq +bRn +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +laO +laO +xuB +xuB +xuB +xuB +laO +laO +laO +tzq +tzq +xuB +xuB +tzq +tzq +tzq +xuB +xuB +xuB +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(27,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +xuB +bRn +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +bRn +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +tzq +tzq +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +tzq +laO +laO +laO +xuB +tzq +tzq +tzq +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +xuB +xuB +xuB +xuB +bRn +bRA +xuB +xuB +xuB +tzq +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(28,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +bRn +bRn +tzq +tzq +tzq +bRn +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +bRn +xuB +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +xig +tzq +tzq +xuB +xuB +xuB +bRn +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +laO +laO +laO +tzq +xuB +xuB +tzq +tzq +laO +laO +laO +xuB +tzq +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(29,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +tzq +bRA +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +tzq +tzq +xuB +xuB +tzq +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +tzq +laO +laO +xuB +xuB +xuB +xuB +tzq +tzq +laO +laO +xuB +tzq +bRn +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +xuB +xuB +xuB +tzq +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(30,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +bRA +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +xuB +xuB +xuB +xuB +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +xuB +tzq +laO +laO +laO +laO +laO +tzq +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +bRn +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +bRn +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +bRn +laO +laO +laO +laO +xuB +xuB +tzq +tzq +laO +laO +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(31,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +bRn +bRA +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +bRn +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +laO +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +xuB +xuB +bRn +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +tzq +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +xuB +xuB +laO +laO +xuB +laO +laO +tzq +tzq +tzq +laO +laO +tzq +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +tzq +bRn +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(32,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +bRn +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +xuB +xuB +xuB +xuB +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +tzq +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +tzq +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(33,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +xuB +xuB +xuB +xuB +tzq +xig +tzq +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +bRn +tzq +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(34,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +xuB +xuB +xuB +xuB +xuB +tzq +xuB +xuB +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +eAd +xuB +xuB +xuB +tzq +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(35,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +bRn +tzq +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +laO +laO +laO +xuB +tzq +xuB +xuB +bRn +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +laO +laO +laO +laO +laO +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +bRn +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +aSz +laO +laO +xuB +xuB +xuB +laO +eAd +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(36,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +tzq +bRA +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +laO +laO +laO +laO +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +tzq +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +tzq +laO +laO +xuB +xuB +xuB +laO +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(37,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +bRn +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +tzq +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +xuB +xuB +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +bRn +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +laO +laO +xuB +xuB +xuB +tzq +laO +tzq +eAd +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(38,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +bRn +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +tzq +tzq +bRA +tzq +tzq +bRn +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +bRn +tzq +laO +laO +laO +laO +laO +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +xuB +xuB +xuB +tzq +laO +laO +laO +xuB +tzq +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +obu +laO +laO +laO +obu +laO +laO +laO +laO +laO +laO +laO +xuB +bRA +xuB +xuB +tzq +tzq +bRn +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(39,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +tzq +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +tzq +xuB +xuB +xuB +tzq +tzq +tzq +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +tzq +tzq +laO +laO +tzq +tzq +laO +laO +xuB +xuB +xuB +xuB +xuB +bRA +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +aAM +laO +laO +laO +aAM +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +xuB +xuB +xuB +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +bRn +tzq +laO +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(40,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +tzq +xuB +xuB +tzq +tzq +tzq +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +tzq +bRn +xuB +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +obu +laO +laO +laO +obu +laO +laO +xuB +laO +laO +laO +tzq +laO +laO +tzq +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +xuB +xuB +laO +laO +xuB +xuB +bRA +xuB +xuB +tzq +xuB +xuB +xuB +xuB +xuB +xuB +bRn +tzq +tzq +laO +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(41,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +bRn +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +tzq +tzq +tzq +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +laO +laO +tzq +xuB +bRn +xuB +xuB +tzq +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +aSz +laO +laO +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(42,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +bRn +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +tzq +xuB +xuB +xuB +xuB +xuB +tzq +tzq +xuB +tzq +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +bRn +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +laO +laO +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(43,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +tzq +tzq +xuB +xuB +xuB +xuB +xuB +tzq +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +xuB +xuB +bRn +tzq +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(44,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +xuB +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +tzq +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +bRA +bRn +xuB +xuB +xuB +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +tzq +xuB +xuB +tzq +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(45,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +laO +xuB +bRn +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +tzq +tzq +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +bRn +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +xuB +xuB +xuB +bRA +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(46,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +laO +laO +laO +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +tzq +tzq +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +xuB +xuB +xuB +xuB +tzq +tzq +tzq +laO +laO +laO +laO +laO +xuB +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(47,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +tzq +tzq +tzq +tzq +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +tzq +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +tzq +xuB +xuB +xuB +tzq +tzq +tzq +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +xuB +xuB +tzq +bRn +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(48,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +laO +laO +laO +laO +laO +tzq +tzq +xuB +xuB +tzq +tzq +tzq +tzq +laO +laO +laO +xuB +xuB +xuB +xuB +tzq +tzq +tzq +laO +laO +xuB +laO +laO +laO +tzq +tzq +tzq +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(49,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +gPF +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +tzq +tzq +laO +laO +laO +laO +laO +xuB +xuB +xuB +tzq +tzq +tzq +laO +laO +laO +laO +xuB +tzq +tzq +tzq +tzq +tzq +laO +laO +xuB +xuB +xuB +laO +laO +laO +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(50,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +bRn +tzq +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +laO +laO +laO +xuB +xuB +xuB +xuB +laO +laO +xuB +tzq +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(51,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +tzq +tzq +tzq +laO +laO +laO +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +aAM +obu +laO +laO +laO +laO +laO +laO +laO +laO +laO +obu +aAM +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +tzq +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(52,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +bRn +tzq +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +eZM +mjb +xuB +xuB +xuB +xuB +xuB +xuB +bRn +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +wzC +wzC +obu +obu +xuB +xuB +tzq +tzq +obu +wzC +wzC +obu +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +tzq +tzq +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +bRn +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(53,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +tzq +tzq +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +bRn +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +bRn +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +tzq +laO +laO +laO +tzq +tzq +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +bRn +xuB +wzC +xuB +xuB +tzq +tzq +tzq +oui +xuB +laO +laO +wzC +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +tzq +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(54,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +xuB +xuB +laO +laO +laO +laO +tzq +laO +laO +laO +tzq +xuB +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +xuB +xuB +oui +tzq +tzq +tzq +bRn +bRA +xuB +xuB +xuB +xuB +xuB +xuB +iTV +iTV +iTV +iTV +iTV +iTV +iTV +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +bRA +xuB +xuB +xuB +xuB +xuB +xuB +xuB +bRn +tzq +xuB +laO +obu +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +tzq +tzq +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +bRn +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +laO +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +"} +(55,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +xuB +xuB +tzq +laO +laO +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +eZM +mjb +eZM +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +jNA +iTV +wLx +hXW +oXy +eqL +wLx +iTV +jNA +xuB +mjb +tzq +tzq +laO +xuB +laO +laO +laO +xuB +tzq +tzq +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +bRA +tzq +laO +obu +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +laO +xuB +xuB +tzq +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +"} +(56,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +tzq +xuB +bRn +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +gPF +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xqb +xqb +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +iTV +qhM +gQc +aST +gPh +xYD +iTV +xuB +xuB +xqb +bRA +tzq +laO +laO +laO +laO +tzq +xuB +xuB +tzq +laO +laO +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +laO +obu +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +laO +laO +laO +laO +laO +laO +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +tzq +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +laO +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +"} +(57,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +jNA +iTV +wLx +dpH +nvN +ngB +eyw +iTV +xuB +xuB +xqb +bRn +tzq +tzq +laO +laO +tzq +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +tzq +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +obu +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +bRA +xuB +xuB +xuB +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(58,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +jNA +jNA +jNA +jNA +jNA +oCF +oCF +iTV +iTV +iTV +eQW +pbx +bTB +iTV +iTV +jNA +jNA +jNA +tzq +tzq +laO +laO +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +xig +tzq +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(59,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +nxa +jNA +jNA +oCF +oCF +jNA +jNA +hrW +hrW +hrW +xMC +hrW +hrW +hrW +iTV +rJm +ehu +psm +fKz +ndA +iTV +xuB +xuB +xuB +xuB +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +bRn +xuB +xuB +aQS +aQS +aQS +aQS +aQS +aQS +aQS +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +bRA +bRn +tzq +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(60,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +nxa +aiH +wLx +wLx +lgC +wLx +hrW +hrW +iTV +hrW +xMC +xMC +pHM +krA +wVa +xhh +duu +ujI +iFx +lxW +vKM +vKM +vKM +vKM +tzq +laO +laO +obu +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +aQS +fuf +fuf +aQS +cVY +svS +aQS +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +tzq +tzq +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +xuB +laO +laO +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(61,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +bRn +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +iTV +iTV +iKa +mqQ +hXM +nwa +mqQ +xMC +ngB +sKU +ngB +wLx +wLx +hwS +ups +fZa +wYc +oHj +wHr +dkR +jNA +mtK +pTv +glv +vKM +vKM +mtK +laO +obu +laO +laO +laO +laO +tzq +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +wzC +wzC +aQS +aQS +aGx +uNS +cRf +kEI +mbC +aQS +aQS +wzC +wzC +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(62,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +laO +laO +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +jNA +jNA +iTV +iTV +iKa +dEg +wLx +wLx +aAP +ngB +wLx +vlM +wLx +dIo +ngB +ayJ +gEX +aYp +iPl +hfP +vAP +lUt +kYZ +mtK +wTx +xXK +rgU +lHO +byb +obu +nOe +laO +laO +gPF +laO +laO +laO +laO +laO +bRn +xuB +laO +laO +gPF +laO +laO +laO +laO +laO +obu +tzq +ntY +cCY +jAz +jAz +qmA +jAz +iVx +mXZ +ntY +tzq +obu +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +obu +laO +laO +laO +obu +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +tzq +laO +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(63,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +xuB +iTV +wLx +aiH +wLx +wLx +qnK +aAP +lfS +wLx +vlM +wLx +wLx +ngB +imy +sCM +fyS +ick +eWy +rae +jnz +xuC +vFP +scy +dwo +rPv +vKM +byb +laO +cmF +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +aAM +laO +ntY +onp +eMq +egF +aeo +nWr +eMq +teK +ntY +laO +aAM +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +aAM +laO +laO +laO +aAM +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(64,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +laO +laO +laO +laO +bRn +tzq +xuB +tzq +laO +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +jNA +jNA +iTV +iTV +tlX +wLx +wLx +luj +aAP +rMQ +wLx +qnW +kje +fyS +weY +ppJ +wLx +wLx +pzb +jNA +jNA +lKU +jNA +mtK +kyb +xkE +jCi +vKM +byb +laO +nOe +nbN +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +obu +laO +aQS +aQS +pQy +ejl +aQS +tPS +sXu +aQS +aQS +laO +obu +laO +laO +laO +laO +laO +laO +laO +gPF +laO +laO +laO +laO +laO +laO +laO +laO +laO +obu +laO +laO +laO +obu +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +tzq +laO +laO +laO +laO +xuB +laO +laO +tzq +xuB +xuB +bRn +tzq +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(65,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +xuB +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +laO +laO +tzq +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +rQT +xuB +xuB +xuB +xuB +xuB +xuB +iTV +iVl +iKa +mqQ +hXM +mqQ +ebM +fyS +weY +nSr +ngB +lAw +iOL +fyS +ngB +vDB +mqQ +jNA +kkj +dYh +gqB +mtK +mtK +bHr +vKM +vKM +byb +laO +obu +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +aQS +ntY +ntY +aQS +ntY +ntY +aQS +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(66,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +tzq +bRn +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +xuB +xuB +xuB +jNA +jNA +iTV +iTV +iTV +iKa +fvj +wLx +wLx +mqQ +lAw +ngB +pTE +wLx +lfS +ngB +gGl +wLx +aJL +mqQ +jNA +opx +eRf +hOu +dPN +wwu +gFL +iTV +laO +byb +laO +nbN +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(67,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +tzq +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +bRn +xuB +xuB +xuB +bRA +xuB +iTV +wLx +ngB +wGO +wLx +wLx +exl +mqQ +lfS +ngB +fyS +wLx +kLW +mqQ +pTE +wLx +wLx +qQf +jNA +vRz +dWY +ike +llA +sSP +iTV +iTV +laO +byb +laO +eXf +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(68,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +jNA +jNA +iTV +iTV +iTV +iKa +bnq +wLx +wLx +aAP +rMQ +wLx +qnW +hER +wLx +uRQ +vlM +ngB +wLx +wLx +jNA +eXR +aLT +hrI +wsS +shf +iTV +laO +laO +byb +obu +obu +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +gPF +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(69,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +bRn +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +bRn +tzq +iTV +tEh +iKa +mqQ +hXM +mqQ +mqQ +fyS +dit +fyS +wLx +aKA +wLx +vlM +ngB +dIo +ngB +jNA +mMz +aXe +kWz +iTV +iTV +iTV +laO +laO +byb +laO +nOe +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(70,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +tzq +tzq +jNA +jNA +iTV +iTV +nTn +wLx +wLx +hRv +aAP +lAw +ngB +bRq +wLx +wLx +sYp +wNI +ngB +wLx +apd +iTV +eyS +oCF +eyS +iTV +laO +laO +laO +laO +byb +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(71,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +tzq +tzq +bRn +iTV +uDX +wLx +wLx +oke +mqQ +lfS +ngB +feh +qJw +iTV +iTV +iTV +iTV +iTV +iTV +oCF +dSx +dSx +dSx +oCF +oPL +laO +laO +laO +byb +nbN +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +xuB +laO +laO +laO +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(72,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +jNA +jNA +iTV +iKa +rYx +wLx +wLx +mqQ +iTV +wLx +iTV +iTV +laO +laO +laO +laO +laO +laO +oCF +nOi +saN +hSC +hhh +cTz +jdo +oPL +laO +byb +laO +nOe +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(73,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +iTV +iKa +mqQ +hXM +nwa +kLv +iTV +iTV +iTV +laO +laO +laO +laO +laO +laO +laO +oCF +oCF +iTV +oCF +oCF +oPL +obu +dIY +laO +byb +laO +eXf +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(74,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +gPF +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +jNA +fMa +wLx +wLx +eIY +iTV +iTV +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +oPL +iLE +oPL +byb +obu +obu +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +obu +laO +laO +laO +laO +xuB +xuB +xuB +xuB +bRA +tzq +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +bRn +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(75,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +laO +iTV +iTV +iTV +iTV +iTV +iTV +laO +laO +laO +laO +laO +laO +laO +laO +obu +nOe +nOe +nOe +obu +laO +laO +laO +laO +qlO +laO +byb +laO +eXf +laO +laO +laO +laO +laO +laO +laO +laO +laO +cse +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +aAM +laO +laO +laO +xuB +xuB +bRn +tzq +tzq +tzq +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(76,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +obu +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +laO +laO +laO +tzq +laO +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +obu +cDK +cDK +obu +laO +laO +laO +laO +laO +laO +laO +laO +laO +obu +laO +obu +laO +laO +laO +laO +laO +qlO +laO +byb +laO +eXf +laO +laO +laO +laO +laO +laO +laO +laO +ugJ +ppI +ugJ +tzq +tzq +bRn +laO +laO +laO +obu +laO +laO +laO +laO +laO +laO +laO +obu +laO +xuB +xuB +xuB +xuB +tzq +tzq +tzq +xuB +xuB +xuB +bRn +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(77,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +gPF +laO +laO +laO +laO +laO +oPL +laO +laO +laO +laO +laO +laO +laO +laO +tzq +laO +laO +laO +xuB +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +bRn +laO +laO +laO +laO +obu +laO +laO +laO +xuB +laO +laO +laO +oPL +laO +laO +oPL +laO +laO +obu +nOe +nOe +nOe +obu +laO +iJI +iJI +iJI +iJI +iJI +laO +laO +laO +laO +qlO +laO +byb +laO +nOe +laO +laO +laO +laO +laO +laO +laO +ugJ +ugJ +nIG +ugJ +ugJ +xuB +tzq +tzq +laO +laO +aAM +laO +laO +laO +laO +laO +laO +laO +dFs +dFs +dFs +dFs +mTP +xuB +xuB +tzq +tzq +tzq +tzq +tzq +tzq +tzq +laO +obu +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(78,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +nup +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +nbN +nOe +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +obu +laO +obu +laO +laO +iJI +aPb +mOK +gpw +iJI +laO +laO +laO +laO +qlO +laO +byb +laO +eXf +laO +laO +laO +laO +laO +laO +laO +jQe +moZ +gsA +wdK +jQe +jQe +ugJ +ugJ +xuB +tzq +obu +laO +laO +laO +laO +laO +laO +laO +eKb +hvv +atl +dFs +dFs +dFs +mTP +xuB +xuB +bRn +bRA +xuB +xuB +laO +laO +aAM +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(79,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +bRn +tzq +nxa +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +nOe +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +hHz +mye +mye +mye +hHz +laO +iJI +cvO +nGJ +pyC +iJI +laO +laO +laO +oPL +iLE +oPL +byb +laO +nOe +laO +laO +laO +laO +laO +laO +laO +jQe +mhe +wij +skj +jQe +nAa +ubP +ugJ +ugJ +tzq +aAM +laO +laO +laO +laO +laO +laO +laO +eKb +mRR +hvv +wMR +vAe +dFs +dFs +dFs +dFs +dFs +xuB +xuB +xuB +laO +laO +lex +laO +laO +laO +laO +laO +obu +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +gPF +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(80,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +tzq +tzq +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +bRA +xuB +nxa +nxa +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +bRn +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +nOe +gPF +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +hHz +qXL +bhc +nHQ +hHz +laO +iJI +vBN +jcM +vBN +iJI +laO +laO +laO +laO +qlO +laO +byb +obu +obu +laO +laO +laO +laO +laO +laO +laO +jQe +ugJ +mij +ugJ +jQe +aPx +hoW +mxx +ugJ +xuB +obu +laO +laO +laO +laO +laO +laO +laO +eKb +hvv +hvv +cdx +hdL +mnx +jEL +qyg +tCQ +dFs +dFs +dFs +xuB +laO +laO +nDQ +laO +laO +laO +laO +laO +aAM +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(81,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +nxa +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +nOe +nbN +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +hHz +hqo +cdN +sli +hHz +laO +gqp +wmi +fYS +wmi +lNq +laO +laO +laO +laO +qlO +laO +byb +laO +cmF +laO +laO +laO +laO +laO +laO +laO +jQe +xqL +ejy +ocl +jQe +vMG +nAS +yik +jQe +jQe +jQe +laO +laO +laO +laO +laO +laO +laO +dFs +eKb +eKb +bfG +nkz +xEu +xEu +llp +fNX +rlf +hqB +dFs +aXr +aXr +aXr +obu +laO +laO +laO +laO +laO +obu +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +laO +laO +laO +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(82,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +tzq +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +obu +oPL +hRj +nxa +nxa +nxa +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +nOe +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +hHz +vCD +mzr +aTa +hHz +cpO +dwk +jfu +fYS +wmi +bev +bev +bev +bev +bev +qlO +laO +byb +laO +nOe +laO +laO +laO +laO +laO +laO +obu +jQe +cJS +iOO +prt +pCr +qsB +jhU +kEC +cJD +cJD +jQe +laO +laO +laO +laO +laO +laO +laO +oSI +ona +oSI +agy +guQ +fAT +yfi +llp +vvV +rIo +rhg +jgs +aXr +dSS +aXr +aXr +laO +laO +laO +laO +laO +obu +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(83,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +tzq +xuB +xuB +xuB +udv +oDM +udv +obu +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +eXf +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +bfb +jyO +gFx +vhH +vhH +vhH +vhx +uZB +con +bev +bEJ +biD +bEJ +bev +qlO +laO +byb +laO +obu +laO +laO +laO +laO +laO +laO +aAM +jQe +gfw +vFg +esZ +ewg +oVi +wwt +eji +phH +cJD +jQe +laO +laO +laO +laO +laO +laO +jrY +gom +gtZ +ghB +gYe +qaU +moa +mxg +pQn +sgl +ilv +brC +xJj +tRz +eUG +hPW +tRz +laO +laO +laO +laO +laO +obu +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +bRn +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(84,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +tzq +tzq +xuB +xuB +xuB +xuB +tqy +udv +tEp +udv +tqy +oPL +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +obu +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tdj +tAa +vpF +jya +jya +wmi +kxX +pFI +kxX +bev +gcs +ebQ +rzH +bev +iLE +oPL +byb +laO +laO +laO +laO +laO +laO +laO +laO +obu +ugJ +wAo +vFg +kRe +tEw +fmz +jQe +lJU +lJU +lJU +hYP +laO +laO +laO +laO +laO +laO +laO +dFs +eKb +dFs +vKh +jOh +eBO +dSD +ekD +ocv +jMr +kRw +hmf +tRz +dHx +rpB +vyA +mNv +laO +laO +laO +laO +obu +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(85,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +xuB +xuB +xuB +xuB +laO +laO +tzq +xuB +laO +laO +xuB +xuB +xuB +nxa +xuB +udv +udv +dFl +dJC +aDG +udv +ero +obu +oPL +obu +laO +laO +laO +laO +laO +laO +laO +laO +obu +oPL +obu +laO +laO +laO +laO +laO +laO +laO +laO +laO +obu +oPL +obu +laO +laO +laO +laO +laO +laO +laO +laO +laO +obu +oPL +obu +obu +oPL +npN +oPL +jOm +iDm +wmi +cgo +hgt +mEa +pBO +wXJ +mQm +luT +bev +qlO +laO +byb +laO +laO +laO +laO +laO +laO +laO +laO +ugJ +ugJ +ugJ +vFg +izB +ewg +rzQ +jQe +piv +usV +usV +hYP +laO +laO +laO +laO +laO +laO +laO +gom +gtZ +ghB +hWG +dtt +fHZ +mxg +llp +sgl +wCV +dFd +dzR +tRz +sYY +jzM +tRz +laO +laO +laO +laO +laO +obu +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(86,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +nxa +xuB +oDM +rcA +oBg +awQ +oBg +sdV +obu +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +obu +pGv +obu +obu +bev +bev +bev +gbP +kxX +qQb +nHe +tPV +dIX +bev +qlO +laO +byb +laO +laO +laO +laO +laO +laO +laO +oeh +wAE +oFe +eqn +vFg +oBm +ftX +aIv +njZ +ryi +qhL +dBb +hYP +laO +laO +laO +laO +laO +laO +laO +mNa +dnz +sDy +vpW +gRP +gXG +yfi +fPw +ocv +bXo +rhg +gqv +aXr +bza +tRz +aXr +laO +laO +laO +laO +laO +obu +laO +laO +obu +laO +obu +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(87,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +xuB +xuB +tzq +xuB +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +xuB +laO +laO +laO +laO +bRA +nxa +xuB +nxa +xuB +udv +udv +pcW +dJC +bqf +udv +ero +obu +oPL +obu +laO +laO +laO +laO +laO +laO +laO +laO +obu +oPL +obu +laO +laO +laO +laO +laO +laO +laO +laO +laO +obu +oPL +obu +laO +laO +laO +laO +laO +laO +laO +laO +laO +obu +oPL +obu +obu +oPL +tFn +oPL +bev +bev +tpH +kxX +fPu +kxX +hCi +oir +aiT +lLG +bev +qlO +laO +byb +laO +laO +laO +laO +laO +laO +laO +laO +ugJ +ugJ +ugJ +rty +erW +jNa +jNa +tWT +jFx +mxe +eLu +hYP +laO +laO +laO +laO +laO +laO +laO +dFs +dFs +dFs +dFs +dFs +eZV +pgr +wCv +pmp +vaN +ksy +kQK +eEd +wYg +cIJ +dFs +laO +laO +laO +laO +laO +wzC +laO +laO +aAM +laO +aAM +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(88,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +tzq +xuB +xuB +xuB +xuB +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tYy +nxa +nxa +nxa +xuB +xuB +tqy +udv +ojU +udv +tqy +oPL +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +obu +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +crV +uqw +tAR +bev +bfT +cEk +hgw +dkB +uot +kOA +hyo +uiN +jot +bev +qlO +laO +byb +laO +laO +laO +laO +laO +laO +laO +laO +laO +ugJ +nau +mkK +eGH +ewg +ewg +njZ +oNN +iow +rnD +hYP +laO +laO +laO +laO +laO +laO +laO +dFs +ivO +fRX +eKb +xii +vzQ +llp +kXs +kXs +xxH +kXs +kRo +aWg +apA +nEd +dFs +anx +bGw +bGw +bGw +anx +anx +qow +qow +obu +laO +obu +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +laO +laO +laO +laO +tzq +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +tzq +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(89,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +nxa +xuB +xuB +xuB +xuB +udv +oDM +udv +obu +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +nOe +nOe +eXf +eXf +eXf +obu +eXf +eXf +eXf +eXf +eXf +obu +nOe +nOe +laO +laO +crV +crV +crV +xyz +gRS +ies +rak +sGJ +lZo +mTL +rpV +gzt +dgf +opk +hWE +bev +iLE +oPL +byb +laO +laO +laO +laO +laO +laO +laO +laO +obu +jQe +elA +dix +cvt +voY +xBZ +jQe +gEn +jwG +kuk +eGs +eGs +eGs +eGs +eGs +eGs +cnx +eKb +dFs +cdT +gxP +twF +trP +hzq +llp +kXs +kXs +kXs +eQf +meo +yfu +lSs +sIL +fKf +lLc +tSS +nhD +qtJ +yet +anx +osc +qow +qow +laO +obu +laO +laO +nOe +nOe +obu +eXf +eXf +eXf +eXf +eXf +obu +eXf +eXf +eXf +nOe +eXf +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +laO +tzq +xuB +xuB +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +bRn +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(90,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +bRA +bRn +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +obu +nbN +laO +obu +laO +laO +laO +laO +cpO +laO +laO +laO +laO +laO +laO +laO +tAR +omq +afn +xfJ +pOi +rbh +iIW +pvG +lWS +uzp +eJG +aKW +oLQ +nSJ +rRC +bev +qlO +laO +byb +laO +laO +laO +laO +obu +aAM +obu +obu +aAM +jQe +jQe +fWy +xaP +xaP +xaP +xaP +sZH +vif +mhX +eGs +eGs +oZu +prB +eio +eGs +euz +vHt +kdW +kDO +loi +eKb +uST +xOa +atT +lgO +xgP +pUU +nfA +rdD +leW +fRf +wHi +ovW +vEp +xMM +wcy +mHX +uOB +anx +pJo +uHE +qow +laO +obu +laO +laO +laO +laO +laO +laO +laO +obu +laO +laO +laO +laO +obu +laO +laO +obu +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +bRn +tzq +laO +laO +laO +laO +laO +xuB +bRn +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(91,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +laO +tzq +laO +laO +laO +laO +xuB +xuB +nxa +nxa +xuB +tzq +tzq +tzq +tzq +bRn +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +eXf +laO +hEF +hEF +hEF +laO +hEF +hEF +hEF +hEF +hEF +obu +obu +laO +laO +laO +tAR +ifz +sng +saR +hBe +dZt +gxE +dcy +bBD +esk +pBT +umN +bBD +rAF +bev +bev +qlO +iSd +byb +laO +laO +laO +laO +laO +laO +laO +fPA +fPA +fPA +hfD +fjB +xaP +kZs +rWy +tht +rrU +vYO +ucJ +lTm +aPM +gIw +jDo +pod +eGs +gVt +wIM +uqA +qLc +uqA +dFs +dFs +suU +wMl +qIV +xgP +gXw +uPj +pYn +yhc +exJ +jSS +anx +wrB +mgk +kKp +hbc +ejr +anx +cXQ +qyr +pYU +tYW +pYU +laO +laO +laO +obu +obu +qfm +qfm +qfm +qfm +qfm +laO +qfm +qfm +qfm +laO +eXf +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +tzq +tzq +tzq +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(92,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +laO +xuB +laO +xuB +xuB +xuB +nxa +tzq +bRn +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +eXf +obu +qOg +qOg +qOg +pqZ +qOg +qOg +qOg +qOg +qOg +qOg +qOg +obu +obu +crV +crV +axG +eqv +fOR +hBe +rbh +pUR +voq +pNC +scB +ocj +hXE +dPG +ocj +pbT +ldq +fhk +rMR +tZC +ldq +hMe +hMe +fPA +hMe +hMe +fPA +fPA +nzg +aKc +jMR +ucl +xaP +wkk +khs +jhe +rbQ +jpu +mow +ldT +hUF +aZT +xdl +uOS +eGs +tQO +tBM +tBM +vWZ +vWZ +dFs +bSS +dAp +wMl +wMl +wMl +wMl +uPj +dLo +dgL +laM +oFM +anx +hmj +ldA +wPd +hfB +aER +anx +jFl +dYD +cik +iuR +pYU +obu +obu +obu +rLl +rLl +rLl +rLl +rLl +rLl +nGt +rLl +rLl +nGt +rLl +obu +nOe +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +xuB +xuB +laO +laO +laO +xuB +xuB +bRn +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +bRA +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(93,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +rVz +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +nOe +nOe +eXf +eXf +laO +hEF +hEF +hEF +laO +hEF +hEF +hEF +hEF +hEF +obu +pqZ +obu +laO +crV +tVL +mYs +afn +fyO +sXg +rbh +vOb +vDN +wEa +kYf +fdJ +ehA +kAy +pBJ +kCD +ldq +ksG +hBG +aOJ +ldq +ndi +puj +fPA +nQA +fFD +mau +fPA +iWY +ezq +lZc +sVw +xaP +lLD +cNG +xaP +lVI +qtj +mOT +dIb +dIb +dIb +dIb +dIb +dIb +dIb +dIb +dIb +dIb +dIb +dIb +wdQ +sUX +nCG +pgf +hCx +hIJ +uPj +lhE +cLx +kGO +qLf +anx +kYO +iDK +vIR +hup +lLM +anx +qFg +urq +eil +aaX +pYU +pYU +laO +obu +rLl +obu +qfm +qfm +qfm +qfm +qfm +laO +qfm +qfm +qfm +laO +nOe +eXf +eXf +nOe +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +laO +laO +laO +xuB +tzq +tzq +xuB +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +bRn +tzq +tzq +laO +laO +laO +laO +laO +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(94,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +oPL +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +obu +laO +laO +obu +laO +laO +obu +laO +laO +laO +laO +obu +laO +laO +laO +pqZ +laO +laO +crV +cQI +vFN +vbr +otD +hPh +crV +bev +bev +wzy +rDo +htZ +kLw +kBL +ulc +xxw +ldq +wso +lGW +ktt +ldq +iZf +nQA +mQF +bhM +ucl +lQj +fPA +trG +wVn +gFK +xaP +xaP +yip +quI +tht +lVI +cEu +tJE +hDR +qxU +hag +kSJ +mRw +uys +fWE +kSJ +eXC +kSJ +rCX +dIb +aRS +dIb +pSE +kLy +xCS +xCS +xCS +hta +aJW +tAh +nhB +anx +anx +pvL +anx +anx +anx +anx +dFy +qMS +aFC +shJ +erg +pYU +laO +laO +nGt +laO +laO +laO +obu +laO +laO +laO +laO +xTA +laO +laO +obu +laO +laO +obu +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +bRn +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +laO +laO +laO +laO +laO +tzq +tzq +tzq +laO +laO +laO +laO +laO +xuB +bRn +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(95,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +obu +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +gPF +laO +laO +laO +laO +eXf +obu +laO +obu +hEF +hEF +hEF +hEF +hEF +obu +hEF +hEF +hEF +hEF +hEF +pqZ +czU +czU +oQf +oQf +oQf +oQf +oQf +sGX +crV +usn +bev +bev +bev +bev +lNI +imm +imm +imm +imm +imm +nWK +xNj +imm +imm +dOz +nQA +sVw +fPA +wEU +fPA +hgp +wVn +kMS +xaP +ahn +loT +eFo +tht +lVI +wwP +tur +hDR +tts +fpR +uFL +sYS +aaL +aaL +aaL +ugq +tHB +tHB +brq +xaO +nBi +aNT +qDH +bSU +nEN +xCS +xCS +xCS +xCS +aWe +kMZ +giS +qam +nDS +ndJ +wwO +pYU +iJW +koC +raG +raG +raG +raG +xZL +xZL +rLl +qfm +qfm +qfm +qfm +qfm +obu +qfm +qfm +qfm +qfm +qfm +obu +laO +obu +eXf +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(96,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +eXf +obu +rUE +pqZ +qOg +pqZ +qOg +qOg +qOg +qOg +qOg +pqZ +qOg +qOg +qOg +pqZ +fYZ +wSU +nuA +ntG +nvK +dvt +mYR +rSA +ngm +ngm +wSW +eGf +avA +cKx +fIV +imm +veB +uby +imm +eug +pZX +auq +tjc +jPQ +aPU +wix +fPA +fPA +jEe +fPA +erl +wVn +ucl +qPo +hmm +pgg +cAu +xaP +xof +ftR +tur +hDR +epT +reS +reS +wVQ +oGl +qvQ +iYW +lPh +cRA +cRA +nNk +fZJ +oBB +aNT +fkm +fkm +kMw +mQH +jti +our +tUt +ltJ +ogl +goc +ybM +fId +vIQ +qap +pOJ +iYs +fYV +rDQ +xza +hNY +fHm +jaA +kvi +nGt +nGt +rLl +nGt +rLl +rLl +rLl +rLl +rLl +rLl +rLl +rLl +rLl +ska +obu +eXf +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(97,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +eXf +obu +laO +obu +hEF +hEF +hEF +hEF +hEF +obu +hEF +hEF +hEF +hEF +hEF +pqZ +czU +czU +czU +nPO +fQf +ayc +oQf +jez +tgk +hZf +tgk +tgk +rMF +evW +uRj +imm +nHB +oQW +xNj +fgR +dGf +kPz +onm +imm +byP +xUy +tPr +oNa +wix +fPA +irn +wVn +xah +xaP +boB +eiv +iPA +pts +btv +imH +tur +hDR +icp +cRA +kSJ +kSJ +rLW +kSJ +kSJ +mta +kSJ +kSJ +syF +fZJ +pfs +aNT +fkm +fkm +fkm +kcr +kaY +uQA +xCS +bLK +aWe +aWe +urr +xFX +euQ +wLm +ghd +bbJ +raG +djk +nnv +pJt +xZL +xZL +xZL +nGt +qfm +qfm +qfm +qfm +qfm +obu +qfm +qfm +qfm +qfm +qfm +obu +laO +obu +eXf +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +bRn +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(98,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +bRn +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +obu +laO +laO +obu +laO +laO +obu +laO +laO +laO +laO +obu +laO +laO +laO +pqZ +laO +laO +oQf +pSI +uFN +nxr +oQf +cHI +gqh +gqh +gqh +qPC +kIi +gmL +dxg +imm +rrp +ilq +xVU +ofo +xGq +eYo +sQc +imm +rBc +rBc +rBc +jfO +hgj +fPA +wKy +wVn +uFd +xaP +xaP +pKf +lnx +tht +mSW +cEu +tur +hDR +icp +cRA +kSJ +kSJ +rLW +kSJ +kSJ +vqJ +kSJ +kSJ +syF +lBx +iJQ +gqq +fkm +bFS +fkm +btp +btp +bLL +bgT +bLK +kzR +aWe +aWe +kMZ +nfC +kMZ +kMZ +qmo +raG +nbc +qFS +uMy +raG +laO +laO +rLl +laO +laO +laO +obu +laO +laO +laO +laO +obu +laO +laO +xTA +laO +laO +obu +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(99,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +nOe +eXf +eXf +nOe +laO +hEF +hEF +hEF +laO +hEF +hEF +hEF +hEF +hEF +obu +qOg +obu +laO +oQf +oQf +oQf +oQf +oQf +uce +etP +ckh +gqh +kHa +xsq +wfU +gqh +imm +gzL +bGt +pvu +kCO +qZU +iqf +bMB +gPk +tKB +syd +rBc +rBc +cMH +fPA +fPA +iOB +sAb +nQA +xaP +xaP +tgp +xaP +lKS +lYh +nTG +hDR +klY +kTN +ekI +kjc +adO +kzv +kzv +gYV +kzv +wxJ +uLP +iRN +dIb +uil +fkm +bFS +bYo +pWw +ezG +lmQ +bgT +qDj +hCe +qZB +aWe +uht +wTK +qGU +kMZ +fbu +raG +raG +raG +raG +raG +laO +obu +nGt +obu +qfm +qfm +qfm +qfm +qfm +laO +qfm +qfm +qfm +laO +eXf +eXf +nOe +nOe +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +bRn +tzq +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(100,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +nOe +xTA +pqZ +qOg +qOg +qOg +pqZ +qOg +qOg +qOg +qOg +qOg +qOg +obu +obu +obu +gqh +wUI +tcl +rWp +evF +ePv +owu +lMk +lng +mpa +web +web +web +web +web +imm +xNj +fzQ +gPk +gPk +gPk +gSD +vTn +sfj +aCf +xsW +nbC +fPA +fPA +wxR +xYh +phm +sPp +bmk +pNq +bZc +hKI +wCX +dIb +bsS +hDR +dIb +qDI +rjz +fbL +hTO +tjK +qsu +dIb +hRy +hRy +hRy +xCS +hlW +pNm +fkm +pWw +rXD +wYz +wng +weK +kkU +ezI +aWe +aWe +xOB +cTP +kMZ +cyr +rbO +cWP +nDp +rmw +obu +obu +obu +nGt +rLl +rLl +rLl +rLl +rLl +rLl +rLl +rLl +rLl +rLl +obu +nOe +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +bRn +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(101,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +bRn +xuB +xuB +laO +laO +laO +laO +laO +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +eXf +laO +hEF +hEF +hEF +laO +hEF +hEF +hEF +hEF +hEF +obu +obu +laO +laO +laO +gqh +pMa +ngm +trB +uNs +oSf +cNz +gqh +evW +uDp +web +hLR +biW +mUg +web +mMG +hWY +fah +tSu +pfu +cop +dJA +lYC +wys +rBc +nfx +oSq +uZY +fPA +nbC +vsf +qvg +sPp +oog +pNq +rme +voI +tur +hDR +vpS +hmb +dIb +dIb +pVP +vEm +vEm +nAC +bEg +dIb +vvg +qBH +uJh +xCS +nuU +xCS +fkm +ibl +bYo +eEE +bgT +qDj +okz +jNE +sIg +aWe +aWe +frA +frA +frA +frA +jNS +mQs +rmw +laO +laO +laO +obu +obu +qfm +qfm +qfm +qfm +qfm +laO +qfm +qfm +qfm +laO +eXf +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(102,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +obu +nbN +laO +obu +laO +laO +laO +laO +obu +laO +laO +laO +laO +laO +laO +soH +soH +wMM +aWf +ujo +soH +gqh +gqh +gqh +nog +uDp +web +web +tPs +pjs +web +wti +cmc +nBq +wPa +tin +cop +wOd +pok +nTg +rBc +iOc +hLF +lYH +jgX +ctf +ctf +pqf +ctf +ctf +ctf +lYh +hhs +tur +rbG +icp +oMF +dIb +mmM +uKn +wvO +sHu +dMn +dJi +dIb +gYP +wiu +hRy +xCS +xCS +xCS +tav +rFI +pKk +cmV +bhh +qDj +jLi +jNE +ptT +mbv +uRM +frA +sCR +iFZ +frA +frA +ygF +gfP +laO +laO +laO +laO +laO +laO +laO +obu +laO +laO +laO +laO +obu +laO +laO +obu +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +bRn +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +tzq +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(103,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +laO +laO +laO +laO +xuB +xuB +xuB +tzq +laO +laO +laO +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +nOe +nOe +eXf +eXf +eXf +obu +eXf +eXf +eXf +eXf +eXf +obu +nOe +nOe +laO +soH +hyn +fxV +unm +biO +soH +eVS +ipE +gqh +gqh +cPt +hiV +web +bbp +vir +web +vMJ +gdc +hyB +ixC +tNi +cop +vtA +tln +dxo +rBc +jEe +nXC +nQA +nQA +ctf +exC +ddi +lEe +sio +ctf +bFF +iuI +oHz +hDR +rqT +xzG +dIb +lBs +uTy +cDP +pDE +wvJ +dIb +dIb +qrq +gyb +hRy +fqI +jvp +xCS +uhO +uhO +uhO +uhO +uhO +qDj +kkU +bOj +tMG +kii +gRX +frA +lGm +jXT +suV +frA +eLp +rmw +laO +laO +nOe +nOe +obu +eXf +eXf +eXf +eXf +eXf +obu +eXf +eXf +eXf +nOe +eXf +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +tzq +tzq +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +laO +laO +laO +laO +laO +laO +xuB +xuB +bRn +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(104,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +soH +nwA +eTq +sMF +dVE +soH +bWR +jCv +pvr +nlv +uDp +gqV +web +beH +aKb +aTB +dKC +xyP +ptD +rem +nsV +cop +orr +hZO +rBc +rBc +fPA +oDs +tPa +pxL +dKP +tbZ +lkj +osl +oqH +obE +eZH +jbr +uYi +fsm +fsm +fsm +fsm +fsm +tNH +fsm +aqd +iCx +dIb +uIb +wzM +dGG +unA +kTG +oNd +nUC +uuI +fnL +wuT +kko +jjS +qLm +otd +nXw +dkh +rtS +foO +bQj +jyz +lcb +uiG +mhK +lWD +rmw +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +xuB +xuB +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(105,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +soH +soH +drD +qqb +nyx +pLS +soH +aiS +qHy +lhR +gqh +yli +web +web +cfF +isU +vir +ket +slA +iTQ +rGr +uOq +raC +rBc +rBc +rBc +ecD +gIL +nQA +xsW +jgX +ctf +ctf +mCg +ctf +nCe +ctf +pUf +qKB +pus +fsm +aBM +oAv +eDd +mHT +mKk +fsm +fsm +fsm +fsm +iLR +wka +gPb +hRy +vab +dyw +lkK +foZ +qoi +aVM +pYo +gUY +ujH +dkh +pLt +dkh +mKy +uno +frA +gIn +nKK +bOz +frA +eiB +rmw +bRn +tzq +xuB +xuB +laO +laO +laO +laO +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +bRn +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(106,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +laO +laO +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +soH +soH +soH +uYt +wyw +owd +rgV +tPT +soH +aeW +ybP +hnh +gqh +uDp +web +kiH +air +emO +web +dAc +kxN +pnm +reW +omr +raC +rPM +byP +fPA +gFK +oEx +xdc +xsW +nQA +gbv +ctf +huY +ctf +gqS +ctf +pAD +fre +xvW +wLJ +llT +alp +jpx +mIs +blS +tZn +kQv +cLC +fsm +aBI +ueA +hEN +hRy +wDD +koU +smx +wbs +hJs +qso +rrw +rrw +tkj +nGL +dRQ +cnZ +nnC +cxb +frA +syV +dgI +frA +frA +iNM +gfP +gfP +xuB +xuB +xuB +xuB +tzq +laO +tzq +xuB +laO +laO +laO +gPF +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(107,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +laO +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +gPF +laO +laO +laO +vmE +vmE +vmE +vmE +vmE +vmE +wjk +wjk +wjk +soH +soH +soH +soH +bqn +gWE +pGx +bBr +cSk +gGe +xAG +soH +gqh +gqh +gqh +gqh +kRu +web +eku +blT +web +web +cDz +tUJ +aJF +tUJ +cDz +raC +tIr +gFK +fPA +aNU +lYH +nQA +xsW +jgX +gbv +ctf +ctf +ctf +ctf +ctf +qpe +rTf +ieF +lpc +whW +mpS +nRh +nRh +nRh +nRh +vgr +fOn +fsm +fsm +fsm +hpL +hRy +tla +bwL +uGd +foZ +hJs +wPD +aZY +bXc +aWe +wir +jIr +tVS +kHM +twB +twB +twB +twB +twB +koe +nTw +arz +gfP +xuB +xuB +xuB +xuB +tzq +tzq +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +bRn +xuB +laO +laO +laO +laO +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(108,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +vmE +tPl +tBA +jJQ +kca +wDX +rik +rik +wDX +wDX +hWZ +fiQ +frc +gHM +ojT +wTQ +dIl +pfI +bCm +eHt +soH +sWH +ntI +dII +ngm +uDp +tal +tal +tal +tal +hUz +tal +xvn +uhZ +exS +vZy +bQD +oNa +oNa +tPr +oNa +fbS +krg +mVV +kpc +cKv +pau +lNm +kOR +oBV +apL +bGz +bGz +bGz +nRh +nRh +nRh +nRh +bAK +jxi +nRh +nRh +pCp +fWF +xme +xme +fYY +fsm +hRy +bmi +xmr +iaT +hJs +wPD +rrw +sxz +aWe +ifc +jIr +lrk +pLt +twB +qtB +fnJ +qtB +twB +gfP +oGg +tfE +gfP +xuB +xuB +xuB +tzq +tzq +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +xuB +tzq +bRn +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(109,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +bRn +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +bRn +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +vmE +dcC +vmE +vmE +vmE +vmE +wjk +wjk +oZn +oOL +sic +cnw +ePk +eCF +tnq +tnq +cOR +mJZ +rNV +aVd +soH +myp +hvs +muZ +iaD +uDp +tal +lgx +iqF +thV +prZ +sIX +mAA +eik +xAm +vZy +xsW +dvI +hjz +fPA +iyO +oHE +oHE +oHE +oHE +oHE +uyw +hxQ +sNT +jTy +apL +bGz +bGz +xgB +wCz +bMy +pzO +nRh +uBQ +bTD +hTm +nRh +bCk +bCk +bCk +bCk +lZK +bFh +fsm +fsm +hRy +vWY +wJY +oZD +gfI +viJ +aWe +vDs +qFs +pcb +hnH +twB +qtB +qtB +qtB +twB +gnC +qNv +uUD +gfP +gfP +xuB +bRA +bRn +tzq +xuB +xuB +xuB +tzq +bRn +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +tzq +tzq +xuB +laO +laO +laO +laO +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(110,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +bRA +tzq +laO +laO +laO +laO +laO +gPF +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +bRn +tzq +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +cPr +xOk +xOk +xOk +xOk +xOk +fiG +fiG +qvF +sVZ +fuh +mBF +khc +tne +nRY +nRY +bjL +qTH +fDt +soH +soH +uKv +hPi +vJJ +uDp +tal +lyo +eSp +fWA +kVl +tal +fZP +qgF +cor +vZy +vFv +oHE +oHE +oHE +oHE +oHE +fhg +qHM +rbj +jeH +uyw +uPZ +vsY +uVZ +iKr +pus +myo +pus +cmN +bMy +jcD +jCV +neZ +eDb +kHn +nRh +whc +bSz +plk +bCk +jzO +xZl +hVR +koc +fsm +hRy +xxE +mLK +hRy +fsm +fsm +aWe +uQf +fSn +twB +twB +rRM +rWn +dVa +twB +twB +twB +meK +fPZ +rmw +tzq +tzq +tzq +tzq +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +tzq +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(111,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +bRn +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +tzq +tzq +tzq +tzq +bRA +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +soH +wde +uQe +wTL +szy +brn +iVn +jXg +fbg +fbg +vPL +fwT +fTy +bLN +soH +qZi +fWT +gNo +uDp +tal +tal +sda +tal +aAR +tal +nuF +oaE +ewG +vZy +dNK +oHE +dJe +prO +ltI +tGh +jEE +ebD +sfS +tiT +uyw +vvo +nrK +iEd +apL +xrI +dlf +mqv +icU +ekw +lxs +nRh +uMQ +uls +kRF +nRh +dOj +bsY +iAk +bCk +fXL +fXL +fXL +jzO +koc +fsm +fsm +fsm +fsm +wdk +dki +pbB +nMz +mCF +twB +xnJ +jIw +jIw +jIw +qIF +qVB +twB +sLq +gfP +gfP +tzq +tzq +tzq +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(112,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +tzq +nHZ +otP +xuB +xuB +xuB +xuB +xuB +xuB +otP +tzq +laO +laO +laO +laO +laO +vmE +vmE +vmE +vmE +vmE +vmE +wjk +wjk +oZn +fHz +wBk +fHz +tYa +sgj +vZz +sgj +sgj +iGd +sgj +soH +gqa +bLN +soH +sAS +twk +ygl +ppA +usn +tal +tal +tal +tal +tal +jzQ +gjc +foo +vZy +mdT +oHE +txj +ebD +iAX +aAK +wov +gBr +olR +olR +uyw +rnq +oah +hOo +aEW +bFF +mLs +bFF +wCz +bMy +rwD +nRh +dtg +pTi +nRh +nRh +bCk +tBy +bCk +bCk +aiB +hQU +fXL +fXL +jzO +xZl +mWA +qdK +pcd +hmY +bXk +bXk +hbw +bXk +twB +hLm +riK +sxY +vmw +twB +twB +twB +cac +mgE +rmw +tzq +tzq +tzq +tzq +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(113,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +otP +nts +xuB +xuB +xuB +xuB +nxa +xuB +nts +nHZ +bRn +tzq +eUL +laO +laO +laO +vmE +tPb +tPb +tPb +wEH +tTV +jKi +jKi +tTV +xOM +cLW +ubi +xoV +qyN +qir +hXS +jUR +hxv +oZn +soH +gqa +bLN +soH +mMo +avA +hQC +anp +oxB +bpa +pUF +eEy +pUF +tal +mEk +uBA +pTX +vZy +xsW +oHE +krx +fNx +iAX +xjy +weX +pyc +pyc +oHE +uyw +rZs +dmM +mHI +mHI +vlh +iuI +lBY +nRh +nRh +nRh +nRh +oan +rCo +nRh +thJ +rzN +vHR +vYt +luC +lZY +nDP +mUH +fXL +pvc +iCU +fsm +eqq +wzP +bXk +bXk +wbG +sWA +tfN +twB +iLX +ixV +nAu +lYI +qIF +cnj +twB +gXS +oyu +rmw +bRn +tzq +tzq +tzq +tzq +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +bRA +bRn +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +tzq +bRn +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(114,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +nts +xuB +xuB +xuB +xuB +xuB +tzq +tzq +obu +laO +laO +laO +vmE +dYj +kNU +tPb +jtr +oZn +laO +laO +lua +miH +qxA +wUK +wES +sRn +vZz +gLH +kcU +umq +vMT +soH +iCA +iCA +iCA +iCA +vqA +iCA +iCA +pun +fPp +brb +brb +pkm +vZy +vZy +ykp +vZy +vZy +xng +oHE +dJe +hBU +pXj +paD +dcx +pyc +iHi +oHE +mHI +qwU +qwU +mHI +rNa +oTb +txx +oTb +oTb +xeU +gqu +nRh +nRh +nRh +nRh +iYP +nJU +jlW +eTJ +eUt +oey +oey +dse +fXL +fXL +fXL +fXL +lPi +pAV +bXk +sXG +wVu +xTg +bul +bXk +bXk +twB +oqv +twB +twB +twB +twB +gfP +wUS +gfP +gfP +gfP +gfP +qtH +tzq +tzq +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +tzq +xuB +xuB +xuB +xuB +bRn +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(115,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +bRn +xuB +xuB +xuB +xuB +xuB +xuB +nHZ +nts +xuB +xuB +xuB +xuB +nHZ +tzq +laO +xuj +laO +laO +laO +vmE +dKu +vmE +vmE +vmE +vmE +rQI +lzq +rNR +ygN +sYb +jUW +izk +wHX +vID +sgj +hRA +lSf +wmW +xZI +oZA +bRy +qhs +iPu +dSn +ptd +iCA +bpa +bpa +bpa +bpa +dAH +iOM +iOM +iSS +rNI +alk +uCL +oHE +oHE +iKV +xhu +paD +kjj +oHE +oHE +oHE +jFG +uMe +oTb +oTb +mmg +iTr +txx +wnd +oTb +mmg +uBC +sNn +dzf +jhs +jhs +fXL +hUX +bLa +qRU +gGK +trL +hms +tkG +iqc +snD +jXd +fXL +eqq +rGt +bXk +gdS +mzz +hMv +fce +xyC +bXk +cLH +lXb +twB +qeV +eaw +eSA +gfP +bgV +jNS +qCa +dft +jzC +sWg +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +bRA +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(116,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +bRA +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +nts +tzq +laO +obu +laO +laO +laO +laO +arf +bVO +bVO +bVO +bVO +gnb +soH +lHY +ejA +ano +wGX +dZU +osg +nSa +glq +wwD +uck +rzj +uck +hqG +bIG +ghq +hYr +lSK +xdO +iCA +wWD +kWd +onY +bpa +iPv +cPc +iPv +xQR +mVN +nhT +nIa +brb +rMA +vaE +aeQ +yfw +oHE +oHE +vny +sbm +vcr +vcr +vcr +vcr +vcr +vcr +fIn +vcr +vcr +vcr +gIp +dyr +dyr +rcL +sUb +fXL +fXL +fXL +aBA +iCk +puw +oDT +cwk +xjl +jOF +jXd +fXL +eqq +oUk +bXk +rJi +mzz +buM +cCG +eQE +bXk +iBX +jZY +twB +vYp +vBv +toj +gfP +vBh +rse +gfP +gfP +gfP +gfP +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(117,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +tzq +otP +xuB +xuB +nxa +nxa +xuB +xuB +xuB +dlL +xuB +xuB +xuB +laO +laO +xuj +laO +laO +vmE +vmE +vmE +vmE +vmE +vmE +xMT +hUE +tTV +xOM +wwY +rhY +iCt +wgG +bZx +wdz +vEo +soH +jIi +udg +jIi +iCA +iCA +iCA +ecH +rQs +bla +iCA +eax +cyX +ihy +bpa +jYh +pRn +cPc +meS +iPv +cju +cju +lRJ +oHE +sQz +jER +dWl +oHE +oTb +enL +oTb +jEm +hOb +dRJ +lFJ +iMZ +ktf +arU +lIW +ugG +nXE +oTb +vmq +vcr +oTb +uBC +oTb +pAa +aDt +aDt +pFC +wJz +hsC +lZY +xjl +trL +tJt +fXL +bBV +fsm +bXk +bXk +xIN +nsq +bXk +bXk +bXk +ftU +twB +twB +gfP +tQc +gfP +gfP +gfP +wBF +pFl +tzM +lrM +gfP +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(118,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +bRn +tzq +xuB +xuB +xuB +xuB +xuB +nxa +xuB +dlL +dlL +dlL +dlL +dlL +dlL +dlL +nsH +laO +vmE +bDO +bDO +bDO +pWN +tTV +oyL +laO +lua +tZu +wUK +qxA +ljC +mir +wGj +pnh +soH +soH +xxW +wOt +qJt +phq +nPr +iCA +bIy +mGK +muu +iCA +djm +uvO +mua +wLs +alk +cAP +vJD +vJD +cju +cju +fEc +ogu +kyB +vRY +eqF +dUT +jEm +jEm +jEm +jEm +oHA +gpa +enI +aBk +aBk +aBk +aBk +aBk +aBk +aBk +aBk +aBk +cJE +vcr +gIp +dyr +dyr +lGt +rLD +tVP +avJ +eLq +hln +wJo +hln +lOx +wsF +tcN +pcd +aju +bXk +tMX +bXk +bXk +wpl +fsm +lUb +kYM +ekZ +fkP +toH +ceQ +dnu +tPv +vaq +soi +agJ +jNS +gfP +gfP +xuB +bRn +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(119,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +tzq +nHZ +xuB +xuB +xuB +nxa +nxa +nts +otP +dlL +dlL +dlL +dlL +dlL +dlL +dlL +laO +vmE +dtq +qeh +bDO +iKT +oZn +xDc +jyr +rNR +ygN +dtP +sCI +uTg +siP +ceW +eGn +soH +jQg +iGU +aVN +nDx +gKY +fni +kyh +kyh +kyh +kyh +kyh +kyh +kyh +bpa +bpa +vko +qka +kQr +wmw +cju +aCB +oOe +ogu +tyU +vRY +uMe +vcr +oTb +dwe +vIV +gpa +gpa +gpa +uAp +aBk +uzg +iAj +iAj +oIx +cfC +kZe +kVz +aBk +kzF +vbk +vbk +dwe +dzP +vcr +aDt +fXL +fXL +fXL +hMm +nLW +lcX +auL +fXL +ufe +kqX +skr +bnd +kqX +ezd +pcd +pcd +wNk +ePT +wUP +jYB +voN +jHt +fOd +fOd +fOd +fOd +fCX +fOd +jNS +oRk +gfP +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +tzq +xuB +xuB +laO +laO +laO +laO +laO +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(120,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +xuB +xuB +xuB +otP +sfD +nxa +nxa +nxa +xuB +xuB +otP +nts +dlL +laY +rcG +fca +dlL +dlL +dlL +laO +vmE +dKu +vmE +vmE +vmE +vmE +gii +wjk +soH +soH +soH +soH +soH +soH +soH +soH +soH +hqd +oWI +fpI +kVD +oXK +lBB +kyh +nhS +jvI +qIn +vvy +eWz +kyh +xWs +lCO +iqX +kQr +tuK +cju +cju +cJC +eqi +qoU +cju +vaF +oTb +vcr +qdG +jkr +gpa +gpa +ooZ +uMX +xkw +aBk +dYf +mPl +wwh +nYA +cfC +dHU +laV +wkO +uJU +boM +vbk +vbk +mlJ +szo +acy +fXL +fXL +ahd +nsp +rmH +iIr +pgy +fXL +cSh +bgt +lUa +lUa +fsm +fsm +bgt +bgt +fsm +sRW +wUS +sKW +lnf +lsF +fOd +tLE +hgn +fLd +stc +fOd +gEQ +gfP +gfP +gfP +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +tzq +tzq +xuB +bRn +xuB +xuB +xuB +xuB +xuB +laO +laO +xuB +tzq +xuB +laO +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(121,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +rQT +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +otP +oAn +pYE +dlL +cdd +mcV +uee +eyD +dlL +dlL +laO +laO +arf +bVO +bVO +bVO +bVO +gnb +laO +laO +kAb +kCC +bOB +qED +hWK +hWK +cmu +jOr +mcZ +hWK +vLO +lDz +kyh +kyh +kyh +vvb +xBS +tph +mib +fGV +kyh +bzv +vJD +sMs +gBm +alk +cju +qzc +qbf +pqE +mzm +cju +yjC +oTb +vcr +jin +gpa +gpa +qvx +xkw +xkw +xkw +aBk +dYf +nfV +dYf +sAc +gCg +fiP +iQd +vye +loS +iVw +mke +vbk +nXE +vcr +oTb +dzf +fXL +eUE +eUE +hLi +vjj +iwh +fXL +wfn +bgt +bgt +onE +hbj +bgt +bgt +uxv +fsm +iDj +pwj +jdd +ujJ +umu +fOd +ocM +vVq +vfq +ctM +fOd +eQX +iha +kTz +gfP +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +tzq +xuB +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(122,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +tzq +xuB +xuB +xuB +nxa +xuB +xuB +pYE +pYE +pYE +pYE +pYE +pYE +dlL +cQl +hFZ +mIm +vYm +dlL +dlL +dlL +laO +laO +laO +laO +laO +laO +laO +laO +laO +eVe +bOB +bOB +gip +uZG +uKM +emH +uNe +uNe +gce +yje +bZh +uAj +sOs +kyh +twS +wGQ +pfZ +bbE +mMc +kyh +sIa +iqX +yag +kvL +wtQ +cju +tDc +xeW +nsa +cju +cju +iNA +oTb +eWT +gpa +gpa +sZZ +xkw +ooZ +viw +gpa +aBk +dYf +mPl +ucY +vaC +cfC +blv +koV +wkO +loS +oVJ +lpx +eoj +nXE +cJE +oTb +pAa +fXL +fXL +fXL +qha +wze +nQw +fXL +uWq +bgt +uSA +bgt +bgt +bgt +bgt +xcz +nQB +nQB +oye +nQB +nQB +fOd +fOd +fOd +xaR +sUY +hYw +fOd +eQz +qoR +rYg +rmw +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +gPF +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +bRn +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(123,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +tzq +tzq +xuB +xuB +nxa +pYE +pYE +pYE +pYE +pYE +pYE +pYE +pYE +pYE +pYE +nBe +fNN +uuB +eCx +dlL +dlL +laO +laO +laO +jOm +jOm +jOm +jOm +laO +laO +kAb +kAb +azH +cdt +npk +hUb +sVj +tnI +uQk +wzB +qVq +bzI +stj +aEU +dPO +kku +hwl +cSo +hdm +kku +qhm +lCO +vJD +bhJ +wfI +bpZ +cju +kXm +fFb +rUY +cju +qTQ +klg +oTb +eWT +gpa +hFI +rzv +xkw +xkw +xkw +uIB +rOz +ahf +aYN +seQ +cKO +cfC +nqS +eRV +aBk +vQF +epw +aYr +hQm +cnQ +cJE +vcr +kEi +hpr +fXL +fXL +fXL +fXL +fXL +fXL +fsm +rTD +fsm +fsm +fsm +oCG +oCG +oCG +nQB +kfi +foX +uxg +bUf +bZZ +fAH +otS +hsU +xjd +bjA +fOd +vrO +oER +xBb +rmw +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(124,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +bRn +tzq +xuB +xuB +xuB +pYE +cAF +qJX +pYE +crI +tSe +lJu +sEE +xej +pYE +pRY +sNQ +pRY +sTr +sTr +dlL +laO +laO +laO +sly +svp +jWA +lNq +laO +obu +obu +eVe +hWK +npk +hWK +kAb +dtw +gkM +sNx +gyS +qVq +bJf +igo +igo +igo +igo +igo +igo +aPE +tto +kyh +aaw +nZs +sFJ +sFJ +sFJ +cju +cju +cju +cju +cju +qFc +vcr +pMS +eWT +gpa +xcy +nJH +xcy +jqq +qqi +qqi +aBk +aBk +aBk +aBk +aBk +aBk +aBk +aBk +aBk +bgL +emJ +uUR +uUR +uUR +uUR +dtO +vcr +eyJ +jhs +kZf +kZf +kZf +kZf +kZf +kZf +kZf +kZf +kZf +kZf +oCG +kHF +iZw +nQB +hTP +tZf +nQB +yfZ +bZZ +bZZ +fOd +fOd +ubn +fOd +fOd +nQB +nQB +gfP +gfP +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +bRn +tzq +laO +laO +laO +laO +xuB +tzq +laO +laO +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(125,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +bRA +nxa +nxa +xuB +pYE +fpG +eQQ +vOM +wuw +qrQ +hOA +oQe +wRn +pYE +mUk +lDi +vXr +eRW +sTr +sTr +obu +obu +xuj +aRb +iKG +eYk +eSv +twM +dvB +jWA +kAb +nwm +rtK +hWK +hKo +rUa +qkl +nCx +iLD +tXY +bzI +vLV +aFk +kyJ +oAe +vnW +igo +ugR +hCj +kyh +efG +vJD +sFJ +hKZ +kwp +fli +nkH +ojb +dcv +cJh +wGk +vcr +wnm +gTt +gTt +gTt +gTt +gTt +tSV +aEf +xKC +flq +fKE +ivR +aCj +pjm +cFp +pDJ +tdi +vbk +xJi +sjB +qJO +thp +dwu +uUR +mKr +vcr +pAa +jhs +kZf +kZf +kZf +kZf +kZf +kZf +kZf +kZf +kZf +oUQ +oCG +iRf +gCX +nQB +nkW +foX +bWK +cgY +cgY +cgY +guK +fFH +sJj +usR +rcR +fPr +nQB +xuB +nHZ +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +laO +laO +laO +laO +laO +xuB +bRn +tzq +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(126,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +nxa +xuB +pYE +bAl +lkd +vDq +kjm +tBo +tsO +mzQ +leY +pYE +dqU +mbg +nOt +uYM +sTr +sTr +laO +laO +laO +sly +svp +xlH +twM +twM +dvB +ezK +eVe +cAv +npk +jSQ +kAb +woc +kAb +rcX +cdt +emG +kAb +igo +kpy +lSi +krq +rOW +igo +igo +igo +igo +vJD +wib +cAb +cWY +dAA +qvP +qvP +mBS +nYX +oqt +cIQ +vcr +gul +gTt +kHi +cDu +lYG +gTt +gTt +gTt +qwF +eNq +oJp +yhM +nxX +hEj +kcg +xGY +avs +trb +loS +hTE +qJO +ceE +sro +vDZ +uBj +vcr +oTb +aRw +kZf +kZf +kZf +kZf +kZf +kZf +kZf +kZf +kZf +kZf +uiT +iRf +jsf +hoE +hvB +qaP +euH +lNF +wnX +fNu +wnX +lTJ +kPT +ePE +wID +cea +aUI +xuB +lvU +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(127,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +otP +pYE +pYE +nsx +bfQ +pUL +rmq +tpr +kjS +gIA +gIA +gIA +dwI +mqF +eRz +sTr +sTr +laO +laO +laO +laO +sly +iKG +xlH +twM +twM +twM +twM +vQB +xBP +npk +cql +mTn +gca +vUj +bYM +dba +vTQ +ljX +vLV +svk +ibg +taG +abb +igo +jGf +dZb +igo +iyj +sFJ +sFJ +cVd +wCZ +cVd +uqB +cVd +wCZ +cJh +iZj +vcr +uIm +gTt +lvy +wfM +pEe +njr +txy +gTt +nuY +aLK +fKE +mbp +qid +qid +gNf +fkp +sLd +vbk +ciZ +loS +udt +jSv +xkH +uUR +xPq +hUW +oTb +nMV +kZf +kZf +kZf +kZf +kZf +kZf +kZf +kZf +kZf +kZf +hPY +iRf +dRb +mZQ +fxj +jjM +rjJ +rec +sUz +rec +dkt +jkn +pys +fvc +wID +fOo +aUI +bRn +xVq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +bRn +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(128,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +tzq +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +nxa +laO +laO +laO +xuB +kNZ +pYE +pYE +oqB +fWa +fiR +kWi +cRJ +bgj +gFb +hoq +hHZ +pHB +kyR +lfV +sTr +sTr +ofe +laO +laO +laO +jOm +jOm +vpU +jOm +laO +laO +laO +kAb +vhg +rgb +rrK +cLg +ukv +ukv +sQK +lcv +uYy +xQW +vWL +jvO +mgD +xEd +guU +izE +guU +lWp +igo +vJD +sFJ +pvp +nwj +vAU +nmx +rwy +eQx +szi +sFJ +xNW +fIn +arU +gTt +jwy +smu +cbz +hYb +gUD +luG +kyo +iYh +iYh +pgv +pkY +gGo +gZw +myq +ovj +uUR +uUR +uUR +uUR +mQi +rOb +uUR +arU +fIn +oUr +nMV +kZf +kZf +kZf +kZf +kZf +kZf +kZf +kZf +kZf +kZf +hPY +iRf +jsf +hoE +sgu +vIj +mJT +gov +rHj +gov +rAg +nsu +fXD +hJp +oEW +kUP +aUI +tzq +eXf +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(129,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +nxa +xuB +laO +laO +laO +nHZ +pYE +pYE +dkq +bCp +tCq +qCt +njf +cly +gIA +gIA +gIA +gNq +nom +mxc +sTr +sTr +laO +laO +laO +gPF +sly +svp +xlH +twM +twM +twM +twM +vQB +iYE +skI +rhO +rku +lkn +gZp +nGd +tQd +hsA +oXK +vLV +ntN +tTE +pnS +aeE +igo +qYF +xwG +igo +jVg +sFJ +xjZ +lmF +wxr +xDM +nHx +tXc +kMn +cJh +gmb +szo +dVt +gTt +lix +gAp +wSf +vWm +vVT +gTt +kkt +qSM +fKE +wkj +wZy +wZy +dVF +fkp +xYU +uUR +jkL +jkL +sJd +cPa +jtU +are +ocm +vcr +oTb +nMV +kZf +kZf +kZf +kZf +kZf +kZf +kZf +kZf +kZf +kZf +hPY +hNC +iRx +mZQ +fxj +vIj +eaQ +gtB +gaA +gtB +fLb +jWe +vkO +aka +wID +iRO +aUI +tzq +eXf +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(130,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +tzq +tzq +laO +laO +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +tzq +nxa +xuB +xuB +laO +laO +tzq +pYE +pYE +hIq +anQ +vhr +aUQ +jaQ +pFt +mym +dTX +pYE +jGG +bVH +jvc +iDG +sTr +sTr +laO +laO +laO +sly +iKG +xlH +twM +twM +dvB +jWA +eVe +iPi +sUB +nVk +kAb +xRc +kAb +cAK +lWF +boE +kAb +igo +kEO +mYe +mYe +igo +igo +igo +igo +igo +vJD +sFJ +bIg +tuE +wqE +qRP +eKg +tXc +kMn +jNy +hGd +vcr +jXh +gTt +pWe +het +niZ +gTt +gTt +gTt +oVa +byO +mPk +aJN +xWp +aJN +qPu +cfo +cgy +uUR +cyb +ylH +otO +vuD +usL +ycf +uZh +vcr +hFo +eQD +kZf +kZf +kZf +kZf +kZf +kZf +kZf +kZf +kZf +kZf +jAs +mPG +ofy +hoE +hgG +tSt +wRf +sKu +dGc +sKu +dGc +pnQ +cks +uYV +mAy +ofj +aUI +tzq +nOe +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +bRn +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(131,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +bRn +tzq +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +bRn +xuB +xuB +xuB +nxa +obu +obu +obu +pYE +pYE +dyS +vcn +kyL +lNp +gDx +cMr +pCG +pCG +pYE +qHR +kaA +tyc +anP +sTr +sTr +obu +obu +xuj +aRb +svp +eYk +eSv +twM +dvB +ezK +kAb +nwm +sUB +gkM +bEj +hWK +wMJ +dNi +gdV +vXn +fRA +krJ +rOJ +lAB +mVT +cCi +trd +goH +qab +cCi +isM +sFJ +kHL +lrs +uGf +nDw +wJX +vdM +kMn +cJh +lJz +vcr +kNY +gTt +gTt +gTt +gTt +gTt +ykB +wnQ +qbi +gWJ +fKE +wcF +dUw +iGt +lBk +mtE +mzv +uUR +vPk +jkL +sJd +gLW +uPX +uUR +bMx +vcr +fSM +jhs +dLl +kZf +kZf +kZf +kZf +kZf +kZf +kZf +kZf +kZf +oCG +jNw +dMR +nQB +xLY +vIj +ijz +odI +odI +nJE +nun +gSJ +dsm +ePE +teZ +iZi +aUI +tzq +obu +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +tzq +tzq +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(132,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +nxa +obu +obu +obu +pYE +pYE +grS +lTC +pYE +jHa +pjX +xbc +vWv +mvr +pYE +pRY +nrG +pRY +sTr +sTr +pdb +laO +laO +laO +sly +iKG +ezK +lNq +laO +obu +obu +eVe +rUa +sUB +dFi +kAb +mEN +rUa +dOZ +kJT +dOZ +fRA +rFP +ptG +ptG +cBK +cCi +jVd +joj +byo +cCi +iyj +sFJ +esT +hfx +mcp +aDq +vAK +qTO +gRB +sFJ +dXk +vcr +vcr +cJE +vbN +fAm +wrd +suy +iok +lNk +iSb +pWX +lNk +lNk +lNk +cWa +fKE +fKE +lNk +uUR +uUR +uUR +uUR +uUR +uUR +uUR +xFK +vcr +vgo +jhs +kZf +kZf +kZf +kZf +kZf +kZf +kZf +kZf +kZf +kZf +oCG +kIE +bUF +nQB +nQB +fVC +nQB +nQB +nQB +nQB +nQB +nQB +uuW +sIo +gSU +uuW +uuW +uuW +uuW +obu +obu +ans +obu +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +bRn +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +bRn +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(133,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +bRn +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +xuB +laO +laO +laO +laO +laO +laO +tzq +bRA +nxa +xuB +xuB +tzq +laO +laO +laO +xuB +pYE +pYE +pYE +pYE +pYE +pYE +pYE +pYE +pYE +pYE +gHr +vRR +xtg +isz +pdb +pdb +laO +laO +laO +jOm +jOm +jOm +jOm +laO +laO +kAb +kAb +hOa +sUB +gkM +liD +kLD +gID +ukK +quG +lUo +cup +rFP +ylp +tVn +qXE +cCi +eiA +clW +mrc +cCi +vJD +sFJ +jqd +sQP +pnz +sFJ +sFJ +sFJ +sFJ +sFJ +weE +oTb +oTb +sgV +vbN +fvo +ohm +jYM +vkR +vbN +vbN +vbN +lNk +kfq +okh +avs +okh +vZe +wbD +lNk +pxY +mtd +fNV +jEv +tlh +oUH +bTb +jvM +bta +oCG +oCG +oCG +hPY +wyb +hPY +hPY +ofF +hPY +hPY +oCG +oCG +dYM +elh +oCG +wkd +vVO +bxb +nRK +ePd +bzf +pVh +fsi +uuW +fzu +iQI +ecz +sSt +kvO +kRE +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +xuB +xuB +xuB +xuB +tzq +xuB +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(134,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +gPF +laO +laO +laO +xuB +xuB +nxa +xuB +xuB +bRn +laO +laO +laO +xuB +nHZ +pYE +pYE +pYE +pYE +pYE +pYE +pdb +pdb +hdT +kuW +vRR +jei +pdb +pdb +pdb +laO +laO +laO +laO +laO +laO +laO +laO +sWm +gvj +adr +wVC +sUB +dFi +rVx +cai +gGL +omJ +aOb +mwq +rrK +spT +kKA +dIR +qXE +jat +lUp +riF +arV +cCi +iyj +sFJ +hRd +sFJ +sFJ +sFJ +wEB +alk +rNI +aWD +weE +lJz +dzP +cJE +vbN +vbN +coI +vGO +aGz +vbN +wFM +wMV +lNk +lzZ +hLs +rlT +hLs +ptH +tQL +lNk +phD +hGY +aMX +vMs +vMs +ktE +oTb +jPY +vgo +ouS +aim +oCG +oLv +wor +fii +iim +wgb +mxO +qaN +wGb +dQq +iRf +qVf +oCG +mJj +pGG +beg +ePd +ePd +yiW +bCy +gOq +uuW +iuA +neU +ixt +cuN +htA +xyE +obu +obu +ans +obu +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +tzq +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(135,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +nxa +xuB +xuB +bRA +tzq +laO +laO +tzq +otP +pYE +pYE +pYE +pYE +xuB +jIY +pdb +pdb +dcw +crW +dsD +bbA +pdb +pdb +laO +laO +laO +jOm +jOm +jKh +jOm +laO +laO +kAb +kAb +kAb +bpv +elC +sWD +rGF +vzR +fiT +vzR +uuk +fsk +eXJ +qXE +qXE +qXE +qXE +qdO +mDx +svn +rEf +cCi +pMi +vJD +vJD +rhr +rLr +hgA +alk +wFs +wFs +wFs +wFs +xPT +hFo +vcr +nYB +xUm +aTL +kGu +hBQ +glr +ffw +cZE +lNk +jdG +vSA +wkA +nAZ +ukh +ujr +voX +gHP +itS +vMs +vMs +mQD +uhr +iVK +nTd +giw +ugu +tzG +xap +uHn +ugu +ugu +bNG +ryF +sux +sux +jDd +pPX +pPX +lwX +cbO +kqY +vHx +anE +kWo +erw +erw +cjn +yiW +uuW +pUh +bjs +jty +cWR +eJU +xyE +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +tzq +bRn +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(136,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +nxa +nxa +xuB +xuB +xuB +laO +laO +laO +vcy +nxa +nxa +tzq +xuB +xuB +laO +pdb +pdb +xtg +sYj +cnq +pdb +pdb +pdb +obu +obu +xuj +aLH +wmi +wmi +wmi +obu +obu +rVR +ohn +mum +ksB +yax +qtf +xhg +syU +etF +oNC +ogm +tzO +cKI +ljX +mLg +cCi +nul +snL +oGE +uGT +uHa +cCi +iAS +oYe +bpa +vJD +fOj +fOj +pMv +wFs +rTH +bnl +wFs +wFs +hiK +vcr +qdG +xUm +xUm +xUm +odX +vbN +buK +kul +lNk +moV +xuX +mkO +oED +sbt +rHS +lNk +fJF +vMs +vMs +jHY +jCQ +uhr +fSM +oCG +mFn +qMR +xxM +iYg +eWs +aXZ +rxm +eTG +rVv +rxm +npV +oCG +suk +waW +gIV +gIV +gIV +gIV +gIV +gIV +yiW +yiW +xzU +crg +uuW +qVF +neU +lTf +pEr +xyE +xyE +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(137,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +obu +obu +laO +laO +laO +laO +pdb +pdb +pdb +mls +pdb +pdb +pdb +pdb +laO +laO +laO +jOm +jOm +cDK +jOm +laO +laO +okv +okv +okv +okv +okv +azp +pKl +pKl +pKl +pKl +reP +nid +nid +oNZ +tmI +xjR +xox +ffp +fgJ +omP +isX +cCi +vJD +gTT +dpv +vJD +nZr +eEy +fOj +lMz +bmx +qLy +oKD +sGK +lJz +vcr +oTb +kcf +aYJ +vbN +lJh +vbN +fGw +hHf +lNk +iVj +nKb +mkO +oED +xHt +mwA +lNk +vMs +vMs +qkJ +kcf +enL +qGf +ePd +ePd +ePd +ePd +ePd +jPS +jPS +wLb +wLb +fUK +wLb +wLb +jPS +gIV +gIV +gIV +gIV +swA +oTV +vEO +wpZ +gIV +gIV +jmA +oQK +uCE +uuW +hTc +lAu +uWj +rnL +xyE +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +laO +laO +laO +tzq +xuB +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +bRn +tzq +tzq +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(138,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +nxa +xuB +tzq +laO +laO +laO +laO +obu +obu +laO +laO +laO +laO +pdb +pdb +gAY +sYj +uRY +pdb +pdb +tHZ +laO +laO +laO +laO +laO +laO +laO +laO +laO +mWa +vKJ +cYR +ajB +okv +cMb +fZv +mqP +tqq +glu +fUp +mao +olD +wzz +czx +kKH +iIu +jNM +cCi +rMP +cCi +cCi +vJD +bSZ +bSZ +bSZ +bSZ +bSZ +bSZ +bSZ +sMr +sjY +gvh +aMk +weE +eHA +vcr +vcr +vcr +vcr +mDs +vbN +vbN +vbN +lNk +lNk +lNk +lNk +lNk +lNk +lNk +lNk +pyy +cCu +vcr +vcr +vcr +fGS +riJ +hCM +lSH +dex +gWl +jPS +ihj +kya +fwq +wXq +jeP +upk +jNC +rVp +sre +imw +qlu +oUZ +jhH +qaW +duZ +rpb +gIV +dsI +oQK +uuW +uuW +uuW +vTo +uuW +uuW +uuW +bRA +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +xuB +xuB +xuB +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +xuB +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(139,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +nxa +nxa +bRn +tzq +laO +laO +bRn +nxa +nxa +xuB +laO +laO +laO +xuj +nCW +cOP +cOP +cOP +nCW +xuj +laO +laO +xuj +laO +laO +xuj +laO +laO +xuj +laO +mWa +wOR +tlE +kWJ +okv +hZP +oly +lDh +gZr +glu +glu +wZE +glu +pKl +pKl +cCi +cCi +cCi +cCi +kpW +aSs +vJD +vJD +bSZ +bzu +pSK +syw +fdV +uWe +bSZ +omT +eBQ +gJH +wFs +eYZ +prK +ubF +wFs +oTb +oTb +vcr +oTb +aIi +nXE +eMd +lLW +arU +cuV +iMZ +uZh +vyh +oTb +vcr +oTb +oTb +uZS +ntX +ePd +ePd +tkk +ePd +yiW +dex +cpZ +wLT +cXL +fwq +wPr +jeP +upk +aTe +qru +pTl +imw +cTL +end +oEY +upR +lxN +lTE +gIV +sGY +pFR +uuW +ttD +aED +sPk +pSo +uuW +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +tzq +laO +laO +xuB +xuB +xuB +tzq +bRn +xuB +xuB +xuB +xuB +laO +laO +xuB +tzq +laO +laO +tzq +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(140,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +nxa +xuB +xuB +xuB +tzq +bRA +tzq +xuB +xuB +xuB +xuB +laO +obu +nCW +bcA +eUZ +sEs +jZr +tZR +pEu +pEu +tZR +pEu +pEu +tZR +pEu +pEu +tZR +pEu +fhU +rvM +maj +okv +okv +mIF +bmG +nNW +mmL +nNW +aMm +eDZ +sIW +uKx +uqV +pKl +mRn +uCt +jGt +bgD +bSZ +bSZ +bSZ +bSZ +epH +dvl +xAb +qyO +sGS +bSZ +jFj +fmW +sFg +wFs +dzV +wXl +ebj +agI +lJz +skZ +vcr +vcr +vcr +vcr +vcr +vcr +fIn +vcr +pMS +vcr +vcr +szo +vcr +luW +ntX +fJp +ePd +ePd +tuL +ceI +ePd +fDo +hIT +jPS +mRP +jiF +vpG +jSH +mgl +rut +mLf +ltn +jMT +gUy +wub +niY +rZa +klV +lMa +tdJ +gIV +lyq +osr +xEc +vRA +sPk +lKe +uuW +uuW +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +gPF +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +tzq +tzq +laO +laO +xuB +xuB +tzq +laO +tzq +tzq +tzq +tzq +xuB +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(141,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +xuB +nxa +nxa +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +laO +xuj +nCW +nCW +nCW +nCW +nCW +xuj +laO +laO +xuj +laO +laO +xuj +laO +laO +xuj +laO +okv +okv +okv +okv +isL +vzu +nOP +srV +lxS +jvx +mwK +ciL +iul +nqL +tQk +pKl +azS +ozX +ozX +bgD +bSZ +kfk +iPz +rRR +dDZ +gNY +kvd +nDF +nPC +bSZ +mfu +uKC +mfu +wFs +uJk +xFq +vBO +wFs +agI +wFs +weE +lJz +sfg +mmg +oTb +ukU +txx +bdt +oTb +uZS +kjn +mhx +nAW +bhd +jOO +wmC +ePd +fPH +ktv +oNf +hDx +izs +vTi +jPS +jPS +wRj +fVR +awr +mnF +iPy +gIV +eSq +atL +imw +aBx +nRZ +hqT +rwj +rCS +jFg +gIV +cEh +oQK +uuW +uuW +csN +iOE +uuW +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +laO +tzq +tzq +xuB +tzq +tzq +laO +laO +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(142,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +nxa +xuB +xuB +xuB +xuB +xuB +xuB +xuB +bRn +tzq +laO +obu +laO +laO +laO +laO +laO +obu +laO +laO +laO +laO +laO +obu +laO +laO +laO +laO +tbm +iSx +wFp +pKl +aoY +kTv +shG +vGy +fHB +pvB +iKI +ciL +mYt +hpf +kqZ +pKl +ihu +boG +hHF +bgD +bSZ +wjl +bno +aLw +dSK +xGo +dYi +uOm +rXe +bSZ +jAw +xJA +qnp +wFs +rue +fsY +bve +mDX +xtX +soS +soS +soS +soS +ngz +oTb +hFo +txx +oTb +oTb +dAD +qlP +qlP +qlP +bhd +utH +aIl +ePd +lZS +wkJ +bjw +hDx +dex +dex +uJE +jPS +jPS +jPS +eIb +jPS +jPS +gIV +gIV +gIV +gIV +gIV +iCF +vEO +mnq +poO +gIV +gIV +xuS +hbh +dNe +uuW +uuW +uuW +uuW +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +laO +laO +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(143,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +nxa +nxa +xuB +xuB +xuB +xuB +tzq +tzq +laO +eUL +laO +laO +laO +laO +laO +eUL +laO +laO +laO +laO +laO +obu +jOm +laO +laO +laO +tbm +hzK +dMD +pKl +sIW +wZq +nOP +dTg +orm +aBf +mwK +weG +xGX +aeH +pKl +pKl +ihu +hHF +alt +mrU +bSZ +iXF +egv +bSZ +bSZ +dno +dno +djD +dno +bSZ +gPt +fmW +mFM +mfu +euo +bIc +fmW +pwB +pwB +slg +cqr +six +soS +soS +soS +eRG +aAF +tUw +qlP +qlP +qlP +dqe +amw +jIs +bhd +glB +bhd +bhd +bhd +bhd +bhd +pFw +wmh +dex +hWP +vPH +lTM +ldM +hiw +erw +cSr +cSr +rZu +sEa +gIV +gIV +gIV +gIV +gIV +gIV +lmC +sVM +hbh +afy +gqN +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(144,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tbm +fWP +fWP +pKl +rVV +wZq +tOe +meQ +nSt +meQ +otY +umr +sIW +eiS +pKl +svJ +ihu +ozX +oKr +fJT +bSZ +bSZ +bSZ +bSZ +oMC +jnm +flB +iZL +dQe +bYc +mfu +ikD +tHg +tQC +xJI +xJI +oIf +xJI +gdv +soS +soS +fUh +ydj +qlD +bMu +tHO +not +tHO +hHB +rdX +sqw +hea +lWk +bhd +aOU +veu +riS +wAT +gSW +fmf +bhd +uOJ +uOJ +uOJ +uOJ +uOJ +uOJ +uOJ +uOJ +uOJ +uOJ +cdY +osr +wef +ePd +pFw +ezr +kzz +mtR +ePd +lXl +coM +mkr +vlU +gqN +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(145,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +wmi +lNq +laO +laO +laO +tRY +umM +tRY +pKl +pKl +bdX +dTg +fHB +fHB +fHB +aBf +lhf +pKl +uCx +pKl +cGF +tzU +tzU +qJH +uUr +kXd +rIC +kcS +uUr +dbR +fmY +xTG +eay +eCU +oRu +tTT +qBk +aDr +sBm +mLq +mLq +bJd +xJI +gdv +seg +soS +ePj +gbL +pcv +una +miy +jgY +xfw +qlP +rgp +qii +lGL +irM +bhd +bsJ +hgE +uZt +vBz +nKp +qFy +bhd +ivY +aPw +kpb +ghZ +mMb +jEF +mKL +pit +hQF +uOJ +bCe +mkm +cHA +ePd +wHZ +nkv +oGx +nlA +ePd +ePd +nYv +hpo +pnu +gqN +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(146,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +bRn +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +wmi +lNq +laO +laO +laO +tRY +eUJ +ozX +aTU +pKl +pKl +qUQ +qUQ +qUQ +qUQ +piC +pKl +pKl +sZG +xKB +dpN +suB +lpd +qJH +uUr +cHO +dNZ +xBR +rGl +reG +sLi +sLR +had +eCU +asC +pLN +jjv +fYj +vbB +nYk +mWV +eEh +ruU +gdv +iAy +soS +lBN +hFf +szZ +soS +uMO +hXw +uMO +hHB +iut +qii +urj +dGw +qlP +qlP +qlP +siu +rcb +qvB +kNw +bhd +kMl +oQi +dEm +cBs +bGR +uHB +aYt +xro +odW +gxc +erw +ske +ngv +ePd +ezr +oxQ +whS +mBw +fjD +ePd +vIg +oQK +grD +ePd +obu +obu +obu +ans +obu +vky +obu +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(147,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +obu +jOm +laO +laO +tzq +tbm +fXT +qAW +ozX +gUb +pKl +pKl +pKl +pKl +pKl +pKl +pKl +aKs +lXP +mtx +oyB +kPN +uHb +mIg +uUr +axE +kpO +eKV +rGl +iiw +tGx +bnN +rGe +bVU +hlU +tLv +kNp +tiE +mfu +tLv +oWC +oWC +oWC +oWC +nfU +soS +vbO +rnb +ahj +una +tTs +jlk +tTs +hHB +ghr +bVV +qlP +qlP +eYs +sMu +qlP +fKj +sXQ +qvB +qZA +bhd +ouH +uvz +lXd +ckT +unc +kDE +vrT +unc +urJ +uOJ +fJy +oQK +nkv +ePd +ePd +ePd +ePd +oTq +fXd +ePd +lyq +pFR +ePd +ePd +ePd +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +tzq +tzq +tzq +xuB +xuB +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(148,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +obu +laO +laO +xuB +xuB +tbm +tbm +mRn +ozX +qAW +ozX +mJM +ozX +rnd +lSt +lXP +mBp +lXP +lXP +ozX +fXT +tRY +asH +qRb +iye +bwi +fMf +uUr +rGl +tqE +xpB +lMC +hcL +lfi +kmY +lmq +fyA +vQt +plQ +akT +oWC +eLy +hLE +lHL +twZ +oEu +oEu +hVH +lRw +una +tTs +tTs +gws +qlP +qlP +mea +qlP +ofC +xbr +sOX +qlP +mjO +dxl +aFF +kGI +bhd +ucK +hXR +cBS +hEX +hEX +eYb +dLe +wfb +jJd +uOJ +pFw +dAY +uti +kWo +xOm +xOm +aUS +twj +ePd +ePd +lzn +hbh +iXo +dmf +uey +sGz +laO +laO +laO +qnf +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +tzq +xuB +xuB +xuB +bRn +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +laO +laO +tzq +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(149,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +jOm +jKh +jOm +jKh +jOm +laO +obu +obu +laO +laO +obu +laO +laO +xuB +xuB +tzq +tbm +tbm +tbm +mvM +ozX +ffR +ozX +jtO +ozX +lXP +tRY +tbm +tbm +tRY +tRY +tRY +ihu +qZL +uUr +vQN +bEQ +srp +rGl +reG +qRr +vsa +avY +bVU +oRu +mfu +nkM +wMn +pFH +xPz +qKz +bEF +tnJ +xRb +nct +cTl +oEu +oEu +oEu +oEu +ooX +uMO +pSY +hHB +nWm +lTg +nVE +ozS +rlX +hDZ +qlP +pzF +rcb +qvB +iYJ +bhd +rGm +mfG +iIq +bKk +bKk +jUX +nMP +cDG +nMO +uOJ +ogC +raJ +gWo +ogC +gwo +dxe +jxw +bpS +anE +kWo +anE +jfa +ePd +ePd +ePd +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +tzq +laO +xuB +xuB +xuB +laO +laO +laO +tzq +xuB +bRn +tzq +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(150,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +sly +wmi +wmi +wmi +obu +obu +laO +laO +laO +obu +wmi +laO +laO +laO +laO +tzq +tzq +tzq +tbm +tbm +tbm +tRY +qAW +ozX +ozX +lXP +tRY +vbF +jxB +tbm +xCO +qZL +vVo +lXP +uUr +bLn +gkQ +kpT +cJj +dbA +elD +dUh +xac +bVU +oRu +mfu +pkS +axR +rbf +gTg +oWC +rUz +uDQ +smP +twZ +fDs +bmW +ciS +pGt +vKo +kUt +mFG +qwP +mFg +vIb +lTg +voE +wbY +dlK +dlK +egf +tRH +tws +nsZ +xRI +bhd +cBs +mfG +skp +skp +skp +skp +uOJ +uOJ +diq +uOJ +ogC +ogC +yiG +ogC +ogC +dxe +ePd +ePd +ePd +ePd +ePd +ePd +ePd +obu +obu +obu +obu +ans +obu +vky +obu +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +laO +laO +laO +laO +tzq +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(151,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +bRn +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +jOm +laO +obu +cDK +jOm +laO +laO +laO +laO +jOm +jya +jOm +laO +laO +laO +laO +tzq +xuB +xuB +tzq +tzq +tRY +tRY +tRY +cub +lXP +tRY +uio +qxI +tbm +lXP +ihu +mLy +sau +sau +sau +sau +sau +sau +tXA +aJE +abl +abl +mki +hBz +tLv +oZv +jok +trp +mQO +oWC +dkw +asc +twZ +twZ +aIg +mbS +gku +kYp +vKo +sGB +hoh +rWg +hHB +hHj +iLQ +ffm +wkZ +eGZ +jxl +qlP +qnL +wUe +qJe +sLr +bhd +vDy +xLO +skp +hgo +pCB +rRh +hPE +xIG +rUA +fsB +iLC +qaq +tQG +flY +ogC +dxe +pPA +dxe +wyD +yiW +rFN +ePd +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +tzq +xuB +laO +laO +tzq +xuB +xuB +laO +laO +laO +laO +xuB +tzq +xuB +xuB +tzq +laO +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(152,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +tzq +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +wzC +wzC +obu +obu +xgx +wzC +wzC +laO +laO +laO +laO +laO +obu +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tRY +tRY +lXP +mLj +uNL +bQR +tbm +bND +kPN +mtx +sau +utS +mVZ +ssi +cLL +iCd +gAo +jPP +mki +tiQ +sLi +riH +bWH +aIU +hVi +bWH +raA +raA +raA +raA +oEu +cdL +dWq +bkS +iPh +qYf +eRd +qkc +tqw +rWg +hHB +lrI +kfP +qlP +lot +lot +lot +lot +lot +lot +jOO +sYg +bhd +mxq +rUc +skp +rGa +wfk +ryT +dbH +dbH +dbH +dbH +dbH +qWV +wah +ikm +ogC +ePd +ePd +dxe +dOC +ggt +unW +gqN +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +tzq +laO +laO +laO +laO +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(153,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xgx +obu +epk +qsh +fZh +jDr +wzC +obu +obu +obu +obu +nOe +nOe +eXf +eXf +eXf +obu +eXf +eXf +eXf +eXf +eXf +obu +veM +laO +laO +tRY +jGt +tRY +sRx +tRY +tRY +vCx +tRY +sau +sau +ctc +bIn +rMs +jDU +pjv +gAo +yjc +daz +aZJ +iQs +uHI +bWH +ycG +ghO +hIM +raA +xZN +rMJ +axf +oEu +egq +hSK +nGG +cEw +koJ +vKo +mef +uzw +rWg +qlP +ogx +kfP +qlP +lam +quy +xoA +lQP +vJN +xoA +bkT +qHT +wiV +tRL +mQz +skp +qKI +iUH +cmy +dbH +uAn +iMi +iMu +dbH +eDh +tfQ +nDi +ogC +lzn +yiW +dxe +nkv +nkv +pAJ +gqN +laO +laO +nOe +nOe +obu +eXf +eXf +eXf +eXf +eXf +obu +eXf +eXf +eXf +nOe +eXf +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +tzq +laO +laO +laO +laO +tzq +bRA +bRn +laO +laO +laO +laO +laO +laO +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(154,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +gPF +laO +laO +laO +laO +laO +laO +laO +laO +laO +wzC +dGr +fZh +obu +laO +iNN +fZh +laO +laO +laO +laO +obu +nbN +laO +obu +laO +laO +laO +laO +obu +laO +laO +laO +laO +laO +laO +tRY +tRY +tRY +bND +fgU +pOW +bND +nyc +sau +eBi +hSi +xis +ncE +nTr +pzQ +qaf +qRL +rzf +kfS +iQs +sFT +bWH +qmq +mdI +ljp +qcz +xNd +xNd +pXz +oEu +smM +ohI +uIq +tLw +tLw +tLw +tHO +aAF +iwB +tLw +tLw +tLw +tLw +wtn +baG +ocs +bka +kSV +xoA +aMJ +ofh +qwy +mxq +xZs +skp +syT +pyT +syT +dbH +rtX +bdZ +wAH +dbH +sTp +sYk +lxd +ogC +ePd +yiW +pta +yiW +tNk +ogV +gqN +laO +laO +laO +laO +laO +laO +laO +obu +laO +laO +laO +nbN +obu +laO +laO +obu +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +laO +laO +laO +xuB +tzq +bRn +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(155,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +wzC +laO +obu +obu +tDi +obu +wzC +laO +laO +laO +laO +eXf +laO +jvy +jvy +jvy +laO +jvy +jvy +jvy +jvy +jvy +obu +obu +laO +laO +laO +tbm +nbG +dbh +oUe +tRY +lXP +lrh +sau +mlU +hSi +xab +hBn +wcf +tzX +dBF +bXJ +nXd +faJ +aXv +iLq +flp +vbi +rFW +foU +pUe +iNj +aTX +tec +oEu +tat +idI +pZK +tLw +afA +kcd +uuO +aoH +qEK +xqu +lZm +cRV +tLw +cYx +odK +pJX +gto +fjf +neX +kAC +jPi +uDH +rIQ +bRp +kzu +oXw +cIH +qSm +dbH +ieH +lJk +aTd +dbH +jzW +eKm +aBr +ogC +pFw +jJS +jSj +pIk +szL +rFM +gqN +laO +laO +laO +obu +obu +qml +qml +qml +qml +qml +laO +qml +qml +qml +laO +eXf +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(156,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +wzC +obu +fZh +eIv +obu +oSn +wzC +laO +laO +laO +laO +eXf +obu +lHb +lHb +pbP +lHb +lHb +pbP +lHb +lHb +lHb +lHb +lHb +obu +obu +obu +tbm +mTf +ncg +tRY +tRY +bND +xyv +sau +kdj +hSi +rXg +jsY +lEq +sFW +sFW +wbh +jVF +hog +bWH +flp +bWH +qmq +bcd +hgV +vFn +eeE +sIk +kAB +oEu +fFv +jLz +mnD +tLw +szV +kcd +pqw +sMU +gUg +iQc +lZm +mKs +tLw +ggd +hDS +meR +bYA +cVb +xoA +gvp +ffg +qwy +mxq +btY +vFJ +kSK +bAe +vFJ +dbH +pEQ +fuo +pEQ +dbH +kTx +kTx +kTx +kTx +kTx +xcH +dxe +ePd +wkd +aSl +ePd +obu +obu +obu +gyE +swb +swb +swb +gyE +swb +gyE +swb +gyE +gyE +gyE +obu +nOe +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(157,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +obu +obu +obu +kvU +mCB +obu +fkd +obu +nOe +nOe +eXf +eXf +laO +jvy +jvy +jvy +laO +jvy +jvy +jvy +jvy +jvy +obu +lHb +obu +laO +pNi +pNi +pNi +pNi +pNi +fXT +lXP +gzx +sau +njD +hSi +uyx +bWI +pQw +sFW +qDB +wbh +lWW +osM +qSz +bEW +rFW +wFC +rFW +ree +vFn +vsQ +mXl +raA +oEu +twZ +vXT +twZ +tLw +tLw +tLw +nkX +bmw +rWg +gpk +lZm +lWY +tLw +sOu +bGA +ocs +jUB +eoe +lot +jfH +xyr +qwy +bmU +riX +mSo +htJ +nUw +bko +tdC +buA +qmw +mgJ +cNS +kTx +xvc +gAx +pHl +kTx +pFw +dxe +tQY +tQY +tQY +tQY +tQY +laO +obu +swb +obu +qml +qml +qml +qml +qml +laO +qml +qml +qml +laO +nOe +eXf +eXf +nOe +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +tzq +laO +tzq +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(158,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +fZh +laO +obu +xgx +msi +laO +obu +laO +obu +nbN +laO +obu +laO +laO +obu +laO +laO +laO +laO +obu +laO +laO +laO +pbP +laO +laO +pNi +ylS +qYw +vOI +pNi +hPV +iQw +ozX +sau +pNQ +ksL +uuX +nVS +vwT +sFW +crm +puQ +xZU +xGg +qOL +ddo +naV +iju +lJH +meX +vFn +wsi +eaR +jBY +bBT +djx +fWn +ktc +qho +xKL +sPt +ify +tqw +uJZ +tLw +wPb +wPb +tLw +lot +erZ +xoA +soA +fSZ +lot +jAE +rmx +dlG +skl +bVN +bVN +rXs +bVN +wlH +dMi +rgc +jpp +jDS +ndr +iYO +diF +tBW +sHZ +kTx +ePd +qEt +tQY +xjm +ygB +qzA +tQY +laO +laO +swb +laO +laO +laO +obu +laO +laO +laO +laO +obu +laO +laO +obu +laO +laO +obu +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +bRn +tzq +xuB +xuB +bRA +tzq +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +bRn +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(159,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +laO +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +czI +laO +xgx +obu +xgx +xgx +obu +laO +eXf +obu +laO +obu +jvy +jvy +jvy +jvy +jvy +obu +jvy +jvy +jvy +jvy +jvy +pbP +vcb +vcb +vcb +nsY +qSG +iAZ +pTD +alg +hlw +ark +ark +ark +ark +ark +ark +ark +sFW +sFW +sFW +hhL +nCn +mfV +mfV +mfV +mfV +mfV +mfV +nVY +nVY +nVY +jBY +rxF +rJs +seN +caG +caG +caG +caG +iAR +xnS +iBo +mxa +vzM +qNA +fms +xpQ +lot +wuJ +wuJ +wuJ +wuJ +xDI +xDI +xDI +xDI +bVN +sPj +pAZ +bVN +usd +knM +neb +tZm +neb +neb +kTx +igu +tkC +dxF +kTx +tYL +dxe +tQY +mJW +xGi +gVS +dvO +dvO +dvO +swb +qml +qml +qml +qml +qml +obu +qml +qml +qml +qml +qml +obu +laO +obu +eXf +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(160,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +xuB +xuB +tzq +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +wNU +laO +obu +xgx +obu +laO +obu +laO +eXf +obu +uYI +lHb +lHb +lHb +lHb +pbP +lHb +lHb +lHb +lHb +lHb +pbP +pbP +pbP +ndh +gzj +ldO +mAc +tXL +pbg +pNi +dFV +qev +dFV +cmX +uAQ +aeM +uBb +wsb +dDn +bAj +hFN +cLT +ucT +aQc +prk +rvh +tBj +gSH +sCh +sCh +htq +sCh +bks +jBY +lHr +eUQ +caG +caG +kHh +pPi +caG +cYo +yji +wLI +mRg +miJ +itH +tTb +tye +qNA +qsn +kuN +sUG +jRL +jKr +qbd +qsn +uov +jYP +jYP +jBL +jYP +uov +uov +iiJ +kre +aHa +cJt +kTx +kTx +tDV +kTx +kTx +azG +bsp +gaD +rzk +rfb +mNS +bTN +iwx +geV +swb +swb +gyE +gyE +gyE +gyE +gyE +gyE +gyE +swb +swb +gyE +gyE +psP +obu +eXf +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +tzq +tzq +tzq +tzq +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(161,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +wzC +obu +xgx +czI +fZh +laO +wzC +laO +eXf +obu +laO +obu +jvy +jvy +jvy +jvy +jvy +obu +jvy +jvy +jvy +jvy +jvy +pbP +vcb +vcb +pNi +pNi +pNi +pNi +pNi +mag +eyF +dFV +qwE +eeb +oZI +mID +axk +sJe +lKY +kKP +vFB +tzQ +dLU +jZE +cUt +aKa +eRh +sCh +sCh +ijq +wCY +sCh +jBY +qxl +aCN +caG +ssv +qLZ +pIZ +ihI +cUi +hlE +wLI +mxa +vzM +sGi +tpd +tpd +tpd +qsn +xdt +xYB +xYB +gNK +xPu +qsn +rNx +mLo +jwx +pjT +eaM +tMW +uov +iiJ +xEB +lVo +kTx +kTx +vEj +iSU +qgd +kTx +yiW +dex +tQY +tQY +tQY +tQY +tQY +dvO +dvO +swb +qml +qml +qml +qml +qml +obu +qml +qml +qml +qml +qml +obu +laO +obu +eXf +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +xuB +xuB +tzq +tzq +xuB +xuB +xuB +xuB +xuB +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(162,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +bRn +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +obu +laO +aok +czI +veJ +laO +obu +laO +obu +laO +laO +obu +laO +laO +obu +laO +laO +laO +laO +obu +laO +laO +laO +lHb +laO +laO +dFV +srQ +sfQ +esD +eNE +cfR +kWr +gAj +nAd +rdd +ukx +rdd +rdd +xHl +bAj +sAq +mzg +xZU +tbL +prk +pmg +xyT +eRh +sCh +iPQ +lSc +iPQ +lSP +jBY +xYT +jKU +ppM +kgz +gKP +aiI +pTe +bYJ +tqw +lwz +mxa +lDL +sGi +toF +fiu +hTI +sub +otG +hQW +hQW +gNK +qDE +qsn +nvV +irc +irc +irc +irc +cxa +kTx +kTx +kTx +kTx +kTx +aBj +fsz +aVQ +pcI +kTx +fWM +dex +yiW +rFM +jyd +pFw +ePd +laO +laO +gyE +laO +laO +laO +obu +laO +laO +laO +laO +obu +laO +laO +obu +laO +laO +obu +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +xuB +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(163,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +obu +laO +veJ +fZh +czI +laO +obu +obu +nOe +eXf +eXf +nOe +laO +jvy +jvy +jvy +laO +jvy +jvy +jvy +jvy +jvy +obu +lHb +obu +laO +dFV +dFV +wNO +wUQ +swz +wgW +npL +dFV +dFV +gog +vCf +mrS +aCe +ylF +ylF +jUS +buC +lkS +iXU +mfV +mfV +mfV +mfV +mfV +xDv +lwm +axp +dac +hwA +iec +oHK +caG +vLw +aYC +kUN +ihI +gfo +qye +cLm +qnQ +vCH +vCH +cZA +vCH +jar +cjS +lFg +hVa +fiu +unu +eGW +qsn +viE +asp +irc +irc +irc +uZU +kTx +vLA +vLA +kTx +xoS +tuz +neS +bAS +hQM +kTx +vYH +dex +ewl +cdY +vYH +ePd +ePd +laO +obu +swb +obu +qml +qml +qml +qml +qml +laO +qml +qml +qml +laO +eXf +eXf +nOe +nOe +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +xuB +xuB +tzq +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +tzq +tzq +laO +laO +laO +laO +tzq +xuB +xuB +tzq +tzq +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(164,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +laO +laO +laO +laO +obu +laO +obu +laO +obu +laO +xgx +laO +laO +laO +laO +nOe +obu +lHb +pbP +lHb +lHb +lHb +lHb +lHb +lHb +lHb +pbP +lHb +obu +obu +obu +dFV +dFV +ins +jCO +ihp +gBP +sLo +dFV +qld +qld +qld +qld +ggS +laD +cYP +uwX +xvx +mji +gKl +ucv +buh +ilt +qld +qld +qld +qld +qld +jBY +mvw +oVX +caG +hgu +jji +fRn +ihI +dFM +sMU +lwz +mxa +xiT +erd +vPX +eIz +wCf +crO +mnf +lcI +aWA +xlr +qSE +qsn +nvV +pbt +irc +irc +irc +jHF +kTx +nUi +kJQ +kTx +evf +sgI +mAY +pIa +eMT +kTx +kTx +lPJ +nHn +kPh +pTk +rSU +obu +obu +obu +gyE +gyE +gyE +gyE +swb +gyE +gyE +gyE +gyE +gyE +gyE +obu +nOe +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +xuB +tzq +laO +laO +laO +laO +xuB +xuB +xuB +tzq +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(165,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +bRn +tzq +tzq +bRA +xuB +laO +laO +laO +laO +obu +laO +veJ +fZh +fZh +laO +wzC +laO +laO +laO +laO +eXf +laO +jvy +jvy +jvy +laO +jvy +jvy +jvy +jvy +jvy +obu +obu +laO +laO +laO +laO +dFV +dFV +dYa +cNA +gBP +iJO +dFV +sYd +dYP +xgl +rnp +ggS +dsF +hkL +uDS +dSC +isW +wDi +hkU +rOy +ilt +lza +sNR +wXL +rFq +qld +qld +qld +qld +jVI +aDk +fid +xYp +ihI +rPT +uzw +gUg +mxa +hrG +nKg +flZ +xXv +aKo +cjS +bjx +tAm +vcT +uQZ +wkV +qsn +nvV +vsv +irc +irc +irc +aMo +kTx +kTx +now +kTx +snU +ddv +wvY +gtv +tFR +eis +kTx +dRT +rdY +eHV +rSU +rSU +laO +laO +laO +obu +obu +qml +qml +qml +qml +qml +laO +qml +qml +qml +laO +eXf +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +tzq +tzq +xuB +xuB +laO +laO +laO +laO +xuB +xuB +xuB +tzq +bRn +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(166,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +obu +obu +laO +laO +obu +laO +laO +laO +laO +obu +laO +laO +obu +laO +laO +laO +laO +obu +laO +laO +laO +laO +laO +laO +laO +laO +laO +dFV +dFV +tia +vbH +gfQ +dFV +eVK +iVU +sSc +eVK +ggS +mep +qbe +xRx +nRX +xwo +ilt +pCs +mWH +ilt +tND +sNR +abX +gWI +qld +rFq +mvF +qld +qld +qld +qld +qww +qww +nzB +tWw +jlF +qww +qww +qww +qww +eFq +xpQ +qsn +qsn +bdP +hru +rai +qsn +qsn +eBw +hNp +irc +irc +irc +nDb +kTx +cSp +hLX +vjO +fDK +eCN +swa +vje +kmF +eSG +kTx +hIx +wBa +rSU +rSU +tzq +laO +laO +laO +laO +nbN +laO +laO +obu +laO +laO +laO +laO +obu +laO +laO +obu +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +bRn +xuB +xuB +xuB +xuB +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +tzq +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(167,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +xuB +tzq +tzq +xuB +tzq +tzq +bRn +xuB +xuB +laO +laO +laO +laO +laO +obu +obu +laO +laO +obu +laO +laO +obu +obu +nOe +nOe +eXf +eXf +eXf +obu +eXf +eXf +eXf +eXf +eXf +obu +nOe +nOe +laO +laO +laO +laO +laO +dFV +hFV +mOA +bhY +dFV +gUR +kFx +gBI +veA +qld +qld +qld +qld +sys +lGl +ilt +tTc +noa +ilt +cmp +sNR +syX +igm +qld +gWI +hWW +qld +wXL +rFq +qld +kIS +qtt +gig +gjB +ddB +ujj +nYz +xfl +qww +hwU +xCo +uov +uui +bFc +kgA +wqi +wdU +iVp +oYn +xHo +xop +mYf +irc +qxE +kTx +pIa +oqc +ggh +jWd +pIa +aXk +hWq +vhF +rUw +kTx +uiA +rSU +rSU +xuB +bRn +laO +laO +nOe +nOe +obu +eXf +eXf +eXf +eXf +eXf +obu +eXf +eXf +eXf +nOe +eXf +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +bRA +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +tzq +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +tzq +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(168,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +bRn +tzq +tzq +tzq +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +xgx +laO +laO +laO +obu +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +dFV +oIs +dfQ +aZc +dFV +sAZ +ciW +ciW +vUH +oCg +jnh +aHF +rKE +xIL +ugW +ilt +owa +ilt +ilt +dsg +pOx +pZN +jOj +qld +tGZ +mWv +qld +kES +gWI +qld +qmI +poq +woY +tfu +qGa +tWo +ksC +dFw +qww +hwU +bWO +uov +gYX +xnf +dQW +irc +ljo +svc +bLR +nKJ +irc +irc +irc +fgm +kTx +vnn +xls +hmc +uyc +pIa +kTx +quU +yeJ +quU +kTx +rSU +rSU +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +tzq +laO +laO +xuB +xuB +xuB +xuB +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(169,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +bRA +tzq +xuB +xuB +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +obu +laO +laO +laO +obu +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +dFV +waH +uVf +fdH +dFV +pwv +eQs +xIL +rok +uDo +lSo +vdI +rok +tow +pkj +jru +vwB +wtE +xIL +fUR +obt +bCv +tnA +swt +vwB +tlF +qld +uUp +khR +qld +qld +lgd +nRy +kqL +vEL +bEN +hcS +aZa +pAu +jyI +wBK +uov +wkR +eQr +wmP +irc +irc +osq +vGL +sBC +irc +cck +irc +mLo +kTx +vsp +quU +quU +quU +kPr +kTx +wrU +opo +lfN +kTx +nQZ +xuB +xuB +aCd +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +tzq +tzq +laO +laO +laO +tzq +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(170,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +xuB +tzq +tzq +tzq +tzq +laO +xuB +xuB +tzq +tzq +laO +laO +laO +obu +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +dFV +dsw +iyy +iyy +dFV +bhb +fHR +eqz +rwl +gFR +tPB +gCL +gCL +gCL +gCL +rgr +tAH +ioR +wSD +dyW +rUB +hjq +sEV +rax +tAH +tAH +iSp +iVO +giK +uzk +qld +wtG +aig +lkX +aig +xgw +cNF +tyt +qww +wHH +bxW +uov +aau +pbt +wJr +irc +irc +chN +vGL +sBC +irc +irc +irc +mOc +kTx +kDM +mBi +quU +mBi +kDM +kTx +ddu +qOt +iUV +fSB +kjI +aCd +tzq +obu +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +tzq +xuB +xuB +laO +laO +laO +laO +tzq +tzq +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(171,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +laO +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +qld +qld +uSh +rtl +cSd +ley +cSd +moL +pLW +xyg +qvI +evU +siz +kxn +xhf +uDe +rdU +kAd +eof +fvz +grF +gFR +sDL +pep +bPF +soP +qld +uDG +nqW +ejG +ibC +aIQ +cNF +rYB +qww +dwK +lyU +uov +cnP +irc +irc +irc +irc +mLo +vGL +aUZ +irc +irc +irc +pIi +kTx +xCR +nqs +kTx +mRH +xCR +kTx +tXV +vne +flR +jGP +laO +obu +laO +qUf +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +tzq +xuB +xuB +laO +laO +laO +laO +xuB +tzq +tzq +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(172,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +gPF +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +qld +oFW +oFW +cSd +jgJ +cSd +sWM +rjQ +vGA +iSZ +evU +deL +lDa +oKJ +uDe +gsf +vuN +xQD +fvz +cBI +gFR +tdk +cWb +qEx +cvs +qld +uDG +uDG +uDG +uDG +aIQ +atb +ioz +qww +tfS +suG +uov +cDY +irc +irc +irc +irc +mLo +vGL +wKi +cxa +cGv +nvV +rNx +kTx +kTx +kTx +kTx +kTx +kTx +kTx +gXI +gXI +gXI +kTx +laO +qUf +laO +laO +laO +laO +laO +gPF +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +bRA +bRn +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +xuB +xuB +xuB +laO +laO +laO +laO +tzq +xuB +tzq +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(173,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +bRn +cSd +cSd +cSd +jca +tVv +ekL +hWS +evU +qbx +vvF +okY +uDe +aUP +wFN +fDT +uTT +dLI +gFR +eBt +qld +qld +qld +qld +hcC +nXl +dJd +kjG +izi +vdR +xKk +mQu +mQu +mQu +izi +aaB +cxa +cGv +fur +nvV +jpY +pNj +uov +aUr +uov +uov +uov +uov +xuB +xuB +xuB +xuB +xuB +obu +laO +laO +obu +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +tzq +tzq +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +tzq +bRn +xuB +xuB +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(174,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +gPF +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +qld +oFW +oFW +fMP +wBv +azL +xIL +uqJ +nrJ +uDe +ltR +msA +gfX +qld +qld +xln +qld +izi +fFT +rOi +bIE +rKN +phu +aYc +qVK +lCY +qNx +tQU +vZq +gST +adW +mQu +aBH +aBH +aBH +aBH +aBH +aBH +aBH +aBH +cOl +rhX +vTC +wHH +tzq +bRn +xuB +xuB +tzq +laO +qUf +laO +laO +qUf +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +xuB +laO +tzq +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(175,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +xuB +xuB +tzq +oFW +oFW +qld +yjI +evI +kid +xIL +xHZ +qld +qld +jOC +qld +xLw +mzj +qld +jYw +gjh +xXf +xWl +xWl +pqj +vqQ +vqQ +mZN +kdH +uKe +uqm +jwO +aZC +jpH +fbN +hEO +hEO +qAV +poF +xjL +hEO +vQs +hEO +dFq +wHH +wHH +laO +tzq +xuB +aCd +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +laO +laO +laO +laO +tzq +laO +laO +laO +laO +tzq +laO +laO +tzq +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(176,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +tzq +tzq +tzq +bRn +tzq +qld +oFW +oFW +rPR +xIL +lCT +qld +vus +clk +qld +ozr +sMB +qld +bkD +laB +hzU +jHG +rKN +bcK +mcK +bcK +eBc +rVT +bcK +mcK +bcK +mgK +mQu +fnU +sja +uYN +wHH +wOi +azJ +wHH +lIe +lIe +lIe +wHH +laO +laO +laO +laO +obu +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(177,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +tzq +tzq +tzq +xuB +tzq +xuB +xuB +xiW +coH +eAx +xiW +cDC +msZ +qld +oFW +oFW +qld +bcK +bgi +bcK +mQu +mQu +bcK +hfq +bcK +mQu +mQu +bcK +hfq +bcK +mQu +mQu +wHH +qbR +sOA +wHH +wHH +wHH +wHH +laO +laO +laO +laO +laO +laO +laO +laO +qUf +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(178,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +bRA +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +ffU +luA +luA +gcu +btc +dIz +ffU +qld +qld +qld +tzq +tzq +xuB +bcK +tGr +bcK +obu +laO +bcK +fTt +bcK +laO +obu +bcK +fTt +bcK +obu +laO +wHH +lIe +lIe +wHH +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(179,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +bRn +xuB +laO +laO +laO +laO +laO +laO +xuB +bRn +tzq +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +bRn +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +ffU +hOK +wOj +wKt +rcJ +tEQ +ffU +laO +xuB +xuB +xuB +tzq +aCd +tzq +tzq +laO +obu +laO +laO +nvv +laO +laO +obu +laO +nvv +laO +obu +laO +tzq +tzq +tzq +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +laO +tzq +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(180,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +laO +laO +laO +laO +xuB +tzq +laO +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +bRA +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +ffU +uQd +emn +vqp +leN +pWQ +ffU +laO +laO +xuB +xuB +tzq +obu +laO +laO +laO +obu +laO +laO +laO +laO +laO +obu +laO +laO +laO +obu +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(181,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +ffU +mEr +dow +dow +bHB +mwX +ffU +laO +laO +tzq +laO +laO +wmi +laO +laO +laO +ans +laO +laO +laO +laO +laO +ans +laO +laO +laO +ans +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +tzq +laO +laO +laO +laO +tzq +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(182,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +bRn +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +bRn +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +ffU +ffU +ffU +ffU +ffU +ffU +ffU +laO +laO +laO +laO +laO +obu +laO +laO +laO +obu +laO +laO +laO +laO +laO +obu +laO +laO +laO +obu +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +tzq +laO +laO +tzq +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(183,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +tzq +bRn +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +vky +laO +laO +laO +vky +laO +laO +ukI +laO +laO +vky +laO +xXp +laO +vky +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +gPF +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +xig +tzq +laO +laO +laO +laO +laO +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(184,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +tzq +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +obu +laO +laO +laO +obu +laO +laO +laO +laO +laO +obu +laO +laO +laO +obu +laO +laO +laO +laO +laO +laO +laO +gPF +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(185,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +gPF +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +nbN +laO +laO +laO +obu +laO +laO +laO +laO +laO +obu +laO +laO +laO +obu +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +tzq +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(186,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +obu +nOe +obu +laO +nOe +cmF +cmF +laO +obu +cmF +cmF +nOe +cmF +nOe +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(187,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +bRn +tzq +tzq +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +gPF +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(188,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +laO +laO +laO +laO +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +tzq +xuB +xuB +bRn +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +nbN +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(189,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +xuB +xuB +xuB +tzq +laO +laO +laO +laO +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +tzq +bRA +xuB +xuB +xuB +xuB +tzq +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +laO +laO +laO +laO +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(190,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +tzq +laO +laO +laO +laO +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +tzq +laO +laO +laO +laO +laO +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(191,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +bRn +laO +laO +laO +laO +xuB +xuB +xuB +bRn +tzq +tzq +laO +xuB +xuB +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +bRn +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +xuB +tzq +laO +xuB +laO +laO +laO +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(192,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +laO +laO +laO +laO +laO +xuB +laO +laO +laO +xuB +tzq +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +tzq +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +laO +laO +laO +laO +tzq +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(193,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +bRn +tzq +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +tzq +xuB +xuB +tzq +xuB +xuB +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +tzq +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(194,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +laO +tzq +bRn +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(195,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +tzq +tzq +xuB +xuB +xuB +tzq +bRn +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(196,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +laO +xuB +xuB +tzq +bRA +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +tzq +tzq +tzq +xuB +xuB +tzq +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +bRn +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(197,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +bRn +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +bRA +xuB +xuB +xuB +tzq +tzq +tzq +tzq +tzq +xuB +xuB +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(198,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +bRA +tzq +tzq +tzq +xuB +xuB +xuB +tzq +xuB +xuB +xuB +xuB +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(199,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +bRn +tzq +tzq +xuB +xuB +xuB +tzq +bRn +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +tzq +laO +laO +laO +laO +laO +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +bRn +bRA +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(200,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +xuB +xuB +xuB +xuB +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +xuB +xuB +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +tzq +xuB +xuB +xuB +xuB +tzq +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(201,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +xuB +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +tzq +xuB +xuB +xuB +tzq +tzq +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +xuB +xuB +rQT +tzq +tzq +laO +laO +laO +laO +xuB +laO +tzq +tzq +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(202,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +tzq +xuB +tzq +xuB +xuB +xuB +tzq +xuB +xuB +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +laO +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +xuB +tzq +tzq +tzq +tzq +xuB +xuB +laO +laO +laO +laO +xuB +xuB +tzq +xuB +tzq +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(203,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +tzq +xuB +xuB +tzq +tzq +tzq +tzq +tzq +tzq +xuB +tzq +bRA +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +bRn +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +xuB +xuB +xuB +bRn +xuB +tzq +xuB +xuB +laO +laO +laO +laO +tzq +xuB +xuB +xuB +bRA +bRn +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(204,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +tzq +bRn +xuB +xuB +bRn +xuB +xuB +tzq +tzq +xuB +xuB +tzq +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(205,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +tzq +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +laO +laO +laO +laO +laO +tzq +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +bRn +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +bRn +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(206,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +bRn +tzq +xuB +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(207,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(208,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +bRn +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(209,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +tzq +bRA +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +bRn +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +gPF +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +laO +laO +laO +laO +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(210,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +tzq +tzq +tzq +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +bRn +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +laO +laO +laO +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(211,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +xuB +xuB +tzq +xuB +xuB +xuB +xuB +tzq +xuB +tzq +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +tzq +tzq +tzq +xuB +xuB +laO +laO +laO +tzq +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +bRn +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(212,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +bRn +xuB +xuB +xuB +xuB +xuB +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(213,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +bRA +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +bRn +tzq +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(214,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +tzq +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +tzq +xuB +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +tzq +xig +tzq +bRn +tzq +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(215,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +tzq +tzq +xuB +xuB +laO +laO +laO +laO +laO +tzq +tzq +tzq +bRn +xuB +xuB +xuB +tzq +tzq +xuB +xuB +laO +tzq +tzq +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +tzq +bRn +xuB +xuB +xuB +xuB +xuB +tzq +aSz +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(216,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +bRn +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +tzq +xuB +xuB +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +tzq +xuB +xuB +xuB +tzq +tzq +xuB +laO +laO +laO +laO +laO +tzq +tzq +xuB +xuB +xuB +xuB +xuB +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(217,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +tzq +xuB +xuB +xuB +bRn +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +laO +laO +tzq +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +bRn +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(218,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +bRn +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +tzq +xuB +bRn +tzq +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +tzq +tzq +xuB +xuB +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xig +tzq +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(219,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +laO +laO +laO +laO +tzq +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +tzq +xuB +xuB +xuB +laO +laO +laO +xuB +tzq +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +tzq +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +bRn +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +bRn +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(220,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +tzq +xuB +laO +laO +tzq +xuB +xuB +laO +laO +laO +laO +xuB +tzq +xuB +xuB +tzq +laO +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +tzq +tzq +tzq +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +bRn +tzq +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xig +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(221,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +tzq +laO +laO +laO +laO +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +bRA +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(222,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +tzq +laO +laO +laO +laO +tzq +bRA +bRn +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +xuB +laO +laO +laO +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +bRn +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +tzq +bRn +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(223,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +laO +laO +laO +xuB +tzq +bRn +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +xuB +xuB +xuB +xuB +xuB +xuB +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xig +tzq +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(224,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +tzq +laO +laO +laO +xuB +xuB +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +bRn +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +bRA +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +bRn +laO +laO +tzq +bRn +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(225,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +laO +tzq +laO +laO +laO +bRn +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +tzq +laO +laO +laO +laO +tzq +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +bRA +tzq +laO +laO +tzq +xig +tzq +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(226,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +tzq +laO +tzq +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +tzq +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +xig +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +bRn +tzq +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(227,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +bRn +tzq +xuB +xuB +bRA +tzq +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +bRn +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +tzq +xuB +xuB +tzq +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +tzq +bRn +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(228,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +bRn +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +xuB +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +tzq +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(229,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +tzq +tzq +tzq +tzq +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +xuB +xuB +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xig +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(230,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +xuB +xuB +tzq +tzq +xuB +xuB +xuB +xuB +xuB +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +tzq +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +bRn +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(231,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +xuB +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +bRn +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(232,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +xuB +xuB +tzq +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +tzq +tzq +laO +laO +laO +laO +laO +tzq +tzq +tzq +tzq +tzq +tzq +xuB +tzq +laO +laO +laO +laO +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +tzq +bRn +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +bRA +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(233,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +tzq +xuB +tzq +laO +laO +laO +laO +laO +xuB +tzq +tzq +tzq +tzq +xuB +xuB +xuB +laO +laO +laO +laO +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +bRn +tzq +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(234,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +tzq +tzq +xuB +xuB +laO +laO +laO +laO +laO +xuB +xuB +xuB +tzq +tzq +bRn +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +tzq +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(235,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +bRn +xuB +xuB +xuB +xuB +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +tzq +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +tzq +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +bRA +tzq +xuB +bRn +xuB +xuB +xuB +xuB +tzq +tzq +laO +laO +laO +laO +laO +tzq +xuB +bRn +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(236,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +bRA +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +tzq +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +tzq +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +tzq +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +bRn +tzq +tzq +tzq +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +bRn +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(237,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +bRn +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +laO +tzq +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(238,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +xuB +xuB +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(239,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +tzq +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +tzq +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(240,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +xuB +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +bRn +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(241,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +bRA +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(242,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +laO +laO +laO +laO +laO +laO +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(243,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +xuB +tzq +laO +laO +laO +laO +laO +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +tzq +tzq +xuB +xuB +tzq +bRn +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(244,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +tzq +xuB +bRn +tzq +laO +laO +laO +laO +laO +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(245,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +tzq +bRn +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(246,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(247,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +xuB +xuB +xuB +xuB +xuB +xuB +xuB +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(248,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(249,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(250,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(251,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(252,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(253,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(254,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} +(255,1,1) = {" +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +"} + +(1,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(2,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(3,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(4,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(5,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(6,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(7,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(8,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(9,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(10,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +fac +fac +fac +fac +fac +fac +xuB +xuB +tzq +fac +fac +fac +fac +fac +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(11,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +tzq +xuB +xuB +xuB +fac +fac +fac +fac +tzq +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +bRn +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(12,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +bRn +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +tzq +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +bRn +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +bRn +tzq +fac +fac +fac +fac +fac +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +tzq +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(13,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +xuB +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +xuB +fac +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +tzq +fac +fac +xuB +xuB +tzq +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(14,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +bRn +bRA +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +xuB +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +bRn +xuB +xuB +tzq +fac +fac +fac +fac +fac +tzq +bRn +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +bRn +tzq +tzq +xuB +xuB +xuB +xuB +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(15,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +bRA +bRn +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +bRn +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(16,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(17,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +bRn +fac +fac +fac +fac +fac +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +bRn +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +tzq +fac +fac +bRA +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(18,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +bRn +tzq +fac +fac +xuB +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +bRn +tzq +fac +fac +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(19,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +bRn +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +tzq +tzq +xuB +tzq +tzq +fac +fac +fac +fac +fac +fac +xuB +xuB +tzq +tzq +xig +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xig +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +bRn +tzq +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(20,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +xuB +fac +fac +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +tzq +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(21,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xig +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +bRA +bRn +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(22,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +rQT +bRn +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +xuB +xuB +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +xuB +xuB +bRn +tzq +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(23,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +fac +fac +fac +fac +fac +xuB +tzq +xuB +xuB +xuB +xuB +xuB +xuB +bRn +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +tzq +tzq +rQT +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(24,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +xuB +xuB +xuB +bRn +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +bRn +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +tzq +tzq +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(25,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xig +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +xuB +xuB +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +tzq +bRn +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(26,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +bRn +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +fac +fac +xuB +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +tzq +xuB +xuB +bRn +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +xuB +xuB +xuB +bRn +xuB +xuB +xuB +xuB +bRn +tzq +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(27,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +xuB +xuB +xuB +tzq +tzq +xuB +xuB +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +xuB +xuB +xuB +xuB +bRn +tzq +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +xuB +xuB +xuB +tzq +xuB +xuB +xuB +xuB +tzq +tzq +aSz +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(28,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +bRA +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +xuB +xuB +xuB +xuB +xuB +xuB +bRn +rQT +tzq +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +tzq +tzq +tzq +tzq +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(29,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +xuB +bRA +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +fac +fac +fac +fac +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +tzq +tzq +tzq +xuB +bRn +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +xuB +xuB +xuB +xuB +xuB +xuB +tzq +xuB +tzq +tzq +bRn +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(30,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +bRA +fac +fac +fac +fac +fac +xuB +tzq +bRn +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +tzq +xuB +xuB +xuB +xuB +xuB +tzq +tzq +xuB +xuB +xuB +xuB +xuB +tzq +tzq +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +oui +xuB +xuB +xuB +xuB +xuB +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(31,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +bRn +tzq +tzq +fac +fac +fac +fac +fac +tzq +xuB +fac +fac +fac +fac +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +tzq +tzq +tzq +tzq +tzq +tzq +tzq +fac +fac +fac +xuB +tzq +xuB +tzq +tzq +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +tzq +tzq +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(32,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +tzq +bRn +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +xuB +xuB +xuB +xuB +xuB +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(33,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +bRn +xuB +xuB +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +tzq +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +bRA +tzq +tzq +fac +fac +fac +fac +xuB +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(34,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +xuB +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +tzq +tzq +xuB +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +tzq +tzq +tzq +bRn +fac +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(35,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +bRn +tzq +fac +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +tzq +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +bRn +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +tzq +eAd +tzq +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(36,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +tzq +xuB +xuB +xuB +xuB +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +bRA +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +tzq +tzq +tzq +xuB +xuB +xuB +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +bRA +bRn +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(37,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +xuB +xuB +xuB +xuB +xuB +tzq +tzq +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +tzq +bRn +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +tzq +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +bRn +xuB +xuB +xuB +xuB +fac +fac +fac +fac +tzq +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +bRn +tzq +fac +fac +xuB +xuB +xuB +tzq +bRn +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(38,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +rQT +tzq +bRA +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +tzq +bRA +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +tzq +xuB +xuB +xuB +xuB +tzq +bRA +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +xuB +bRn +tzq +fac +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(39,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +tzq +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +xuB +xuB +xuB +tzq +tzq +xuB +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +"} +(40,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +tzq +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +"} +(41,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +bRn +tzq +tzq +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +bRn +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +"} +(42,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +tzq +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +bRn +tzq +fac +fac +fac +fac +fac +fac +fac +"} +(43,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +bRA +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +xuB +fac +xuB +xuB +xuB +xuB +tzq +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +bRn +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +"} +(44,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +bRn +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +bRn +tzq +xuB +xuB +xuB +xuB +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +bRn +tzq +xuB +fac +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +tzq +tzq +bRn +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +xig +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +"} +(45,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +tzq +xuB +xuB +tzq +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +tzq +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +"} +(46,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +rYQ +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +ikB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xig +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xig +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +"} +(47,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +cKN +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +tzq +tzq +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +"} +(48,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +heK +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +ikB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +rYQ +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +xuB +tzq +tzq +tzq +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +tzq +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +tzq +tzq +tzq +xuB +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +"} +(49,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +ikB +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +laO +fac +fac +tzq +tzq +xuB +xuB +ikB +fac +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +tzq +tzq +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +bRn +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +"} +(50,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +aCd +xuB +xuB +xuB +xuB +fac +heK +fac +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +laO +fac +tzq +tzq +xuB +xuB +xuB +aCd +xuB +xuB +bRn +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +tzq +tzq +tzq +bRA +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(51,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +tzq +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +heK +fac +fac +fac +fac +fac +fac +heK +fac +fac +fac +fac +tzq +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +ikB +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +laO +xuB +bRn +bRA +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +bRA +tzq +tzq +fac +fac +ikB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +fac +fac +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +tzq +bRn +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +"} +(52,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +tzq +bRn +tzq +xuB +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +ikB +fac +fac +fac +fac +fac +fac +ikB +fac +fac +fac +fac +bRn +tzq +tzq +xuB +xuB +aCd +aCd +aCd +xuB +xuB +xuB +aCd +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +rYQ +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +laO +xuB +xuB +xuB +xuB +aQS +aQS +aQS +aQS +aQS +aQS +aQS +aQS +aQS +aQS +aQS +fac +cKN +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +bRn +tzq +fac +tzq +tzq +fac +fac +fac +fac +xuB +fac +fac +fac +fac +tzq +xuB +fac +fac +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +"} +(53,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +tzq +tzq +fac +fac +fac +fac +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +aCd +xuB +tzq +fac +fac +fac +fac +aCd +tzq +fac +fac +tzq +tzq +tzq +bRn +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +laO +xuB +xuB +xuB +xuB +aQS +eYU +eYU +eYU +eYU +eYU +eYU +eYU +eYU +eYU +aQS +tzq +ikB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +"} +(54,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +bRn +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +fac +fac +bRn +tzq +tzq +tzq +fac +fac +fac +tzq +bRA +tzq +xuB +hml +hml +sZV +sZV +hml +hml +hml +bRn +tzq +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +fac +fac +laO +xuB +xuB +xuB +xuB +aQS +eYU +eYU +eYU +eYU +eYU +eYU +eYU +eYU +eYU +aQS +tzq +aCd +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +bRn +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +"} +(55,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +tzq +tzq +tzq +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +heK +ikB +aCd +xuB +xuB +xuB +xuB +xuB +tzq +tzq +bRA +tzq +bRn +tzq +tzq +tzq +tzq +xuB +xuB +xuB +hml +uLd +smt +dwQ +uYc +xYx +hml +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +xuB +fac +fac +fac +fac +fac +laO +tzq +xuB +xuB +xuB +aQS +eYU +eYU +eYU +eYU +eYU +eYU +eYU +eYU +eYU +aQS +xuB +bRn +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +fac +fac +fac +fac +fac +fac +tzq +xuB +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +tzq +tzq +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +"} +(56,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +tzq +xuB +xuB +tzq +tzq +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +tzq +tzq +tzq +xuB +xuB +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +tzq +xuB +xuB +xuB +eZM +gwx +xqb +xuB +xuB +xuB +sZV +smt +gyl +sBZ +dwQ +gyl +hml +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +fac +fac +fac +fac +laO +tzq +xuB +xuB +xuB +aQS +eYU +eYU +eYU +eYU +eYU +eYU +eYU +eYU +eYU +aQS +xuB +xuB +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +xuB +xuB +fac +fac +fac +fac +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +bRn +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +bRn +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +bRn +tzq +tzq +fac +fac +fac +fac +fac +xuB +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +bRn +tzq +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +"} +(57,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +tzq +fac +fac +fac +fac +xuB +tzq +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xqb +xuB +xuB +jNA +iTV +iTV +iTV +iTV +iTV +xuB +xuB +hml +wQz +dwQ +smt +smt +wQz +sZV +xuB +mtK +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +fac +fac +fac +fac +laO +tzq +tzq +xuB +xuB +aQS +eYU +eYU +eYU +eYU +lsc +eYU +eYU +eYU +eYU +aQS +xuB +xuB +bRn +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +tzq +tzq +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xig +tzq +fac +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +tzq +tzq +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +"} +(58,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +tzq +xuB +xuB +xuB +xuB +tzq +tzq +tzq +tzq +tzq +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +iTV +oCF +oCF +iTV +iTV +iTV +xMC +wgM +xMC +bwv +iTV +iTV +iTV +hml +hml +jfX +vnt +xjv +hml +hml +vKM +vKM +vKM +vKM +mtK +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +laO +fac +bRn +xuB +xuB +aQS +eYU +eYU +eYU +eYU +eYU +eYU +eYU +eYU +eYU +aQS +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +xuB +xuB +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +xuB +fac +bRA +bRn +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +bRn +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +"} +(59,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +bRn +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +jNA +iTV +xMC +hrW +iTV +hrW +bwv +xMC +wgM +xMC +bwv +hrW +wgM +hrW +iOZ +qon +tQZ +gLQ +gyl +srm +gLQ +mtK +jRb +jRb +vKM +xuB +xuB +heK +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +laO +fac +tzq +tzq +xuB +aQS +eYU +eYU +eYU +eYU +eYU +eYU +eYU +eYU +eYU +aQS +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +bRn +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +"} +(60,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +bRn +tzq +bRA +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +heK +ikB +aCd +xuB +xuB +xuB +xuB +xuB +xuB +iTV +xMC +hrW +kxk +cQp +vlM +gUV +hrW +wgM +iTV +jGm +vlM +cot +lZx +oWd +tQZ +tQZ +cFP +afW +bOE +sbr +mtK +mDV +fva +vKM +vKM +vKM +ikB +fac +fac +sGb +jHJ +sGb +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +laO +fac +fac +tzq +tzq +aQS +eYU +eYU +eYU +eYU +eYU +eYU +eYU +eYU +eYU +aQS +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +tzq +tzq +tzq +bRn +tzq +fac +fac +fac +fac +fac +fac +fac +"} +(61,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +rQT +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +iTV +hrW +isp +xFh +wHr +jVC +gUV +gLm +cot +ehw +rUd +lZx +cot +lZx +tdu +vid +frl +fLg +qKv +dSd +wPX +vFP +oPW +rlQ +bJB +tGm +vly +seX +ikB +ikB +ikB +kAX +mrv +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +laO +fac +fac +tzq +bRn +aQS +eYU +eYU +eYU +eYU +cuz +eYU +eYU +eYU +eYU +aQS +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +tzq +tzq +bRn +xuB +xuB +xuB +bRA +bRn +xuB +xuB +xuB +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +tzq +tzq +tzq +tzq +tzq +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +"} +(62,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +xuB +xuB +fac +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +xuB +xuB +nts +jNA +jNA +iTV +iTV +kNa +int +bKq +lZx +rUd +lZx +cot +lZx +tdu +vid +jFV +lZx +qSN +gIt +oax +gwu +dQx +sfM +fBt +mtK +fet +mgH +vKM +vKM +vKM +ikB +fac +fac +fac +ikB +sGb +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +laO +fac +sGb +jHJ +sGb +aQS +ntY +ntY +ntY +ntY +pFQ +ntY +ntY +ntY +ntY +aQS +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +bRn +tzq +tzq +tzq +xuB +xuB +tzq +fac +fac +fac +fac +fac +tzq +xuB +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +xuB +tzq +tzq +tzq +tzq +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +xuB +xuB +tzq +tzq +tzq +tzq +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(63,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +tzq +tzq +tzq +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +bRn +xuB +otP +wrl +xuB +xuB +iTV +nFy +oFg +oSl +ucj +lZx +irA +vid +xFk +lZx +qSN +gIt +bpO +lZx +qSN +gIt +oax +sAa +nxI +aal +mHz +mtK +pCK +dYN +pEU +vKM +fac +heK +fac +fac +fac +ikB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +laO +fac +bwt +kAX +ikB +wfd +eYU +cbx +ipo +ipo +ipo +ipo +cMM +gxo +gxo +drm +lZi +cKN +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +tzq +tzq +tzq +xuB +xuB +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(64,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +xuB +xuB +xuB +bRn +tzq +fac +fac +fac +xuB +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +tzq +tzq +bRA +tzq +xuB +jNA +jNA +iTV +iTV +fja +sbN +dUW +lZx +qSN +gIt +bpO +lZx +qSN +gIt +bpO +lZx +nuj +jNA +oCF +oCF +jNA +ujS +jNA +mtK +ruX +xkE +god +vKM +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +laO +fac +sGb +ikB +fac +aQS +ntY +ntY +uWK +ncx +qFe +dAx +fjc +ntY +ntY +aQS +cKN +oRX +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +bRn +tzq +tzq +tzq +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(65,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +bRn +xuB +xuB +xuB +xuB +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +fac +fac +fac +tzq +bRn +xuB +xuB +xuB +xuB +xuB +xuB +iTV +rWS +hFb +hPt +jyF +lZx +iit +gfO +kaZ +lZx +iit +gfO +kaZ +lZx +iit +oCF +dHH +fKR +tpX +tam +vfJ +mtK +mtK +qLo +vKM +vKM +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +laO +fac +fac +ikB +fac +fac +fac +ntY +ntY +aQS +aQS +aQS +ntY +ntY +fac +fac +fac +dvh +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +bRn +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +tzq +tzq +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(66,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +bRn +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +jNA +jNA +iTV +iTV +iTV +hrn +sbN +fAU +lZx +qSN +gIt +bpO +lZx +qSN +gIt +bpO +lZx +qSN +oCF +laS +fKR +pAm +sBV +xzS +mVX +oDH +dSf +iTV +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +dvh +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +tzq +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +tzq +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(67,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +fac +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +xuB +xuB +iTV +nFy +jyF +nFy +pon +fZp +lZx +qSN +gIt +bpO +lZx +qSN +gIt +bpO +lZx +qSN +oCF +aZq +lHJ +iiz +jEU +tkT +fDp +sSP +jcw +iTV +fac +fac +fac +fac +rYQ +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +dvh +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(68,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +fac +fac +fac +tzq +tzq +xuB +xuB +xuB +bRn +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +jNA +jNA +iTV +iTV +iTV +vCg +lrf +dUW +lZx +qSN +gIt +bpO +lZx +qSN +gIt +bpO +lZx +qSN +oCF +sSU +fKR +uxy +rop +osi +ouz +bub +wIt +iTV +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +dvh +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(69,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +tzq +tzq +fac +fac +tzq +xuB +tzq +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +iTV +rWS +fVW +pzp +vTq +lZx +iit +gfO +kaZ +lZx +iit +gfO +kaZ +lZx +iit +oCF +gTO +kKb +eWu +uUz +krK +iTV +iTV +iTV +iTV +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +cKN +lOQ +cKN +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(70,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +rYQ +fac +fac +fac +fac +fac +xuB +xuB +xuB +tzq +bRn +jNA +jNA +iTV +iTV +iTV +nFy +vfW +lZx +qSN +gIt +bpO +lZx +qSN +gIt +bpO +qPg +qSN +iTV +iTV +iTV +oCF +nbV +oCF +iTV +fac +fac +ikB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +dvh +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(71,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +heK +ikB +aCd +xuB +xuB +xuB +tzq +tzq +otP +iTV +htS +htS +oQg +ufS +lZx +hUa +jug +bpO +mmF +qSN +gIt +iTV +iTV +iTV +iTV +ikB +oCF +vFK +dSx +dSx +oCF +fac +fac +heK +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +dvh +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +bRn +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(72,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +iTV +iTV +iTV +iTV +npZ +jyF +kzX +rFZ +pgW +rDx +iTV +iTV +iTV +iTV +fac +ikB +fac +ikB +oCF +bgs +lXh +fAx +oCF +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +dvh +fac +fac +fac +fac +fac +fac +fac +fac +rYQ +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +tzq +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(73,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +qYh +jxA +jWl +rFv +gBl +dSx +jyF +oCn +iTV +iTV +iTV +ikB +fac +ikB +fac +heK +fac +ikB +oCF +oCF +iTV +oCF +oCF +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +cKN +hRD +fac +fac +fac +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(74,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +wCe +ikB +iTV +iTV +iTV +iTV +iTV +rFZ +rFZ +iTV +iTV +fac +fac +ikB +fac +ikB +fac +fac +fac +ikB +fac +ikB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +asz +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +ewo +uCT +uCT +uCT +ewo +fac +cKN +fac +fac +cKN +kRC +cKN +fac +fac +fac +tzq +bRn +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +tzq +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(75,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +iTV +iTV +iTV +iTV +fac +fac +fac +ikB +fac +ikB +fac +fac +fac +ikB +fac +ikB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +uCT +aTE +aZS +msp +tPA +jxM +uOe +jxM +jxM +pWP +cKN +fac +fac +fac +xuB +xuB +tzq +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(76,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +ikB +fac +ikB +fac +fac +fac +ikB +fac +ikB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +ikB +qov +vnr +wGh +hbD +qov +ndx +ndx +ndx +qov +vnr +wGh +vnr +qov +ewo +uVG +mbq +beC +ewo +fac +cKN +fac +fac +fac +ikB +fac +fac +fac +xuB +xuB +xuB +tzq +tzq +fac +fac +fac +fac +laO +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(77,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +ikB +fac +ikB +fac +fac +bbg +bbg +bbg +bbg +bbg +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +hYP +hYP +vnr +jvz +lSN +hYP +vnr +hYP +vnr +hYP +lSN +jvz +vnr +ewo +ewo +aet +idm +cdl +ewo +uCT +tmv +tmv +fNt +fac +ikB +fac +fac +fac +tzq +tzq +tzq +tzq +xuB +wVj +fac +fac +fac +laO +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(78,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +ikB +fac +ikB +fac +fac +bbg +pvg +pvg +pvg +bbg +fac +fac +fac +fac +ikB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +hYP +hYP +vnr +aSx +vnr +idE +dpt +xoz +gxr +nSD +vnr +aSx +vnr +ewo +kBT +knc +uHr +mBX +uur +jnn +hHL +hHL +fNt +tmv +tmv +fac +tzq +tzq +tzq +tzq +tzq +tzq +tzq +xuB +fac +fac +fac +laO +fac +fac +fac +fac +fac +fac +rYQ +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(79,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +bRn +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +bbg +bbg +bbg +bbg +bbg +fac +bbg +pvg +pvg +pvg +bbg +fac +fac +fac +fac +qov +fac +fac +fac +fac +fac +fac +fac +fac +vnr +vnr +vnr +pwz +csv +dqO +csv +rGW +csv +csv +por +por +por +por +lVz +gXO +aOC +nyi +vIr +hiG +fuu +dlQ +hHL +hHL +eQK +hHL +tmv +fNt +tmv +tmv +tzq +xuB +xuB +xuB +bRn +tzq +fac +fac +fac +laO +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +fac +fac +fac +fac +fac +tzq +fac +fac +fac +fac +fac +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(80,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +fac +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +bbg +pvg +pvg +pvg +bbg +fac +bbg +bbg +mDO +bbg +bbg +fac +fac +fac +fac +ikB +fac +fac +fac +fac +fac +fac +fac +fac +jNq +edV +vva +ikz +jaZ +qjV +bld +qjV +qjV +dst +pUI +dzb +tgE +bFE +rOv +gXO +vKW +eqe +uYs +ptI +vmn +kTi +hHL +hHL +eQK +hHL +hHL +eQK +jeb +tmv +tmv +tmv +fNt +tzq +tzq +fac +fac +fac +fac +laO +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +tzq +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +xuB +xuB +tzq +fac +fac +fac +fac +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(81,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +tzq +tzq +tzq +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +bbg +pvg +pvg +pvg +bbg +fac +fac +ikB +fac +ikB +fac +pEn +pEn +pEn +pEn +sRf +fac +fac +sGb +fac +fac +fac +fac +cHK +jNq +dBk +vva +ikz +bFE +lhu +jiq +rEI +eyY +lhu +oMk +rEI +bFE +bgS +csW +ewo +kAs +fXk +xTd +sDl +fNt +fNt +ujP +ujP +wbT +ujP +ujP +wbT +wQS +dqM +loF +kod +rSI +lXf +lXf +rSI +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +bRn +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(82,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +bRn +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +rYQ +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +bbg +mDO +bbg +mDO +bbg +fac +fac +ikB +fac +ikB +sRf +sRf +hrY +ujD +pvJ +pEn +fac +fac +fac +fac +fac +fac +fac +fac +vnr +vnr +vnr +ikz +bFE +vZj +rPj +bhw +rml +okL +iLN +bhw +bFE +feJ +fJw +ewo +gje +jEX +xTd +mAk +fNt +mGZ +sZL +kiZ +slY +qlt +kKK +uCl +edK +dqM +uBX +acL +cLc +uzt +hfb +rSI +rSI +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +bRA +tzq +fac +fac +fac +xuB +bRn +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(83,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +ikB +fac +ikB +fac +fac +fac +ikB +fac +sRf +sRf +fgl +vjH +hzW +eeA +pEn +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +hYP +bKQ +jDz +huG +huG +huG +dsd +btM +kgb +mbZ +jBN +qHb +nGo +xdr +jQW +rQv +vMX +wnY +jOd +toe +uma +pDX +hHX +sHC +hHX +hHX +edK +dqM +gOA +kQu +dgR +rUy +fff +mIL +rSI +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +tzq +fac +fac +fac +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(84,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +ikB +fac +ikB +fac +fac +fac +mmp +gqh +sRf +ixj +dDk +mGa +hYt +wvR +pEn +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +lYb +rEx +rEx +rEx +fCI +fCI +lJU +upC +vhL +mBB +wPj +sxo +pRT +csV +tcn +abx +htT +xZg +vJY +uyl +wDA +wVg +hHX +hHX +hHX +hHX +bye +dqM +xlL +rox +cLc +ivj +rlE +vZZ +rSI +qsX +qsX +fac +fac +kMZ +ikB +ikB +ikB +dNm +ikB +vky +ikB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +bRn +xuB +xuB +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(85,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +tzq +bRn +tzq +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +ikB +fac +ikB +fac +fac +mmp +mmp +ltV +sRf +hTX +dDk +kaJ +vWo +sRf +sRf +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tMR +rEx +jaU +xrK +tWJ +fIN +uNp +nuS +ylJ +ylJ +ylJ +fPC +cFC +gXO +kok +uZw +dbc +jCE +gNH +ueK +kVG +qnA +hHX +hHX +hHX +vBE +swl +ogU +dqM +dqM +mFq +dTp +juW +cJI +rSI +eot +qsX +qsX +kMZ +kMZ +kMZ +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +tzq +bRn +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +bRn +tzq +tzq +bRA +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(86,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +xuB +tzq +tzq +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +ikB +fac +ikB +fac +mmp +mmp +rxr +mYp +sRf +glA +oNT +iVt +kuc +pEn +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tMR +fCI +qyl +wmR +hDO +mSj +kqs +uUj +ylJ +ylJ +ylJ +fPC +pRT +gXO +ceN +lWw +prf +wIS +fNt +ihB +unk +iAu +whG +hHX +hHX +fNt +usg +rSn +onC +xYE +rYI +kAa +mRZ +kAa +lBp +tyb +pDC +bbJ +vMr +fuG +emS +sYG +fac +fac +fac +hgz +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +tzq +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +tzq +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(87,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +bRn +xuB +xuB +xuB +xuB +xuB +bRn +tzq +fac +fac +rYQ +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +ikB +fac +ikB +qNd +gqh +fUI +nKd +erX +sRf +rCe +lue +shM +iRj +pEn +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tMR +fCI +pdn +xiX +gAi +snx +vmp +sES +jxv +jxv +jxv +jer +cAj +ewo +ewo +ewo +idr +ewo +pHs +pHs +pqB +wkF +pHs +wIF +juy +xyQ +rrj +rrj +dPH +gZL +xyQ +tio +vEH +cZr +rSI +nmV +mYm +gpQ +kMZ +kMZ +kMZ +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +rYQ +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +xuB +tzq +tzq +xuB +tzq +tzq +bRn +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(88,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +jmr +fac +fac +fac +fac +ikB +wRM +wRM +rQm +gHX +fqN +eDH +sye +sRf +sRf +ncq +gNt +gNt +gNt +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +rEx +cCg +mtb +vMl +gjO +cjB +qhA +vtq +vtq +vtq +iow +pSz +pnI +tIc +hYP +iFo +ahA +pHs +vBo +iaM +xfC +pqB +qur +qur +xyQ +rOC +rzE +tdd +bIS +xyQ +xyQ +xyQ +xyQ +xyQ +xyQ +xyQ +ykH +vDj +izT +kMZ +kMZ +qsX +dNm +ikB +vky +ikB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +bRn +tzq +tzq +tzq +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(89,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +oEi +ikB +ikB +gHX +sCU +gHX +wRM +lXX +bVw +gHX +pZB +gHX +trB +trB +lSM +mxV +gNt +xrp +gNt +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +rEx +qjY +tlG +uqe +qvh +lJU +bhH +lOa +cUE +sid +wFQ +lOa +aRA +nnt +wyp +oWU +vtt +pHs +caw +mob +jgx +uXo +sBY +pHs +xyQ +sAM +gbt +hVn +oxR +jSO +ugX +doQ +hbm +sFE +wRp +xyQ +xcE +esM +iTN +kMZ +tef +qsX +qsX +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +bRA +tzq +xuB +xuB +xuB +xuB +xuB +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(90,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +oEi +fac +fac +gHX +aej +gHX +kRz +lhq +puz +mOO +eBU +gHX +gHX +lkF +rSA +jfz +gNt +xrp +gNt +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +rEx +rEx +mxb +sMI +sMI +sMI +xaP +kUp +lWr +kUp +hYP +krB +lTm +reF +eGs +eGs +kKy +pHs +pHs +tge +bdy +nCH +muk +pHs +jlO +olb +hWe +gnv +qWS +dyv +dpr +tKo +mnk +cFv +hvP +xyQ +sDQ +dAi +fqi +kMZ +vVs +aez +qsX +qsX +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +xuB +tzq +tzq +tzq +tzq +fac +xuB +xuB +tzq +tzq +fac +fac +fac +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(91,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +fac +fac +fac +tzq +bRn +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +oEi +fac +fac +wRM +iAn +ppL +ahq +kgX +qfF +mOO +mUS +lOX +gHX +ryA +sVO +gNt +gNt +giT +gNt +gNt +fac +fac +fac +fac +fac +fac +fac +fac +hMe +hMe +fPA +fPA +fmv +oJj +xaP +eGr +sRA +tgp +vtq +mQU +vtq +vnr +oYW +gAn +nvT +cjP +eGs +kKy +jXo +pHs +pHs +pHs +pHs +pHs +pHs +xyQ +xyQ +xyQ +pfm +djV +hyL +sQi +ilV +hbm +acJ +eXh +xyQ +hQb +lvl +eBy +kMZ +sTx +nYi +sbT +qsX +qsX +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +fac +fac +fac +fac +fac +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(92,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +rYQ +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +oEi +ikB +gHX +gHX +gsm +gHX +gHX +gHX +kCv +suW +peu +iCr +gHX +evW +rSA +qyQ +xty +jVJ +ipG +gNt +bCu +bCu +gNt +wEl +kkV +kkV +wEl +hMe +hMe +fFD +gHA +gHA +qOP +miB +xaP +eGr +sRA +tgp +vtq +nSI +vtq +vnr +oYW +nvJ +sch +gDF +eGs +nWR +fnf +fnf +xvz +jDN +fnf +gAm +jDg +aEP +cPA +xyQ +xyQ +xyQ +xyQ +xyQ +xyQ +xyQ +xyQ +xyQ +xyQ +scu +kMZ +iFo +orZ +kIr +eBG +aMw +iNv +kMZ +kMZ +kMZ +cKN +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(93,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +jmr +fac +vXd +haA +gdk +upf +cQc +upf +aqt +cAp +bam +omw +gHX +shL +sVO +gNt +lMg +lwt +hwt +cgP +qqT +qqT +gRx +kkV +mAs +qqh +wEl +gHA +yiy +fHP +wSK +wSK +uMx +miB +xaP +sRA +nZC +xaP +oGU +ebd +oAp +pic +pic +pic +pic +pic +pic +pic +pic +jOk +pic +pic +pic +ePI +xux +vwD +kOQ +vLk +pDC +aTu +rbO +pDC +pDC +pDC +tIL +tyb +and +agX +qsX +dAi +kMZ +ohk +jEG +cGo +qag +piH +fuG +uAz +kAX +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(94,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +snu +gHX +mPu +aVH +oUT +pwU +bGG +hrC +wXC +lsa +iVE +gHX +rSA +oTr +gNt +bdf +giB +hwt +tqO +tqO +tqO +lfM +kkV +uXN +nrB +wEl +wEl +wEl +nJD +gHA +nke +lYH +xaP +xaP +eGr +sRA +tgp +vtq +vtq +vtq +pxM +xtO +xtO +xtO +tag +uKg +sJc +jdw +bQz +ppG +qqZ +pic +pic +cGz +rUi +cGz +cGz +xCS +xCS +xCS +xCS +xCS +nmV +cog +iZT +iMn +xBg +eNl +pVk +kMZ +kMZ +kMZ +aYK +daZ +kMZ +fEg +kMZ +cKN +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xig +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(95,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +fac +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +snu +snu +oQf +oQf +oQf +gHX +iHE +atn +mRD +jjg +pGM +ovK +gHX +oGQ +cGK +gNt +gNt +gNt +wEY +bCu +bCu +pNx +gNt +wEl +oOH +gxR +oGh +iNr +wEl +lpC +mMv +mMv +jiJ +xaP +eGr +eGr +sRA +tgp +vtq +vtq +vtq +pxM +qXK +qXK +eeP +oVO +waz +pBF +jdw +bQz +ppG +qqZ +qqZ +pic +rYY +qkh +lpi +cGz +hoy +tKw +qlf +sWC +xCS +wiB +qCw +rjN +gbJ +ujx +qsX +jhz +qap +lcD +raG +raG +raG +raG +raG +tlq +tlq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +bRn +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(96,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +sGb +aye +sGb +fac +snu +snu +snu +hra +oQf +oni +vOa +oQf +gHX +gHX +pub +iaX +xKN +umL +gHX +xVy +kuV +rhM +vHy +bIZ +omi +fPs +jbG +cXt +aLP +jFv +jBS +pik +xlU +cMt +wEl +sgw +kIg +oJj +qCo +xaP +sRA +sRA +nZC +xaP +vno +dKg +npW +pic +ogc +bQz +bQz +bQz +bQz +fkK +jdw +fBo +ppG +qqZ +qqZ +pic +uxe +rfJ +xJC +cGz +roU +uOj +lSV +uOj +xCS +aUF +bjZ +hWy +toD +aME +iGb +ean +rMm +vyv +dgS +abY +mBl +uxS +raG +aki +tlq +tlq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(97,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +tzq +xuB +xuB +tzq +tzq +tzq +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +bwt +kAX +ikB +ikB +joR +jhJ +jsS +cxD +oQf +oni +oRd +jPl +gHX +aTC +xcg +jrg +mfs +gMD +gHX +szF +kuV +rhM +bem +cIZ +qMF +pkB +jbG +nES +pkB +kkV +wPV +xqc +wEl +wEl +wEl +rBc +rBc +rBc +iab +xaP +eGr +eGr +sRA +tgp +vtq +nWI +nWI +pxM +rvF +hzD +rvF +cLl +sWn +bQz +jdw +bQz +ppG +qqZ +qqZ +pic +dgg +aDU +rmg +cGz +gUL +bZr +wxj +uLk +xCS +aWe +aWe +hfz +fCe +fCe +fCe +fCe +gnz +aUE +raG +mEH +cBJ +uxS +raG +vCW +wDy +tlq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(98,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +tzq +tzq +tzq +tzq +tzq +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +sGb +ikB +fac +fac +snu +snu +snu +ghj +oQf +oQf +oQf +tlM +gHX +gHX +vNK +wkw +gHX +gHX +gHX +qsP +kuV +rhM +ffK +hZD +qMF +qlj +iAM +nES +qlj +rBc +rBc +rBc +rBc +amu +nQL +npd +iYw +rBc +oaJ +xaP +xaP +xaP +sRA +krl +rfo +vtq +vtq +pxM +xtO +shu +nXx +fEs +sWn +fkK +pJl +bQz +ppG +qqZ +qqZ +pic +edv +leb +vSv +cGz +wRX +bZr +wxj +uLk +cqF +vfx +qcx +xSb +rIW +mfQ +eDt +fCe +fCe +sLq +raG +lfs +cBJ +uxS +raG +ljf +fIC +tlq +tlq +bRn +xuB +xuB +tzq +fac +fac +fac +fac +rYQ +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +bRn +xuB +xuB +fac +fac +tzq +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +bRA +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(99,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +tzq +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +ikB +fac +snu +snu +maU +pGA +jew +daP +qhu +xQp +jew +aSF +hrg +iuV +dyJ +snu +anI +nmY +oTr +bFy +rhM +rBg +brF +pfW +omn +omn +fko +wJa +aex +tRR +jpT +ibu +nMF +bQV +rwo +hyX +kyj +cKv +feP +nQA +hYP +hYP +hYP +eKI +ebd +uLT +pic +ern +wLz +cxS +lvD +qLX +mIC +pic +tRP +hZw +rsl +cxS +pic +ini +pny +wZT +vDQ +iZl +bZr +wxj +uLk +cqF +vfx +aoK +imh +xRD +nqk +uXv +azu +fCe +wUS +raG +raG +raG +raG +raG +uwI +sfh +cXS +tlq +gfP +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +fac +fac +xuB +xuB +bRn +xuB +fac +fac +fac +fac +fac +fac +xuB +bRn +tzq +fac +fac +fac +fac +tzq +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(100,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +tzq +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +xuB +xuB +fac +xuB +xuB +xuB +xuB +tzq +tzq +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +wPY +wPY +wPY +wPY +wPY +wPY +lli +lPg +lPg +tLs +tLs +sQQ +qfB +ksz +rXP +oQU +hap +dnB +vyH +dZz +snu +hHl +sTO +aCi +euD +eSH +web +web +web +web +web +cyv +jBJ +pbW +saG +huJ +aex +fxU +gzF +kAt +yks +nvZ +jZq +gLT +rBc +kIw +hLF +cnc +hYP +ylJ +ylJ +vbb +bpr +vtq +pxM +qqZ +eQv +hFJ +qqZ +qqZ +lgE +aBP +cvH +cNC +rob +ifY +ovI +cGz +cGz +cGz +cGz +sIY +uOj +fDD +uOj +cqF +vfx +pnC +imh +mbl +krw +fJx +dol +fCe +gXS +byW +oyu +jHo +tlq +cQQ +aEt +kBV +tlq +tlq +gfP +gfP +bRn +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +tzq +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +fac +fac +fac +fac +xuB +tzq +fac +fac +fac +fac +fac +tzq +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(101,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +tzq +tzq +fac +fac +fac +fac +fac +rYQ +fac +fac +fac +fac +wPY +ayi +lUG +kuA +tZE +tLs +hsX +ikB +ikB +jtd +vFX +bBX +wcA +gMq +wuM +yfb +gXt +wkg +aQr +yai +snu +cLU +uYn +snu +hGr +web +web +qQt +pty +xDu +web +tqe +jBJ +jBJ +sha +xZH +vMi +hlM +avH +vHE +yks +nvZ +hNE +xIP +oMa +kIw +xsW +tIr +hYP +ylJ +ylJ +bnw +izy +vtq +pxM +qqZ +eQv +tSJ +kGM +wFI +lai +aBP +naa +roB +fIw +fIw +fku +xCS +esH +mmK +kpV +cru +vAr +vAr +btp +cqF +vfx +pnC +tCs +mbl +hmQ +mbl +fCe +fCe +gfP +qNB +wUS +mFS +tlq +tlq +tlq +qYV +tlq +mHf +qOB +rmw +tzq +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +tzq +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(102,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +wPY +wTd +wPY +wPY +wPY +wPY +kAX +xtd +vBd +vBd +oVZ +rSb +mlD +ffS +wuM +jhc +kdr +vAv +tnC +tBB +snu +fdc +maD +snu +lzf +web +eXI +gBT +vKb +ukS +web +wko +bWT +jBJ +bbk +kne +vMi +edc +rya +hVS +sbA +jsz +ejR +dXB +gGY +kIw +cMH +fPA +hYP +hYP +hYP +eOk +lWr +eOk +pic +pic +pic +pic +lVb +iEK +pYv +lpy +ama +iYt +bVo +sbR +qwT +eqr +mVJ +mVJ +mVJ +qGk +fkm +fkm +bYo +cqF +vfx +pnC +pVB +pVB +tCs +tCs +nkF +tcb +qpQ +pyi +wUS +gfP +gfP +rqw +tzP +soi +gfP +drO +xPX +rmw +rmw +tzq +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +bRn +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(103,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +rYQ +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +mTi +wBG +wBG +wBG +wBG +wBG +bwc +snu +iqd +eij +bXZ +uMd +xZX +aJP +hHe +gXt +vxQ +aQr +aMj +pKo +gEp +auf +snu +rWp +web +qxe +sap +hpW +mEQ +elF +hpE +nES +ulX +saG +aTH +lLw +rbv +rbv +jAv +rjV +nQL +iyp +nlK +dXm +kIw +smC +fPA +tDz +kJu +inb +mcT +hRw +dwz +sex +jRj +hYp +meq +sUA +ejP +fhw +pic +jWI +lbK +ovI +vcO +tYA +xCS +lNT +lNT +hKi +adM +cwF +eIP +eIP +vGq +vfx +vfx +frZ +frZ +frZ +rCi +aWe +ngQ +qlc +mcO +oyF +gfP +gmQ +nNb +oxw +dZR +gfP +jqJ +ygD +jut +rmw +tzq +tzq +bRn +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(104,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +wPY +wPY +wPY +wPY +wPY +wPY +lli +lPg +tLs +tLs +pBj +ott +lUS +djg +cAo +scC +gcW +jfD +kXD +vzo +sfE +hYy +aCI +dJB +snu +rWp +web +pRh +nFi +jpW +wcN +rRs +vXW +bfK +jBJ +hgf +srJ +vMi +pkM +tbD +rBc +ilB +iJl +uml +rBc +rBc +aLL +ydS +dAv +vCV +vCV +iXA +vCV +bNi +xQF +xQF +xQF +xQF +qMI +oFT +whe +whe +rGK +dKG +bgf +ovI +lzc +vgK +xzj +lMc +gMh +dNP +kLb +jTw +jTw +jTw +nkt +weH +vfx +vfx +vfx +vfx +vfx +aWe +mcO +taM +gfP +wUS +gfP +qEB +oPK +jNS +uHH +gfP +gfP +bcO +xOi +gfP +gfP +xuB +xuB +tzq +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(105,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +bRn +tzq +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +wPY +wCb +xil +mxG +itK +tLs +hsX +ikB +jtd +akd +vJR +lUI +oMH +kMq +iZQ +ngI +eZf +fVA +eBM +gXt +wcA +qeD +eUe +tbd +snu +rWp +web +dRs +kAp +pKw +tDr +rRs +uvv +och +jBJ +hgf +frm +rBc +vkz +vkz +rBc +grb +grb +iGC +vVK +gfu +tDz +ncW +xOH +ocz +xxK +ocz +ocz +gwG +fKs +fKs +oSy +xPk +fKs +xQF +vLF +buf +iJi +jkm +xWV +ovI +xna +nTA +xzj +oNi +cXW +cXW +gEl +atp +atp +atp +iVP +weH +vfx +vfx +vfx +vfx +vfx +aWe +cxW +mcO +gfP +sLq +gfP +gfP +gfP +gfP +soi +oVj +gfP +eVN +jNd +dJp +gfP +xuB +xuB +xuB +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +bRn +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(106,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +wPY +eYM +wPY +wPY +wPY +wPY +imk +tey +tey +fcQ +noW +eyE +qkM +ltF +dnj +siM +dGl +wcA +vAv +kHq +iae +wjZ +jfL +ePt +snu +dHr +web +web +aLZ +thU +oyb +rRs +jbG +vre +jBJ +hgf +srf +yhz +jSR +iwk +ohU +oos +oos +fYX +vsB +yhq +oos +eHi +pza +hIO +wAL +tVD +ylw +mUe +fvZ +jZR +fvZ +aNY +fvZ +sxh +sxh +nBI +kxt +ljm +fKs +ovI +ovI +ovI +xzj +onI +sBy +yiS +iPf +yiS +yiS +vyO +sKp +hTd +vfx +vfx +vfx +vfx +aAm +aAm +aAm +aAm +aAm +laf +qEO +krC +fgY +gfP +gfP +soi +gfP +gfP +wAV +gfP +gfP +gfP +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +xuB +xuB +tzq +tzq +fac +fac +fac +fac +fac +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(107,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +sGb +lhF +vkg +vkg +vkg +vkg +ifb +snu +iyT +eij +bXZ +hWO +lXA +iFK +kFD +wuM +wcA +wcA +wcA +xZn +xZn +wjZ +qim +pRM +snu +rWp +sYc +web +pZr +web +web +web +fnz +ufl +qUr +jpy +avj +oSc +uZr +aCP +ocz +qpE +ocz +ocz +gwG +ncW +oAR +bCQ +dUs +njJ +nQh +nQh +eaO +mlX +eaO +lBU +lBU +htf +xWV +aeX +fKs +sAt +kCp +xKn +fKs +fKs +rVW +rGK +xzj +gsX +veW +veW +ffd +vuw +uLn +uLn +xEX +oml +vfx +vfx +vfx +vfx +bHF +xjB +jEo +evp +aAm +pwj +ecQ +lXH +wUS +soi +mPp +soi +oiw +biy +jNS +nUx +jNS +rmw +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(108,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +fac +fac +wPY +wPY +wPY +wPY +wPY +wPY +wTI +tLs +tLs +pBj +hnt +hpI +bMJ +fks +ibY +eAA +xSw +bOr +auy +auy +jIV +vnj +qet +xBV +dzd +snu +iZy +ngm +web +web +web +eEX +rTm +jYJ +gbo +ksv +mTQ +cNL +yhz +dhb +cyZ +ocz +iCv +ocz +tRO +vVK +kmS +pxq +fdC +rly +pxq +rUk +mRJ +bTe +fyd +fyd +mRJ +rUk +eBo +iyE +iyE +iyE +pbv +iJi +onk +hxC +vLF +fKs +fKs +rdy +qfo +aof +rdy +dXF +yiS +oYX +eRI +dhH +itZ +vfx +pce +vfx +kWg +osL +yfm +kjs +rXS +aAm +jOT +vZm +axX +yfC +bHM +gqd +gqd +gqd +oAQ +gqd +jNS +xmu +rmw +rmw +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(109,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +tzq +fac +fac +fac +fac +fac +wPY +nhf +jlu +ovQ +dKH +tLs +vYo +jtd +eCT +wcA +ajw +gOs +gOs +mFO +kqm +wYT +hWO +eyo +cPl +vfo +bnv +qkZ +eyo +hWO +hWO +snu +des +rWp +cFg +cFg +rWp +gWD +rhM +lAU +rBU +rhM +rhM +hXi +rhM +xGn +cyZ +rrs +faT +wQW +pxq +vPj +mez +pxq +xkd +roI +pxq +rUk +mRJ +fyd +tGq +rvm +mRJ +rUk +eBo +hRh +foR +iyE +iyE +iyE +hCD +sxh +sxh +sxh +cNa +sxh +czS +clh +xzj +rdy +rdy +rdy +fOv +qfo +rdy +rdy +aAm +aAm +aAm +aAm +aAm +xfY +aAm +aAm +wUS +nCU +qjB +sDJ +mFS +gqd +qPQ +jvW +bWQ +gqd +rHf +jNS +jNS +rmw +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +bRn +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(110,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +xuB +xuB +xuB +xuB +bRn +tzq +fac +fac +fac +fac +wPY +dfo +wPY +wPY +wPY +wPY +spn +tAs +xVJ +jIO +gNL +klC +jzq +hey +wgc +kIo +lco +neG +uRK +osE +qfT +iud +moK +moK +moK +bKl +bKl +bKl +bKl +bKl +oux +cIz +rhM +lUl +lMy +yhz +kxj +kSP +oos +ewz +cJP +aLL +rly +rly +pxq +qOS +qOS +qUd +tPn +mtN +pxq +rUk +mRJ +yir +hUT +klA +mRJ +rUk +eBo +jfA +ifB +ued +nra +iyE +iyE +iyE +aeX +fKs +ljB +fKs +rRu +dpE +xzj +xzj +sHt +qJk +hQG +nhR +qdg +prC +jJu +fMJ +etm +ihr +nIH +fxu +mAE +aAm +eal +qoR +qjB +swy +egQ +gqd +msI +shd +umV +gqd +lrM +tzM +jNS +rmw +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +bRA +xuB +xuB +xuB +xuB +bRn +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(111,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +bRn +tzq +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +rpH +fjZ +fjZ +fjZ +fjZ +vhm +snu +hbk +oML +fup +eXY +tcq +tcq +wZM +xEQ +tWQ +icu +xUV +moK +sYi +teV +bGl +bGl +lzO +bKl +hpx +eob +rKP +bKl +bKl +lmh +rhM +tsg +wRw +rhM +bEK +cyZ +ocz +egC +pBf +hMM +jum +eUI +sIN +qOS +qOS +qUd +csa +bNL +pxq +rUk +mRJ +yir +hUT +klA +mRJ +rUk +eBo +eAg +taB +aPs +dSB +wKV +fPQ +ofD +ofD +ixo +ljB +fKs +oxt +lGh +pwS +iST +cXW +mbf +dhE +jQx +nyJ +eNf +jJu +uzz +kco +qqg +wKK +crh +tWK +aAm +wUS +eKl +jNS +fGg +lFd +gqd +uUU +olm +ylV +gqd +fuQ +jTW +jNS +rmw +tzq +tzq +bRn +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(112,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +ikB +xuB +xuB +tzq +bRn +bRA +tzq +tzq +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +sGb +sGb +sGb +sGb +sGb +sGb +jtd +vPQ +vPQ +xfy +brw +tcq +tcq +nLE +pvP +fri +jFL +lce +fDQ +awy +diD +rbw +iia +ghs +bKl +kmO +djJ +iWN +gOV +bKl +rWp +nMt +bsN +kQA +miL +ocz +kow +ocz +ocz +dUs +kTE +qUd +lnF +kQt +vIo +vIo +xRM +xRM +pxq +pxq +rUk +mRJ +mNU +ofd +gRu +mRJ +rUk +eBo +eog +rWa +rWa +dSB +oEX +qFF +iyu +ofD +ofD +jbY +gFp +agW +bfF +fKs +ryx +ryx +sri +yiS +mzI +sRG +oss +jJu +gJX +uNg +wMZ +wKK +crh +tPF +aAm +wUS +jNS +jyy +jyy +jyy +jyy +jyy +sah +qyI +gqd +fuQ +jNS +jNS +rmw +tzq +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(113,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +wal +nxa +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +sSx +xxz +tzq +fEd +sSx +xxz +fEd +fac +wPY +wPY +wPY +wPY +wPY +wPY +wTI +mAz +tLs +xDz +pBj +pEP +eXY +brr +brr +nLE +sce +ozj +dRL +jKL +jtd +nci +diD +mJc +syS +dlO +bKl +hpx +kYD +srH +gOV +bKl +peF +gqh +bsN +qXm +iCv +xki +cyZ +ocz +pBf +dUs +ehm +lTi +xfg +kQt +qEg +qEg +bnu +ipI +pxq +njJ +nQh +nQh +fwA +hzs +awl +lBU +lBU +eBo +eBo +lDX +oQl +sSX +drn +fWb +lux +syA +ofD +iyE +hig +fKs +rRu +fKs +fKs +iST +iST +sTE +tDJ +uLn +uNN +bdu +rmF +mxK +lGO +nlG +jUK +aAm +aAm +crS +jyy +jyy +vFy +bJq +vNQ +jyy +pJn +ndH +gqd +hWL +oAS +jNS +rmw +tzq +tzq +tzq +fac +fac +fac +rYQ +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(114,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +ikB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fEd +tzq +eZM +mjb +xqb +xqb +sSx +fac +wPY +xOU +cFf +wVE +brc +tLs +gVm +mDO +jtd +jtd +asP +ajw +mFO +gOs +gOs +biR +loZ +tUl +jFL +brW +dhY +gSE +diD +dHt +uLj +nSi +bKl +hpx +kYD +srH +bVE +bKl +rWp +egi +hRM +mKU +oos +oos +txa +pBf +pxq +rly +pxq +kMW +eZA +kQt +qEg +qEg +pxq +pxq +pxq +pxq +weT +vSS +pLE +mlX +jmF +vSS +weT +weT +iyE +iyE +iyE +rNK +bws +btW +kEx +fsR +gDH +kue +mTF +ljg +rRu +hxC +fKs +fKs +iST +iST +vqa +pUK +qjw +jJu +qPn +cdg +kOC +pVV +mQb +aAm +ivI +kzK +sHK +fFk +aIy +kdD +wPp +jyy +wit +gqd +gqd +xqN +jNS +rmw +rmw +bRn +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +tzq +tzq +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(115,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +sSx +pdE +tSa +tSa +otP +nts +tSa +fac +wPY +fvY +wPY +wPY +wPY +wPY +bbg +bbg +vgq +qfs +uTp +ilk +hey +wYT +gOs +ank +xEQ +caJ +hAo +eWc +huL +gWY +aJr +hWO +hWO +bKl +bKl +wPO +rGn +jkg +caC +qKV +kZk +gqh +ruO +qpE +ocz +ocz +xtv +pxq +pxq +taP +jnM +dtf +iPp +oZo +pxq +pxq +pxq +weT +weT +weT +weT +vSS +gEP +sdF +sgA +vSS +weT +weT +weT +weT +iyE +iyE +iyE +ony +npp +wDu +hVh +ofD +ofD +iyE +ukm +sxh +sxh +sxh +lkb +iST +ycc +svQ +lAR +bXk +bXk +bXk +bXk +dEQ +dEQ +aAm +qAt +aJC +jyy +jyy +wVc +mCY +xte +jyy +gqd +gqd +jNS +jNS +fRv +rmw +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +tzq +tzq +aSz +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +"} +(116,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tSa +tSa +tSa +tSa +tSa +tSa +ikB +ikB +riW +lOw +lOw +lOw +lOw +lOw +lOw +wMe +snu +xHD +kwQ +xOL +xOL +ule +kqm +eLr +caM +elz +eaT +suu +eJC +vKG +qBv +bKl +bKl +oPF +wHd +lkM +srE +qrc +bKl +gqh +gqh +iuO +ocz +ocz +xUr +pxq +pxq +seO +qPR +eeI +rlJ +iPp +brT +pxq +weT +weT +weT +kjK +kjK +kjK +nQh +isg +dQs +sld +nQh +nQh +nQh +weT +weT +weT +weT +iyE +kGB +pHb +fWb +iLo +rgh +xjC +iyE +iyE +aeX +pUJ +fKs +rRu +xzj +xzj +xzj +xzj +bXk +dRf +wWB +bXk +dEQ +dEQ +aAm +jiE +syb +vMj +bfC +bfC +bfC +bfC +bfC +bfC +lqY +nEJ +gfP +gfP +gfP +dNm +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +bRn +tzq +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +tzq +fac +xuB +fac +fac +fac +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +"} +(117,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +bRn +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +buX +xuB +xuB +xuB +xuB +xuB +xuB +tSa +vkE +mRT +vkE +tSa +tSa +tSa +ouR +bbg +bbg +bbg +bbg +bbg +bbg +ikB +ikB +jtd +nnN +tcq +tcq +nNi +hlZ +kqm +tcq +mMk +snu +uPa +hKK +snu +ovm +ovm +bKl +fGq +pAA +cES +yeU +ptR +fSG +lnn +coK +ftM +iuO +nSu +iCv +pxq +pxq +kLz +uMB +osX +skX +iVW +skX +vUt +pxq +weT +weT +kjK +kjK +aNk +oaD +nSe +dvC +jDW +qHs +xFI +iMM +nQh +nQh +nQh +weT +weT +pbd +fju +tXI +eyM +rqf +qCi +eac +bUy +lle +lle +fKs +fKs +rRu +idf +bXk +bXk +trQ +pvD +lPl +dGO +bXk +aAm +aAm +aAm +pcy +pVN +qoY +ljE +emu +rlC +shE +ojf +bfC +bHM +jNS +uIV +dft +sdN +kAX +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(118,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tSa +tSa +nbQ +nmF +hyR +tSa +tSa +tSa +fac +bbg +pvg +pvg +pvg +pvg +mDO +fac +fac +jtd +tcq +tcq +tcq +tcq +mMk +wgc +tcq +snu +snu +aOr +rxk +oWq +rLo +rLo +kpu +gWR +ykE +mEJ +rQk +qKg +mnQ +irJ +ftM +gME +iuO +kIK +mxW +pxq +vqj +rFJ +nrv +lsP +hvu +lPx +wGI +sLF +eqy +eJo +eJo +eqy +uJK +sPV +kZL +tfZ +nJQ +dQs +kfI +xFI +iQR +frB +erH +nQh +vSS +vSS +dyd +cGd +pNT +lTU +mlE +rUo +fRK +bUy +bUy +lle +aeX +fKs +rRu +fKs +mYy +skJ +ldK +cmn +sws +ife +bXk +epS +gBB +tGe +feC +gLl +hLd +bfC +bfC +mZy +msz +bxo +bfC +gfP +gEQ +gfP +gfP +gfP +dNm +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +bRn +bRA +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(119,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +xuB +tzq +tzq +tzq +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tSa +tSa +bvM +mhW +guq +dkA +tSa +tSa +fac +bbg +pvg +pvg +pvg +pvg +mDO +fac +fac +jtd +tcq +tcq +tcq +tcq +nps +dmJ +tcq +snu +tMx +sGH +rxk +wGC +rLo +rLo +kpu +jtH +nOH +jXJ +kXk +pQL +iey +lnn +xeI +ocz +iuO +jfd +pka +pxq +sjd +lYA +eUI +dWG +rlm +dVM +cek +mOW +eqy +xIk +cmQ +gMP +udh +grN +oFc +aEu +jKe +bIb +dPq +rWP +naJ +cmi +cmi +bKL +dGR +vSS +nQh +weT +cGd +eNh +bls +qQI +ifi +bnG +bnG +iyE +iyE +lsO +rRu +fKs +sWN +vFf +tcA +rNB +auX +gQv +bXk +lBl +dbx +kDz +hLD +nml +uQp +gZR +bfC +ebZ +crT +juQ +bfC +wJm +ygD +koe +gfP +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(120,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xig +tzq +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tSa +niz +mhW +mhW +kgG +tSa +tSa +ikB +bbg +bbg +uJJ +bbg +bbg +bbg +ikB +ikB +snu +snu +snu +snu +snu +snu +hCc +snu +snu +rLo +sGH +rxk +aWj +rLo +kvu +bKl +bKl +bKl +vzd +aMp +kCy +bKl +bKl +vVK +gwG +bFR +vVK +pka +pxq +qEg +lYA +fIz +njJ +pxq +pxq +pxq +pxq +eqy +dci +esW +eqy +mKS +weR +eqy +lyw +iuq +sBE +jED +lyw +lyw +hxs +aqM +jDW +xFI +xpE +nQh +nQh +dyd +qoG +iyE +iyE +bUy +bUy +bnG +bUy +iyE +lle +fFY +leT +iJi +bXk +bXk +yci +yci +yci +bXk +tUq +prj +prj +feC +qLH +uQp +lyh +eLT +eLT +eLT +eLT +eLT +eLT +new +ygD +rmw +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +bRn +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +tzq +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(121,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +smK +xuB +smK +smK +smK +tSa +ddQ +elc +jhE +aLh +tSa +tSa +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +jKS +rLo +rLo +wYv +kzg +xcP +vim +kGw +afh +sGH +eHL +kvn +qyc +rMx +bKl +ycn +kpu +pgI +stO +lrW +lnn +ftM +eBr +jEa +iFN +jwK +jwK +pxq +ulr +ijk +hXj +pxq +weT +eqy +cnT +vfE +kjK +vkG +cMv +eVx +gkg +gTk +eqy +lyw +oLq +nMG +lxc +lyw +lyw +lyw +lyw +tgG +mWO +mWO +hVZ +vSS +vSS +weT +weT +iyE +bUy +bUy +bnG +bUy +bUy +iyE +gUJ +juT +wJA +oFm +tvd +jZp +bBQ +bBQ +qeq +izR +ttw +jPd +hoI +uDL +hzp +bwX +cdX +fVB +srF +pnM +xsG +eLT +vZm +nYH +rmw +xuB +bRn +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +fac +xuB +xuB +xuB +xuB +tzq +tzq +bRn +xuB +xuB +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(122,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +rQT +xuB +tzq +bRn +xuB +xuB +xuB +smK +smK +smK +smK +smK +smK +smK +vVv +lCk +akt +aLh +tSa +tSa +tSa +ikB +ikB +ikB +rFu +ikB +ikB +ikB +ikB +ikB +jKS +rLo +rLo +dRD +kYC +cVI +abk +ddY +xwB +mdE +eHL +eHL +eHa +gmX +vgZ +hEL +mhs +aKe +kob +nfK +erS +ngY +pza +pza +pko +jwK +djS +pxq +deK +liq +pxq +pxq +weT +eqy +qVo +rKx +rIk +hso +xHV +jDR +ptY +chH +eqy +lyw +sjZ +bgw +oPS +lyw +lyw +vFE +iiK +iiK +iiK +bYW +cpm +qfe +vSS +weT +weT +iyE +iyE +iyE +iyE +iyE +iyE +iyE +xCq +gHe +fvZ +usq +bdh +jXC +gRQ +gRQ +jVs +mRq +mRq +mRq +mRq +ryZ +txq +lDE +eLT +eLT +jqN +xUv +nPA +eLT +vZm +viG +rmw +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +tzq +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(123,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +tzq +bRA +xuB +xuB +xuB +smK +smK +smK +jxJ +uuH +smK +smK +smK +czB +smK +xOz +vDL +tSa +tSa +tSa +fac +fac +rYQ +fac +fac +fac +fac +fac +fac +iuh +iuh +lEH +kvn +kvn +bFq +kvn +kvn +kvn +moI +nWa +kvn +cyU +vlY +bKl +usB +kpu +pag +ssy +bKl +bKl +xHw +fKX +ydz +nUD +jwK +pNk +uFH +wJl +jWR +jwK +oJP +weT +eqy +eqy +eqy +eqy +eVy +gkW +wvS +kzh +kzh +mDL +kCs +xxP +vxN +uVe +hBV +rxs +mKO +vfN +gDh +iiK +hxs +jDW +gcn +nQh +nQh +kOX +kOX +ven +qsW +dTU +grC +ivT +atN +jeo +bYd +xPk +nYd +jQp +jQp +wFT +bfY +gjX +bDd +qLH +eFI +mPi +gzU +ebv +cPY +aLG +eLT +jbB +anV +igA +eLT +vZm +gfP +gfP +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +bRn +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(124,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +bRn +xuB +xuB +xuB +smK +smK +smK +jHx +ydU +uXI +imd +qWU +iFS +kpq +smK +hjJ +hjJ +hjJ +hjJ +tSa +fac +rFu +fac +fac +fac +fac +fac +jmr +fac +fac +kqN +jZA +gEs +gEs +kqN +vQT +aDb +qPA +moI +nWa +nWW +iuh +hiW +iuh +iuh +iuh +iuh +aLL +aLL +aAj +qjr +fOg +dqX +oWo +jAT +mkd +dMh +qQj +psr +dOg +arK +bKN +ygq +fyU +pyo +adJ +ygq +vOz +fqv +xEh +eHr +eqy +jjA +aVt +ags +ags +ags +xnc +ags +bwD +ohQ +lyw +lyw +uGo +uQz +hEU +vZW +mrf +mrf +bgb +wgE +aEs +jCN +aEs +kdk +uNm +rnS +ics +ics +arZ +xpi +vvr +vvr +hab +hab +hab +hab +sTA +nHH +gCr +sTA +iAW +eLT +eLT +eLT +eLT +eLT +gfP +gfP +stI +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(125,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +xuB +xuB +xuB +smK +smK +smK +vYl +eaU +vYl +rdf +eaU +hvn +dBh +smK +pXa +rLh +oKt +hjJ +hjJ +ikB +jmr +ikB +rFu +ikB +jmr +ikB +jmr +ikB +ikB +kqN +msn +nqN +uep +kqN +ghP +kvn +rOa +moI +nWa +nWa +swS +dMe +dMe +sqv +fJk +iuh +wpK +wpK +dHu +bQr +vKc +cMO +jwK +jwK +nNO +tSY +sHJ +muW +jwK +nle +hbr +ygq +bTz +yjZ +oGK +ygq +ygq +ygq +ygq +ygq +lyw +reK +qSZ +nzR +nzR +nzR +hOS +dEH +udN +sfe +mHO +iiK +fDL +nNG +vqS +nQh +oNn +oNn +ven +gTK +hsm +ivW +ivW +ivW +rkS +xaC +eOC +eOC +pvv +xpi +vvr +vvr +hab +bbz +qpz +hab +dbV +yhZ +lCS +uHS +ruk +lwb +cTt +tuH +ncf +ozO +aHI +wQD +jwX +jwX +xuB +jmr +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +aSz +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +tzq +tzq +xuB +xuB +xuB +fac +fac +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(126,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +smK +smK +nkZ +uDT +dxz +wUH +hFs +jio +skU +frF +qNh +xWO +vBp +hjJ +hjJ +fac +jmr +fac +jmr +fac +jmr +fac +eUL +fac +fac +kqN +hmS +oRY +hmS +fKM +kqN +iFU +uYL +oDB +yjl +sYE +iuh +sqv +fJk +sqv +fFh +iuh +lAJ +bYR +ifI +dtr +bWq +pNo +jwK +wKY +rnz +hDd +dVV +qbg +jwK +pXh +mQW +twz +iSX +qIJ +xDx +cBd +pDP +wNR +tLL +ygq +pek +pAX +nJx +eND +vFO +lRK +oIh +fak +ags +bYO +tRW +iiK +ccZ +ozf +xFI +vSS +weT +weT +nkr +eQN +nIJ +mJw +mJw +mJw +ygj +vWK +gdm +bMb +iif +rGK +hab +hab +hab +tqh +jgA +hab +pnp +dJf +lCS +enA +lVK +qXA +klU +iMX +bgQ +lAm +iKL +tYu +ikB +dNm +ikB +jmr +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +tzq +bRn +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(127,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +xuB +xuB +fac +fac +fac +fac +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +smK +smK +ukq +smK +hkG +smK +smK +ruh +ijf +emI +yiE +lKa +mQg +hjJ +hjJ +fac +bRP +fac +eUL +fac +eUL +fac +eUL +eUL +fac +kqN +dCi +hrK +jbK +lag +mQG +lag +lak +fwH +qPA +wGC +hiW +oHc +wsI +wsI +wsI +iuh +ylO +ylO +dHu +qpE +uOI +gJe +adA +jNZ +muW +ePJ +wJl +gGU +jwK +wDM +fJo +ygq +gys +hpO +qtM +dMN +fwn +wHN +wuC +ygq +uCI +gNx +nJx +cbG +cbG +cbG +gmU +txV +kRY +vjq +oYw +iiK +ccZ +rPY +nNG +vSS +weT +weT +nkr +eQN +nIJ +mJw +mJw +mJw +ygj +oVu +ivd +kYR +mgW +wpA +tEk +uSm +nws +sin +aTi +hab +qCE +imj +lCS +bKE +wQD +coS +fou +aFA +bgQ +iJS +iKL +tYu +fac +fac +fac +oEi +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +bRn +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(128,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +tzq +tzq +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +sLh +nxa +xuB +xuB +smK +smK +smK +awv +aft +laa +wKD +smK +scq +coy +vyT +faA +hLN +uSV +hjJ +hjJ +iPc +bRP +fac +eUL +eUL +eUL +eUL +eUL +fac +fac +kqN +rFa +eAP +gnf +heF +dcJ +heF +uCQ +iyq +fEb +ixa +hiW +xFl +nvW +nrd +oJf +iuh +pka +pka +jAr +dhb +iuO +nrM +kTh +kTh +kTh +kTh +kTh +hQD +jwK +iEN +bKN +ygq +gMC +axJ +nNF +baI +uzm +iAU +uKU +igV +utx +bCR +def +qYP +lJr +qHp +pOT +dDF +idh +ihD +hrd +lyw +xSx +jfS +dxm +nQh +nMV +nMV +ven +xsO +nIJ +mJw +mJw +mJw +ygj +xqE +cci +ivd +mgW +eZe +bzx +eDD +cTc +nhW +tvB +hab +iek +ylv +fCJ +hjf +wQD +wtT +mJG +lOg +bgQ +xIg +iKL +tYu +fac +fac +fac +oEi +fac +fac +fac +fac +fac +fac +rYQ +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(129,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +xuB +xuB +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +ikB +xuB +xuB +xuB +smK +smK +smK +kGX +smK +qFI +smK +smK +kQd +ldY +emI +blx +cJW +xGR +hjJ +hjJ +fac +bRP +fac +eUL +fac +eUL +fac +eUL +eUL +fac +kqN +wxV +aCw +rvG +sbC +nCy +sbC +iLW +qau +eLf +wGC +hiW +qKA +xCW +xCW +fXt +iuh +xFe +eXO +eoK +ocz +tqI +tTi +kTh +tYB +mrX +qjT +kTh +lCL +jwK +wDM +eLt +ygq +iLg +kBf +iLg +iLg +fRP +jzg +nSE +ygq +uCI +qjj +nJx +cbG +cbG +cbG +gmU +fxO +oEN +mQN +tga +iiK +gcj +sTV +xFI +vSS +weT +weT +nkr +eQN +nIJ +mJw +mJw +mJw +ygj +oVu +ivd +kYR +mgW +rMI +geI +wip +hvf +rEM +wjH +hab +hgv +hRc +fDb +ixA +wQD +qaX +aGG +hGN +bgQ +xIg +iKL +tYu +fac +fac +fac +oEi +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(130,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +nts +xuB +smK +smK +qkU +gkn +iHO +soX +fxl +jio +skU +jYp +pkF +pPt +vBp +hjJ +hjJ +fac +jmr +fac +jmr +fac +jmr +fac +eUL +fac +fac +kqN +gLy +him +gLy +rFH +kqN +kqN +hBb +uJw +cjF +dnN +iuh +sqv +dYZ +fpg +izm +iuh +dzG +kXU +pmP +ocz +hed +pNo +kTh +raK +nqx +kTh +kTh +lTY +lTY +wDM +bKN +ygq +lpo +axJ +eXz +iLg +fcB +khD +xKb +ygq +rnr +bgN +nJx +cMN +vFO +kcG +oIh +wsv +jcB +ags +jkv +iiK +gcj +ozf +xFI +vSS +weT +weT +nkr +eQN +nIJ +mJw +mJw +mJw +ygj +mDo +qdz +qdz +gqH +rGK +wKw +hab +hab +imX +vgH +hab +pnp +deX +uym +oaf +lVK +cou +nsb +oSX +bgQ +epE +iKL +tYu +ikB +dNm +ikB +jmr +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(131,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +otP +smK +smK +smK +kMv +fHW +bmT +sHW +uwW +kjB +cnn +smK +pXa +ppo +oKt +hjJ +hjJ +ikB +jmr +ikB +rFu +ikB +jmr +ikB +jmr +ikB +ikB +kqN +nuI +nqN +uep +kqN +wiz +kvn +rOa +moI +nWa +nWa +puG +dMe +dMe +dYZ +sqv +iuh +rEb +rEb +lEB +bQr +tqI +ycJ +kTh +kTh +epI +kTh +baC +rVX +lTY +qdu +eLt +ygq +jYt +saD +uwF +ygq +ygq +ygq +ygq +ygq +lyw +ewL +rvt +lmy +lmy +lmy +vGh +wKA +veQ +wmo +pLy +iiK +mzA +xFI +apT +nQh +kOX +kOX +ven +ack +bUN +myP +myP +myP +fJX +xaC +eOC +eOC +pvv +ePd +kPY +tZQ +hab +duY +ghL +hab +jJw +lPs +lCS +tKm +bdM +npi +tXx +ekV +rfM +aur +qpl +wQD +fac +fac +fac +jmr +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +tzq +xuB +tzq +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +xuB +xuB +tzq +tzq +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(132,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +bRn +smK +smK +smK +jHx +mOw +rdS +jDa +hrD +fgt +eTj +smK +hjJ +hjJ +hjJ +hjJ +jTG +fac +rFu +fac +fac +fac +fac +fac +jmr +fac +fac +kqN +ccQ +tOp +tOp +kqN +xFv +tcV +eLf +moI +nWa +kvn +iuh +jKS +iuh +iuh +iuh +iuh +aLL +aLL +bBe +iCv +iuO +aYU +kgZ +lTY +sBp +iZb +qfr +wUT +eEQ +wDM +bKN +ygq +ygq +qlL +iLg +aoG +mwL +etu +lMK +kRk +aoG +qga +bts +pBK +pBK +pBK +bPi +emw +vYY +ajM +lyw +lyw +iUY +xFI +bTk +qJh +jrI +jrI +uaB +eQN +eQN +eQN +eQN +uXw +geg +cBR +ics +ics +cmM +ePd +vOA +eWV +hab +hab +hab +hab +sTA +bCf +gCr +sTA +xJN +hoa +hoa +hoa +hoa +pHy +pHy +pHy +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(133,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +jmr +jmr +oEi +fac +fac +tzq +smK +smK +smK +smK +scq +msj +smK +smK +smK +sxn +smK +pmM +nrS +jTG +jTG +jTG +fac +fac +fac +fac +fac +fac +fac +fac +fac +iuh +iuh +rDi +nWa +nWa +qSk +nWa +nWa +nWa +tue +nWa +kvn +uNz +jsB +cjZ +uUx +uBr +mXa +vsE +cjZ +cjZ +pYQ +lOp +vee +iAs +nAy +hZz +oDo +dnY +bea +lTY +piu +weT +weT +ygq +icQ +hJH +aoG +xyn +xVN +mBM +qRT +fHk +cbZ +mCj +uVe +qlk +phK +gHz +kaX +fPG +ddL +iiK +hDh +vtk +cGc +nQh +nQh +oNn +oNn +ven +uvh +uOR +gRD +hSP +atN +hci +fKs +fKs +nkE +ePd +ePd +osh +jPf +pcZ +xDj +xDj +jQp +rSJ +gKn +tAj +dPW +aLG +hoa +tUd +hkX +iiI +pHy +bZy +wey +pHy +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +bRn +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(134,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +ikB +fac +fac +fac +fac +fac +smK +smK +smK +smK +smK +smK +smK +smK +kfm +vVV +pCI +ksb +jTG +jTG +jTG +ikB +ikB +ikB +rFu +ikB +ikB +ikB +ikB +ikB +jKS +xfD +pSZ +kWP +wvM +dli +dli +dli +gDu +uyk +nWa +nWa +dfU +gmX +iVL +axq +tqf +iky +epO +gDW +eyy +ahO +pza +xiU +oii +lTY +aBX +tSO +hlL +tyq +lTY +lTY +weT +weT +ygq +twR +aoG +aoG +gAG +dkH +cQN +mPb +aoG +lyw +tmT +bgw +gNZ +lyw +lyw +kaX +iiK +iiK +iiK +bYW +uJW +lZR +vSS +weT +weT +ven +ven +uvh +hKr +awz +mJw +ven +guN +fgw +aYX +diI +svL +dMM +uvE +rbm +rbm +rbm +rbm +jQp +ltl +jjJ +ktA +dKl +hoa +hoa +aUv +xxd +oZy +pHy +mPQ +fsd +pHy +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(135,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +oEi +fac +ewX +ewX +ewX +ikB +ewX +ewX +fac +smK +smK +smK +smK +smK +smK +smK +smK +kKM +pFN +elk +ksb +jTG +jTG +fac +rYQ +fac +fac +fac +fac +fac +fac +fac +fac +jKS +pSZ +pSZ +vOG +afh +rLo +rLo +rLo +afh +sGH +nWa +kvn +dQA +kGp +cjZ +pUw +uBr +bOs +hfj +rnw +uza +vNc +ktu +nvx +eAO +lTY +lTY +roH +nPu +sMg +iRz +lTY +weT +weT +ygq +ygq +aoG +npw +gLq +qVz +wsa +euG +aoG +aoG +aoo +nMG +bmt +lyw +lyw +lyw +lyw +vxB +uJW +uJW +ped +vSS +vSS +weT +weT +ePd +ePd +niw +ePd +ePd +ePd +ven +jcZ +fKK +uia +rAf +ePd +sdl +wtY +rbm +sCB +jeG +rbm +qcO +bBM +odN +dPD +mpc +vOt +bvi +csF +etY +cuJ +pHy +qYS +nlC +pHy +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +fac +fac +fac +xuB +fac +fac +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(136,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +jmr +ikB +dUK +dUK +dUK +dUK +dUK +dUK +ikB +smK +smK +smK +fac +fac +jTG +jTG +jTG +elk +ecl +ebR +vGr +jTG +jTG +ikB +ikB +ikB +rFu +ikB +ikB +ikB +ikB +ikB +okv +okv +yhj +okv +tMx +rLo +rLo +rLo +rLo +pHF +sGH +pSZ +fnh +rLo +kvu +cjZ +cjZ +cjZ +gbl +hfj +olw +cjZ +cjZ +vVK +gwG +bFR +vVK +lTY +eVg +iPD +fVJ +iUM +lTY +lTY +dyd +dyd +aoG +aoG +viD +hgl +ugC +oZU +vuC +aoG +aoG +eLF +sBE +xRh +lyw +lyw +hDh +tMg +uJW +xFI +grh +nQh +nQh +dyd +dyd +ePd +ePd +sdl +yiW +rFM +yiW +ePd +iJi +oHw +bPw +iJi +rbm +rbm +rbm +rbm +rbm +djv +jzJ +rbm +wow +nQa +qkg +efQ +jzm +hoa +hoa +hoa +hoa +pHy +pHy +gQG +pHy +pHy +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(137,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +oEi +fac +ewX +ewX +ewX +dUK +ewX +ewX +ius +smK +smK +smK +fac +fac +fac +jTG +jTG +vTZ +vXy +gmW +ngC +jTG +jTG +fac +fac +fac +fac +fac +fac +fac +fac +fac +okv +vSd +bCw +okv +pKl +bQQ +bQQ +bQQ +bQQ +pKl +rfL +pSZ +uKT +ddY +ddY +uBr +wOT +jAS +cfg +kxE +uBu +oLz +uza +wjK +qpE +iuO +cVV +lTY +lTY +lTY +bqh +bqh +hjM +hjM +hjM +weT +weT +hoo +hoo +pLY +qMA +rPB +qMA +aoG +aoG +jQr +btz +vxB +tWb +aqE +lQr +lQr +cZO +bTk +vSS +nQh +weT +weT +ePd +ePd +pFw +rFM +yiW +ykg +ePd +ePd +rzL +uxU +bYd +dXr +rbm +cxY +cmB +xjf +rbm +mVK +rbm +rbm +val +bBM +nvB +wQc +kOF +qdL +eCM +wIv +oen +pHy +xgN +rMT +dyi +uju +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +tzq +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(138,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +dUK +fac +fac +fac +fac +fac +fac +fac +fac +fac +jTG +jTG +hNT +hsI +lhh +jTG +jTG +jTG +fac +fac +fac +fac +fac +fac +fac +fac +fac +okv +uzi +kHt +okv +ycA +kTv +kBw +rKt +fYR +bQQ +kPv +pSZ +cum +pSZ +pSZ +uBr +aiW +cIj +cfg +dOw +nal +aXN +uge +vNc +dhb +iuO +nSu +tsX +hjM +hjM +wxx +uSJ +nhI +nWs +hjM +tLv +weT +dyd +hoo +hoo +aoG +bYq +oZU +lgq +aoG +wdM +xFI +vFj +xFI +iQR +gwI +eRr +nQh +vSS +vSS +dyd +weT +foq +foq +foq +foq +drx +xuM +pFw +ePd +uHw +oEQ +jrq +eTr +diI +hkx +uTM +cmj +cmj +jSi +pOV +rZz +tpi +icJ +foY +spF +vWO +qdL +qdL +rxW +kHA +iGk +pHy +izr +qRN +kgN +pHy +pHy +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(139,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +oEi +ikB +fac +dUK +ewX +ewX +ewX +ikB +ewX +ewX +ewX +ikB +ikB +jTG +jTG +aOt +rpA +aOt +jTG +jTG +jTG +nvh +fac +fac +fac +ino +fac +fac +fac +fac +okv +hNw +kHt +okv +ofb +kRG +xyi +hIG +pEB +pKl +tdN +sVJ +lgX +siw +fUN +lgX +siw +jSM +fUu +kxE +dLY +xVC +uza +dio +vNc +iuO +ocz +ocz +bZa +uay +kiy +mvW +oLs +wFs +wFs +wFs +wFs +dyd +weT +weT +aoG +pcF +xJQ +dOm +lBU +eRX +aOH +vFj +xFI +hQJ +nQh +nQh +nQh +weT +weT +dyd +foq +foq +ggO +jTe +foq +nrL +xDj +ePd +ePd +fKs +sHs +fKs +ocZ +ePd +rbm +gSy +wds +mDR +wds +kiw +shO +rbm +ciK +gBH +jjp +mtI +hpY +cDe +bcz +tjh +fTa +pHy +xGJ +mUt +mvN +bvH +uju +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(140,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +oEi +ikB +hGh +dUK +dUK +dUK +dUK +dUK +dUK +dUK +dUK +dUK +dUK +jTG +jTG +aOt +oyz +aOt +jTG +jTG +nKR +nKR +nKR +nKR +nKR +nKR +nKR +nKR +nKR +nKR +xJv +wdE +kuz +okv +dvg +mjI +iTa +oca +lPf +beR +ozV +qYo +lgX +tfk +alZ +abT +mic +dTj +tRo +aTG +tHv +cjZ +cjZ +tRY +dEO +iuO +ocz +ocz +tSw +hjM +hjM +vvQ +hIF +wFs +hVt +rIS +wFs +mfu +weT +weT +qNe +qNe +qNe +qNe +lBU +pAe +dQs +lpH +nQh +nQh +nQh +weT +weT +weT +weT +foq +foq +xWo +cui +wvZ +foq +drx +ePd +ePd +gix +sAt +wzR +hxC +ePd +ePd +ePd +rbm +sqf +rbm +mPF +rbm +dRq +rbm +npF +vBA +bzw +fXE +qdL +qdL +qdL +qdL +pHy +pHy +uTA +grI +uvY +iUS +uju +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +tzq +xuB +fac +fac +fac +fac +fac +fac +xuB +tzq +bRn +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(141,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +oEi +ikB +fac +ikB +ewX +ewX +ewX +ikB +ewX +ewX +ewX +ikB +dUK +jTG +jTG +aOt +khm +aOt +jTG +jTG +nKR +fac +fac +fac +fac +qBB +fac +fac +fac +fac +okv +vWi +okv +pKl +wUc +rBq +mzq +wkG +gPc +rUf +jMo +qRI +lgX +kft +acs +wyh +siw +cwl +jux +dRo +oaV +cjZ +vei +tRY +tRY +vmH +nkP +pza +pza +lQL +hjM +hjM +vYq +wFs +rKS +mUA +lqE +mfu +mfu +tLv +fhY +hDH +hDH +lBK +kHl +hnx +mSD +hqp +vSS +weT +weT +weT +weT +foq +foq +foq +foq +emB +lAz +wdv +foq +orV +ePd +rzL +bDG +vyy +rpn +tWO +duv +hQK +mwZ +rbm +sww +rbm +vsr +rbm +pUm +rbm +kkR +vBA +lMU +ptp +ptp +mby +mbx +uoA +pHy +jno +cir +dbe +dXQ +vgz +uju +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +bRA +tzq +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(142,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +ikB +fac +fac +fac +fac +ikB +fac +fac +dUK +qWD +xTU +utW +arW +hwF +gNA +qWD +nKR +fac +fac +fac +fac +fac +fac +fac +fac +tRY +fJT +wqg +jGt +pKl +wUc +mJL +rgk +rYN +nCz +fsq +bnJ +jOn +lgX +ivc +aAk +keT +lgX +pIF +cjZ +cjZ +cjZ +cjZ +kKq +tAr +jHX +xkh +jPG +ocz +xxK +mfj +xhY +hjM +hjM +wFs +bJk +hyO +fsY +bar +fsY +wFs +nCa +khQ +hDH +wqf +nQh +pLE +mlX +jmF +vSS +weT +qlP +qlP +qlP +foq +xDY +bGE +xvK +gRL +ejg +gzc +kCX +lxo +cdV +oBN +oBN +iIw +mlC +ePd +ePd +rGH +hBd +rbm +rbm +rbm +rbm +rbm +rbm +rbm +pex +mtu +cwE +tDG +mug +hTG +oto +nrk +pHy +goV +ajv +dRv +mKR +wxp +pHy +pHy +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +bRn +xuB +fac +fac +fac +xuB +xuB +tzq +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +tzq +tzq +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(143,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +jmr +fac +fac +ewX +ewX +ewX +ikB +ewX +ewX +ewX +ewX +ewX +dUK +ubd +stQ +ubd +ubd +ubd +stQ +ubd +fac +fac +fac +fac +fac +fac +fac +fac +fac +tbm +cOQ +fPO +fqd +pKl +pKl +pKl +asr +opq +uvc +qbc +fPK +kHc +lgX +dgU +nUH +lgX +lgX +alt +kbx +tWZ +kbx +kbx +pHC +vYe +vYe +vYe +vYe +lSv +ocz +tXi +ocz +dsE +hjM +wFs +piP +fJD +dis +mfu +tXB +wFs +egS +wFs +wFs +kmP +nQh +sZq +mfT +lXp +nQh +qlP +qlP +vxo +vxo +foq +sJn +wkB +mAt +fzI +aVz +eSE +dha +ezx +fKs +fKs +fKs +iei +ePd +ePd +xDj +jaD +ejB +bhL +xXe +bPr +oAy +gjN +wXB +gQO +pex +vBA +gcy +odH +odH +xEn +osk +sRc +pHy +qgn +igS +eFl +pJF +wfQ +enO +uju +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +tzq +fac +tzq +xuB +bRn +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +bRn +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(144,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +jmr +ikB +ikB +dUK +dUK +dUK +dUK +dUK +dUK +dUK +dUK +dUK +dUK +ikB +ikB +ikB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tbm +ozX +vhd +ozX +ybv +uhR +pKl +sDM +gct +bPa +ouZ +avp +kiP +lgX +pvR +tAl +lgX +ozX +oKr +ozX +fJT +vYe +vYe +vYe +vYe +aMC +aMC +vYe +vYe +gnX +faW +qsi +ocz +xhY +wFs +wFs +sdu +uor +wFs +loE +loO +jvj +oeN +wFs +qNe +lBU +fqf +oDp +bYl +nQh +gzO +vxo +vxo +vxo +foq +uuh +pzi +vDi +fuj +ajK +dha +dha +nMN +fKs +fKs +fKs +bYd +ePd +bJn +gOl +vDo +ugj +oAt +xXe +xXe +ahB +dAI +ujt +gQO +fNm +hes +deE +vOD +odH +odH +odH +odH +pHy +bIK +wfQ +wfQ +mVS +wfQ +eIc +uju +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +tzq +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(145,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +oEi +fac +fac +ewX +ewX +ewX +ikB +ewX +ewX +ewX +ewX +ewX +ikB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tbm +ecI +wqg +lXa +gjr +jGt +pKl +uOE +xBq +uOE +kLx +uOE +lRp +lgX +rux +gSX +lgX +tfC +mkN +abf +fJT +uqt +pXD +uqt +vYe +aMC +aMC +aMC +vYe +nUb +ocz +mfj +nSu +ocz +qrZ +wFs +dcH +gEg +wFs +gwj +gwj +bRb +rPQ +pjr +tCd +xfN +yir +hUT +klA +tFZ +gzO +vxo +vxo +qlP +foq +asJ +foq +dha +dha +dha +dha +gBf +sHs +sAt +hpS +hpS +xcG +mVE +mVE +mVE +mVE +mVE +khC +xXe +xXe +gBk +tAJ +uXH +hUU +skS +eth +gcy +wpc +uvW +xbJ +jso +odH +pHy +cSE +veq +pHy +dRl +wfQ +xaD +uju +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +tzq +tzq +xuB +fac +fac +fac +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(146,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +ikB +fac +fac +fac +fac +ikB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tbm +ozX +wqg +sqe +dYV +tRY +pKl +pKl +pKl +pKl +pKl +pKl +waM +lgX +lgX +lgX +lgX +brD +oof +sAh +fJT +pXD +pXD +pXD +uGA +aMC +aMC +aMC +vYe +dxO +nUb +mfj +qpE +ocz +xki +die +vLL +jrD +wFs +gwj +bmy +gsF +hnI +pjr +tCd +xfN +yir +hUT +klA +tFZ +gzO +vxo +vxo +qlP +sxm +mFz +rGK +hlh +aMI +fKs +fKs +fKs +sHs +qrD +fKs +ief +mVE +mVE +fPE +xgp +nww +mVE +uco +xXe +bPr +buw +ekq +qKC +bZi +bZi +bZi +jQA +soe +wSM +lhI +qTi +odH +eso +rOU +rvT +veq +acm +dvQ +ayx +uju +fac +fac +fac +fac +fac +fac +fac +rYQ +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +xuB +fac +fac +fac +xuB +tzq +tzq +tzq +tzq +xuB +xuB +fac +fac +fac +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +tzq +bRn +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(147,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +jmr +jmr +oEi +oEi +oEi +ikB +oEi +oEi +oEi +oEi +oEi +ikB +jmr +jmr +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +tbm +lXa +wqg +dIE +dYV +tRY +hcf +sMC +orX +tRY +iyo +gUb +mFV +jGt +tRY +gBy +alt +pcU +dcD +oOy +fJT +pXD +pXD +pXD +oGm +aMC +aMC +aMC +aMC +dxO +dxO +dcU +pza +pza +pza +sDW +gpA +cAd +wFs +agI +wFs +enX +eYd +wFs +tCd +xfN +fyd +dJJ +bTe +tFZ +gzO +vxo +qlP +qlP +rGK +rGK +rGK +vGc +fKs +oEQ +oBN +oBN +mlC +bYd +ief +mVE +mVE +wkn +syM +jqE +cwY +mVE +mVE +mVE +mVE +mVE +wrJ +kKf +kKf +wrJ +xXe +dEd +lxY +inH +uvP +dHo +odH +sYM +jgK +bCc +veq +tsJ +gLf +aii +uju +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +fac +fac +xuB +xuB +fac +fac +xuB +tzq +tzq +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(148,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +laO +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +tzq +fac +fac +tRY +tRY +tRY +wqg +tRY +tRY +sRK +qnb +qDJ +tRY +sAL +eRQ +yhg +kbx +kPC +kbx +rtY +tRY +bnO +tRY +fJT +rnF +rnF +oiX +oGm +aMC +aMC +aMC +aMC +aMC +vYe +vYe +fjN +ocz +ocz +etE +ncW +coA +vVK +kuK +agI +dzV +ffC +wFs +tCd +xfN +fyd +qIE +fyd +tFZ +gzO +qlP +qlP +qlP +rGK +ykP +iJi +nYb +fKs +sHs +fKs +xcR +hPE +rNo +jAa +mVE +voa +xAa +xPI +ekC +nBm +tTK +sfA +qsj +poU +mVE +kKf +kKf +kKf +kKf +xXe +fMC +juP +vWA +bpN +odH +odH +pXA +jgK +wTb +wTb +wTb +wTb +wTb +pHy +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +xuB +xuB +xuB +fac +fac +xuB +fac +fac +xuB +tzq +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(149,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +bRA +tzq +fac +fac +fac +tRY +fFd +wqg +tRY +gzl +cBn +bfZ +qcF +tRY +ikp +ihu +mJb +tRY +tRY +tRY +nlu +tRY +rOj +jGt +fJT +aMC +aMC +aMC +oGm +aMC +aMC +aMC +aMC +aMC +aMC +vHo +fjN +dxO +xAT +gAW +lOp +pza +den +fOg +wFs +aFW +mDC +wFs +soS +lBU +eaO +mlX +eaO +nQh +qlP +qlP +aRN +oCo +xnp +chn +lSW +oBN +oBN +mlC +ief +hPE +hPE +rVD +tsE +mVE +wBQ +hBh +klB +nVg +xWx +uNW +aYh +pYm +fzb +mVE +kKf +kKf +kKf +kKf +xXe +sXX +pMm +nnQ +ygR +odH +dui +ybd +oKz +wTb +civ +fKB +uBd +wTb +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +bRn +xuB +xuB +tzq +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +xuB +tzq +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(150,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +tzq +fac +fac +fac +fac +tRY +tRY +vsJ +tRY +tRY +tRY +qjG +cVJ +bgU +wqg +ozX +ozX +tRY +sjc +duI +pFf +tRY +qSW +gJL +fJT +aMC +aMC +aMC +oGm +aMC +aMC +aMC +aMC +aMC +aMC +vHo +aMC +vYe +vYe +dxO +ocz +xOH +gwG +nGD +bRV +ocz +xOH +xWk +ocz +mkn +ocz +leT +bDG +mkn +fKs +mKM +fKs +fKs +ixG +cWu +leT +fKs +rNb +ief +wVx +hPE +bnZ +gYO +tsE +mVE +wnw +jam +wnw +wnw +mVE +mVE +mVE +mVE +mVE +mVE +wrJ +kKf +kKf +wrJ +xXe +tmU +bZE +sNm +dHo +odH +hsL +rOU +rOU +hCK +guv +yfO +wTb +wTb +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +tzq +xuB +fac +fac +fac +fac +fac +xuB +xuB +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(151,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tbm +wqg +wqg +pHt +tRY +tRY +tRY +tRY +wqg +uBS +tRY +tRY +nHl +ozX +pFf +tRY +tRY +fJT +fJT +qIi +qIi +qIi +nEV +aMC +aMC +aMC +aMC +aMC +aMC +jXM +aMC +aMC +aMC +dxO +dxO +dVi +qzX +esj +gNF +tbj +sDW +wtk +wtk +oBN +wtk +lSW +oBN +oBN +oBN +oBN +oBN +oBN +oBN +atJ +gLt +gLt +gLt +wVx +wVx +scx +bBx +lZN +nld +aDN +qfZ +nxA +iUp +rIU +sco +vrL +tqs +dVb +lCv +xoC +xXe +xXe +xXe +xXe +xXe +nXz +odH +odH +odH +odH +hsL +rOU +hsL +wTb +ghu +vEr +wTb +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +tzq +tzq +tzq +fac +fac +fac +fac +xuB +tzq +tzq +xuB +xuB +tzq +tzq +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +bRn +xuB +fac +fac +fac +fac +fac +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(152,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tbm +tbm +ozX +wqg +mLy +fXT +tRY +lrh +wqg +rXt +tRY +uCN +ltH +hnV +pSU +jtq +lhP +fJT +aMC +aMC +aMC +aMC +oGm +aMC +aMC +gqg +aMC +aMC +aMC +hkj +vQg +vQg +vQg +nCr +raA +hfV +raA +aLL +blQ +pLA +lnQ +qpE +ocz +pUJ +ocz +qoM +fKs +oSy +fKs +fKs +oxu +fKs +vlI +fmm +tuZ +rTp +jVm +pQQ +nrn +xHx +oHG +wZj +stk +xmh +uZH +ihZ +nYC +wBw +lpQ +vrL +uko +gVZ +qKx +xoC +lYr +gik +bGp +nSj +iOt +vZR +gby +pBy +rfY +hsL +lhy +rOU +ocB +wTb +wTb +wTb +wTb +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +tzq +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +fac +fac +fac +fac +tzq +bRn +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(153,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +rYQ +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tbm +gMr +wqg +jGt +tRY +tRY +xJu +wqg +jGt +tRY +iUI +jXI +iBs +coi +tRY +fJT +fJT +aMC +aMC +aMC +aMC +oGm +rTe +rTe +aMC +rTe +rTe +aMC +oar +vSW +vSW +vSW +tKr +hfV +eVX +yfT +nKB +cSw +xIj +pka +fpA +dEW +nVQ +bwM +qoM +tNY +wmu +ihS +cgQ +mim +jFk +unr +dlY +kML +jKu +rQj +iLv +ccK +apP +lat +rfs +uTW +nPt +noM +viz +dSj +vRq +lsp +kMD +wZl +icX +tpK +xoC +njh +sGa +bGp +nSj +hZC +qWb +gby +uJS +hFO +hsL +cJs +rOU +hSp +hsL +bVk +gby +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +xuB +xuB +xuB +tzq +fac +fac +fac +xuB +tzq +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(154,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tRY +tRY +wqg +wqg +vsJ +wqg +wqg +wqg +tRY +tRY +ugb +edi +iuN +xGj +roZ +fJT +aMC +aMC +aMC +aMC +aMC +ibn +wbh +wbh +sFW +wbh +wbh +aMC +oar +vSW +vSW +jYs +mpW +mXy +xmp +qxQ +nKB +ngZ +xIj +xIj +pHz +pHz +pHz +xum +tDb +xum +wVx +wVx +wVx +wVx +fiw +qAy +bol +lSE +czQ +lRG +wVx +wVx +itd +qrK +nPJ +lLC +eCE +lFV +ixY +gUU +eJb +iMT +xoC +jVE +wqr +nmg +xoC +vSJ +hou +bGp +mZD +vFl +qWb +gby +gby +vXU +vXU +daV +rOU +gby +gby +gby +gby +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +tzq +xuB +xuB +xuB +tzq +tzq +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +tzq +xuB +tzq +fac +fac +fac +fac +xuB +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(155,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +dNm +tRY +tRY +tRY +tRY +phL +ozX +bIr +tRY +cGS +dKn +nKZ +gfh +bND +lXa +fJT +aMC +aMC +aMC +aMC +vwQ +wbh +wbh +vnN +ebx +nzN +ndb +ndb +nag +vSW +vSW +wAJ +mpW +nZi +xVW +bWH +nKB +pki +neM +xoT +pHz +cqO +cqO +uCb +nKn +xlZ +nSY +sGL +sGL +nVe +iEp +vHr +dRH +lmI +vHr +jln +jJi +wVx +hHr +guH +aSu +kYb +eCE +qyz +wFm +rUF +cxu +pHo +pAW +hmw +fCs +iUK +xoC +kfH +wJE +nOM +vfp +vfp +uty +uty +vhZ +rOU +rOU +rOU +rOU +ilW +lSL +xzO +kAX +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +tzq +fac +fac +fac +tzq +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +fac +fac +fac +fac +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(156,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +kAX +ddX +uZV +pZt +gUb +jtO +ozX +svJ +tRY +uaX +qTy +xCj +eSl +lXP +dap +fJT +aMC +aMC +aMC +aMC +vwQ +wbh +wkY +gAR +gEK +nTQ +kWL +wbh +xWG +vSW +vSW +sPu +nWL +jjo +avD +gCE +nKB +ngZ +jbs +lKt +pHz +cqO +cqO +rcS +mFu +xlZ +nSY +sGL +sGL +uki +vFC +tGH +dqV +khL +agQ +aks +uRp +lhp +wAg +pYh +tRv +fCW +oox +lQk +uXR +mCK +jrH +nok +qrB +uko +gVZ +qKx +xoC +wNZ +dzj +bGp +heQ +mmP +gxL +gxL +gby +rWD +ybd +xAe +oYR +gby +gby +gby +dNm +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(157,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +dNm +tRY +tRY +tRY +xpm +fmd +hPV +pNi +pNi +pNi +spb +pNi +tRY +lSJ +tRY +fJT +aMC +aMC +aMC +aMC +aMC +sFW +jTd +vWu +sem +uFZ +xOu +sFW +vSW +vSW +vSW +ipY +wYx +iaq +pvh +gKc +nKB +iFg +dEM +dEM +dEM +vZM +dEM +wjw +iXW +xlZ +nSY +sGL +sGL +mlW +lbF +wxt +gTQ +wxt +aoe +sDc +wPe +ibV +eCg +itW +lHD +cYI +cYI +iwC +whH +dvo +dsX +eSF +qrB +eet +sAf +rww +xoC +nya +vrf +bGp +ePD +tQY +tQY +tQY +tQY +tQY +pXA +ybd +kpR +gby +gby +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(158,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +rYQ +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +tRY +tRY +kHX +qhF +pNi +cGH +bNc +iDO +pNi +ofE +tek +rSq +fJT +aMC +aMC +aMC +aMC +vwQ +wbh +sey +vBD +kSm +opN +cdi +wbh +ing +vSW +vSW +vHG +eQi +raA +raA +raA +nKB +jXb +lTk +ulY +djl +prx +mBj +xML +ldC +azZ +wVx +nrn +nrn +wVx +olc +cAG +wxt +aQw +eIA +wxt +wNL +nrn +rIU +gZG +cAZ +tsE +tsE +fjL +kVp +lxv +rrl +cLF +mGT +mGT +mGT +mGT +mGT +mGT +mGT +mGT +ngu +tQY +rKh +xPB +cWo +tQY +oxi +fXg +gby +gby +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(159,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +bRn +tzq +fac +fac +fac +fac +fac +xuB +xuB +tzq +fac +fac +fac +tzq +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +tzq +bRn +xuB +tRY +ylD +qAW +pNi +cGH +bNc +tzT +pNi +oPz +pZs +fnP +fJT +qIi +qIi +qIi +qIi +mIa +ndb +ndb +rxU +bCE +eHT +wbh +wbh +vqc +qIi +qIi +nKB +nKB +nKB +aMU +qzY +iYN +tbc +dEM +pNr +kNm +deV +mBj +xlZ +xlZ +xlZ +gIs +rqN +wVH +xpQ +xpQ +sYl +dsU +sSz +sUp +mWM +xcb +qsn +xtt +qsn +azK +tsE +tsE +cnJ +pJP +lhD +unC +eTh +fwB +riL +mkC +bmV +sNo +bCt +azV +mGT +aKB +tQY +qQJ +xPB +cWo +tQY +laE +vFd +xdj +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(160,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +xuB +xuB +xuB +fac +fac +fac +xuB +xuB +xuB +bRn +tzq +xuB +tzq +tzq +fac +fac +fac +fac +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +tRY +tRY +uNF +pNi +cGH +bNc +sJC +pNi +quD +cKA +bNf +fJT +aMC +aMC +aMC +aMC +aMC +ncX +wbh +wbh +sFW +wbh +wbh +aMC +aMC +aMC +aMC +nKB +efi +mAx +jaO +lOV +gfz +aCn +dEM +fOU +fTF +dCr +rAx +kVW +beU +tLz +xpQ +wtS +rqN +rqN +xpQ +xpQ +qsn +xtt +anY +wau +qsn +ooR +dde +bwK +eOW +oiN +oiN +ruy +pTw +lxv +hsc +tMp +mPO +qDl +dyp +hOY +qcM +bdY +otT +mGT +aKB +lEC +dDd +xPB +cWo +tQY +hsJ +xdj +xdj +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +tzq +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(161,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +bRn +xuB +xuB +tzq +fac +fac +fac +fac +fac +tzq +bRn +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +bRn +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +bRA +tRY +tRY +pNi +pNi +pNi +pNi +pNi +tRY +tRY +tRY +fJT +aMC +aMC +aMC +aMC +aMC +hRG +koR +koR +aMC +koR +dQz +aMC +aMC +aMC +aMC +nKB +igd +kFb +mXV +jaO +mkz +oGy +dEM +gDp +vDr +vLh +mBj +xlZ +xlZ +xlZ +gIs +rqN +wVH +wVH +wVH +wVH +gIs +brH +jzB +jFp +wnl +aTV +oqw +kmd +eOW +nnz +jZl +mut +kTg +waB +uOw +kUz +mPO +iKn +fGB +xqz +mGT +mGT +mGT +mGT +vqG +tQY +tQY +tQY +tQY +tQY +xdj +xdj +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +tzq +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +fac +fac +fac +fac +tzq +bRn +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(162,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +tzq +xuB +tRY +tRY +agM +eJn +pMH +auu +sku +lsM +agM +vYe +aMC +rTe +rTe +rTe +aMC +hRG +aMC +aMC +aMC +aMC +oGm +aMC +aMC +aMC +aMC +nKB +xIj +xIj +xIj +xIj +nUq +iSq +dEM +vGe +uhN +fmL +aSS +cnF +xlZ +xlZ +gIs +rqN +wVH +wVH +wVH +wVH +gIs +glR +vFc +olG +ruo +tdx +iBb +fXw +lsA +oiN +oiN +kvo +rwN +huq +huq +huq +mGT +mGT +mGT +mGT +mGT +huE +aKB +msy +hWc +lIJ +weN +tMH +bXW +gby +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +rYQ +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +bRn +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +tzq +tzq +tzq +rQT +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(163,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +bRn +xuB +xuB +tRY +yaa +bbg +dqq +dqq +kpd +azO +hBi +ppm +iSW +vFS +cja +cvG +ygp +uGq +qIi +qIi +qIi +qIi +nEV +qIi +qIi +ldn +qIi +nKB +kqU +nXV +hnp +xIj +wBt +iSq +dEM +lKw +sjX +jUA +gil +cnF +xlZ +xlZ +gIs +rqN +wVH +wVH +wVH +wVH +gIs +gcA +jzB +cDt +oqO +hJN +nOs +kxC +wgx +vSB +hAI +mDl +huq +huq +rIg +lej +uov +ybn +kpv +iNT +rSU +uzb +ybd +sdz +ues +uCd +gKL +tMH +gby +gby +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +tzq +tzq +tzq +fac +fac +fac +fac +fac +tzq +xuB +tzq +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +tzq +bRn +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(164,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +bRn +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +fac +fac +fac +lJK +bbg +vIB +vIB +pML +bbg +ppm +ppm +ppm +hbb +hAE +pdq +dbO +aMC +aMC +aMC +aMC +aMC +gpM +aZd +aZd +gpM +ttr +nKB +mbm +mAf +vdZ +xIj +gfz +iSq +dEM +awS +vAh +jrk +pjU +cnF +xlZ +xlZ +gIs +rqN +wVH +wVH +wVH +wVH +gIs +bAk +obs +wsY +kQx +whh +gYo +qsn +uov +ire +uov +uov +uov +oJu +cLK +xkb +uov +bjC +rdY +fIH +rSU +ybd +cnK +gby +oqd +adH +oWD +nhk +gby +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +tzq +tzq +tzq +tzq +tzq +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(165,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +ikB +azO +vIB +vIB +aok +vcM +oYo +djM +btR +cDo +xAx +dJH +dbO +aMC +aMC +aMC +aMC +aMC +gpM +aZd +aZd +gpM +aZd +nKB +nKB +xIj +hPA +xIj +iFR +fyn +dEM +dEM +qkz +orS +mBj +xlZ +xlZ +xlZ +gIs +rqN +wVH +wVH +wVH +wVH +qsn +pzV +qsn +qsn +gIs +gIs +oHu +qsn +jyq +irc +irc +dpd +irc +sTU +wyv +wSP +uov +bYs +nqi +bYs +rSU +ybd +kpR +gby +tZv +qcJ +wXZ +rSU +rSU +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +bRn +tzq +tzq +tzq +tzq +bRA +tzq +bRn +xuB +xuB +xuB +xuB +xuB +tzq +xuB +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(166,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +ikB +azO +dqq +vIB +vIB +bbg +nQM +cBM +cBM +ycT +beN +pQq +sHn +rTe +aMC +aMC +aMC +aMC +gpM +aZd +aZd +gpM +aZd +nKB +ihH +rrc +jaO +hwJ +ngZ +jSh +klu +dEM +mBj +mBj +dEM +wMu +hNx +oDv +xpQ +gIs +gIs +gIs +gIs +xpQ +xpQ +rdY +hmd +rxf +uov +hWt +cdH +hPx +cPQ +cPQ +cPQ +qwL +qwL +xBr +uIv +uov +uov +wcO +rdY +rdY +rSU +xdj +gby +gby +icG +sWh +rSU +rSU +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +fac +fac +fac +fac +tzq +tzq +xuB +tzq +tzq +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(167,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +agM +azO +aok +vIB +vIB +bbg +rFG +ppm +lTV +ujn +vzE +cSd +moF +moF +uAF +qMo +qMo +qMo +qob +aZd +aZd +qob +qMo +nKB +nKB +nKB +nKB +nKB +iXC +nmG +xIj +qww +xTS +tbr +esc +cNF +cNF +cNF +cNF +rYy +gXH +bAX +pJw +qww +wHP +djh +fTU +fTU +kJi +rwZ +xDe +tmi +drN +drN +drN +drN +sgF +xFa +vzF +uov +rdY +rdY +one +rdY +rSU +hHg +rSU +hZt +dSt +rSU +rSU +tzq +bRn +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +xuB +tzq +tzq +xuB +tzq +fac +fac +fac +fac +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(168,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +bRn +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +ikB +azO +vIB +vIB +vIB +bbg +qeg +moF +moF +gpZ +moF +cSd +tfq +moF +moF +kOd +aZd +aZd +kKt +qMo +qMo +xHW +aZd +aZd +aZd +aZd +sip +nKB +pUj +xBF +oim +gSs +cKF +cNF +cNF +mVp +iMU +mVp +xId +dXv +cNF +cNF +cNF +mvf +fTU +fTU +fTU +uov +uov +hay +aNK +drN +eOc +eOc +eOc +eOc +drN +iHq +tGL +uov +xvD +mYL +rSU +gKF +rSU +hZt +rUL +hZt +rSU +rSU +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(169,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +fac +fac +xuB +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +ikB +bbg +pML +aok +vIB +bbg +xbZ +vjX +nKD +onl +npq +dTz +btn +cEn +moF +kOd +aZd +aZd +aZd +aZd +npX +aZd +aZd +aZd +aZd +aZd +aUb +aUb +dda +aUb +aUb +wqu +xId +fGe +tQE +uhn +uhn +uhn +uXb +tfh +tfh +tvE +lIm +qww +qww +wAc +iZd +uov +vDE +tOw +doz +drN +eOc +eOc +eOc +eOc +drN +pzI +yeB +uov +rSU +rSU +rSU +hZt +tyC +cFW +rSU +rSU +rSU +bRA +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +tzq +bRn +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(170,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +xuB +fac +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +yaa +azO +vIB +veJ +okb +bbg +moF +kYG +moF +onl +xyh +iXH +bfX +umG +moF +kOd +aZd +aZd +aZd +aZd +aZd +aZd +aZd +aZd +aZd +aZd +aUb +wUj +cqQ +dbw +woZ +hDj +xId +rfk +cHr +kgP +kgP +kgP +oyX +eUK +tpP +uZk +wLQ +vAB +qww +uSM +cAc +uov +kzr +vsv +aNK +drN +eOc +eOc +eOc +eOc +peH +hVm +uov +uov +pzN +xIB +rdY +hZt +wEs +rxf +rSU +rSU +xuB +xuB +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +rYQ +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(171,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xig +bRn +xuB +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +bRn +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +lJK +azO +dqq +dqq +kpd +bbg +vyN +cSd +cSd +gnB +ajl +fvP +xIb +moF +moF +kOd +aZd +aZd +aZd +aZd +aZd +aZd +aZd +aZd +aZd +aZd +woZ +iJr +cqQ +wVs +sMQ +hDj +xId +fXz +cHr +kgP +kgP +kgP +oMJ +dtA +dtA +jMF +gKQ +dHf +qww +qww +rdY +uov +kbJ +kwT +xDe +drN +eOc +eOc +eOc +uov +uov +aUr +uov +rdY +rdY +hZt +jqG +ofY +rSU +rSU +rSU +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(172,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +tzq +tzq +fac +fac +fac +fac +agM +azO +sku +pMH +pMH +azO +agM +fac +cSd +cSd +cSd +cSd +bOh +moF +aZd +aZd +aZd +aZd +aZd +aZd +aZd +aZd +aZd +aZd +aZd +aZd +woZ +rfc +hgR +fUZ +xAN +nxf +lmZ +mCl +gRj +fwe +wWT +fwe +ecZ +pks +jQk +oUx +xuK +khB +xpu +qww +rdY +uov +piA +ceZ +sKh +drN +eOc +eOc +eOc +uov +gOx +uSz +tTL +rdY +rdY +rdY +xlg +xlg +rSU +tzq +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +bRn +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(173,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +tzq +tzq +fac +fac +fac +fac +xuB +xuB +xuB +fac +fac +fac +fac +fac +bbg +fac +fac +fac +bbg +fac +fac +fac +fac +fac +cSd +cSd +cSd +aZd +aZd +aZd +aZd +aZd +aZd +aZd +aZd +aZd +aZd +aZd +aZd +woZ +dPs +fMR +lHd +aUb +aUb +uDG +wnf +xId +wEW +ier +tfh +phO +tci +tci +mSq +vOe +lgn +tJW +qww +rdY +uov +uov +uov +uov +uov +uov +uov +uov +uov +czd +mtT +rxf +rSU +xlg +xlg +xlg +bRn +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +tzq +tzq +xuB +tzq +tzq +fac +fac +fac +fac +xuB +xuB +xuB +fac +fac +fac +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(174,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +tzq +xuB +fac +fac +fac +fac +fac +fac +ikB +fac +fac +fac +ikB +fac +fac +fac +fac +fac +fac +xuB +ttr +ttr +ttr +aZd +aZd +aZd +aZd +aZd +aZd +aZd +aZd +aZd +aZd +aUb +rhE +gho +tVW +hPR +daS +qAz +hII +xId +dtA +fht +irv +lZf +hOh +dbo +oUx +rZh +uTs +elo +qww +rdY +gKF +uuF +iZd +qcJ +qcJ +qcJ +pcf +wXZ +qYj +fcd +rSU +rSU +rSU +xuB +bRA +tzq +tzq +xuB +tzq +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +bRn +tzq +tzq +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +tzq +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(175,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +bRA +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +rYQ +fac +fac +ikB +fac +fac +fac +ikB +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +ttr +ttr +ttr +aZd +aZd +aZd +aZd +aZd +woZ +woZ +woZ +aUb +jzE +pMn +nVj +xhS +apz +jfW +hDj +xId +wzK +nEK +qOF +gfd +nny +uhz +oUx +tAM +orP +rgj +qww +qww +rSU +uSz +wAc +irj +sax +bnx +ryK +wXZ +rSU +rSU +rSU +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(176,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +tzq +xuB +bRn +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +kNx +fac +fac +fac +kNx +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +ttr +ttr +ttr +ttr +aZd +aZd +woZ +rQA +aDI +dLE +aDI +aEF +qyK +baU +mqr +qAz +hDj +xId +avq +tci +wIp +mjV +tfh +tfh +qgr +xId +xId +dXc +yiq +qww +vBn +edb +vfO +vfO +rSU +xlg +xlg +rSU +rSU +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +rYQ +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(177,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +xuB +xuB +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +ikB +fac +fac +fac +ikB +fac +fac +fac +fac +fac +fac +fac +xuB +bRn +tzq +xuB +xuB +xuB +xuB +ttr +ttr +ttr +aUb +njS +bfd +woZ +gnr +aYB +gnw +iCn +rsC +qAz +aQd +tbE +sOP +lZf +xfl +tbE +aQd +sQj +aQd +tbE +xId +fGe +gGO +emv +gOx +sCc +rSU +rSU +rSU +bRn +tzq +xuB +xuB +bRn +tzq +xuB +fac +fac +fac +tzq +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +bRn +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(178,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +bRn +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +aUb +aUb +aUb +aUb +eGe +koa +wWy +woZ +euL +qAz +tAZ +sQj +oWh +tHK +dFw +sQj +tAZ +sQj +tAZ +sQj +oDg +ufC +ofG +qww +xlg +xlg +rSU +xuB +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(179,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +tzq +fac +fac +fac +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +aUb +woZ +woZ +woZ +eDT +aEE +qAz +dXK +gOP +tWw +tWw +tWw +gOP +dXK +sQj +dXK +gOP +qww +qww +qww +qww +fac +fac +ikB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(180,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +fac +fac +fac +fac +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +tzq +tzq +xuB +xuB +tzq +wDS +ikB +ikB +dNm +fac +fac +fac +iCn +goD +qAz +tjJ +tbE +fac +fac +fac +tbE +tjJ +sQj +tjJ +tbE +fac +fac +fac +dNm +ikB +ikB +dNm +ikB +ikB +ikB +ikB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(181,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +rYQ +fac +fac +fac +xuB +xuB +xuB +tzq +xuB +xuB +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +jjT +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +rYQ +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(182,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +tzq +tzq +tzq +tzq +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(183,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +fac +tzq +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +bRn +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(184,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(185,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(186,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +laO +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +tzq +tzq +bRn +tzq +fac +fac +fac +fac +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(187,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +xuB +xuB +tzq +xuB +tzq +fac +fac +fac +fac +fac +fac +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(188,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +bRn +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(189,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +xig +tzq +tzq +tzq +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +tzq +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(190,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +tzq +xuB +xuB +xuB +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +xuB +xuB +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(191,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +bRn +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(192,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(193,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +tzq +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +tzq +tzq +bRn +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(194,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +rQT +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +bRn +tzq +fac +fac +fac +fac +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(195,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +tzq +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +tzq +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +bRn +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +bRn +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(196,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +bRn +tzq +tzq +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(197,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +bRn +xuB +xuB +xuB +xuB +tzq +tzq +tzq +rQT +tzq +fac +fac +fac +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(198,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +jes +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +bRn +xuB +xuB +xuB +bRn +tzq +tzq +tzq +fac +fac +fac +tzq +xuB +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(199,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +bRn +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +tzq +fac +fac +fac +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(200,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +xuB +tzq +tzq +fac +fac +fac +tzq +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +bRn +xuB +xuB +xuB +fac +fac +fac +tzq +bRn +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(201,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +tzq +bRn +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(202,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(203,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +tzq +xuB +tzq +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +rYQ +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +bRn +tzq +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(204,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +fac +tzq +xuB +xuB +xuB +xuB +xuB +bRn +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +rYQ +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +tzq +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(205,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +tzq +bRn +xuB +xuB +tzq +tzq +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +bRn +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +tzq +xuB +rQT +tzq +bRn +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(206,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +tzq +bRn +tzq +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(207,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +bRn +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +fac +fac +fac +xuB +fac +fac +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +tzq +tzq +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +bRn +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(208,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +tzq +tzq +tzq +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +fac +fac +fac +fac +tzq +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(209,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +fac +fac +fac +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +bRn +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(210,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(211,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +bRn +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +fac +fac +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +"} +(212,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +tzq +fac +xuB +fac +fac +fac +fac +fac +tzq +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +bRn +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(213,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +bRn +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +tzq +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(214,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +tzq +tzq +bRn +tzq +xuB +xuB +xuB +xuB +xuB +tzq +tzq +tzq +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +"} +(215,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +bRA +bRn +tzq +fac +fac +fac +fac +fac +fac +fac +tzq +fac +fac +fac +fac +fac +fac +fac +fac +"} +(216,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +bRn +tzq +tzq +fac +fac +fac +fac +fac +fac +tzq +xuB +fac +fac +fac +fac +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +fac +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(217,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +bRA +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(218,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +bRA +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +bRn +tzq +tzq +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +bRA +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(219,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +tzq +fac +fac +tzq +tzq +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +xuB +bRn +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +tzq +tzq +tzq +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +bRn +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +bRA +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(220,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +tzq +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +tzq +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +rQT +tzq +tzq +bRn +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +bRn +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(221,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +xuB +xuB +bRn +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +oui +bRn +tzq +tzq +fac +fac +tzq +bRA +xuB +xuB +xuB +xuB +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(222,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +tzq +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +tzq +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +tzq +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(223,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +tzq +xuB +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +tzq +bRn +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +xuB +fac +fac +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(224,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +tzq +tzq +xuB +xuB +xuB +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +bRn +fac +fac +fac +xuB +fac +fac +fac +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(225,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +tzq +tzq +xuB +xuB +xuB +tzq +oui +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(226,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +fac +fac +fac +xuB +tzq +tzq +bRn +xuB +xuB +xuB +xuB +fac +fac +tzq +tzq +xuB +xuB +xuB +tzq +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +tzq +fac +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(227,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +bRn +fac +fac +fac +fac +fac +fac +tzq +tzq +xuB +xuB +fac +fac +fac +tzq +tzq +xuB +xuB +xuB +tzq +tzq +fac +fac +fac +fac +fac +tzq +tzq +tzq +oui +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(228,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +bRn +xuB +xuB +xuB +tzq +tzq +fac +fac +fac +fac +oui +tzq +bRn +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(229,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +bRn +tzq +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(230,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +tzq +fac +fac +fac +fac +fac +fac +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +tzq +rQT +fac +fac +fac +tzq +xuB +xuB +xuB +xuB +xuB +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(231,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +fac +fac +fac +tzq +tzq +tzq +tzq +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +bRn +tzq +bRA +bRn +tzq +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(232,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +tzq +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +tzq +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +fac +fac +fac +tzq +xuB +xuB +bRA +tzq +tzq +tzq +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(233,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +tzq +fac +fac +tzq +xuB +xuB +tzq +bRn +tzq +fac +fac +fac +fac +fac +fac +xuB +bRn +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(234,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +tzq +tzq +bRn +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(235,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(236,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +bRn +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(237,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(238,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +bRn +bRA +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(239,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +xuB +xuB +xuB +xuB +tzq +tzq +tzq +fac +fac +fac +fac +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(240,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +xuB +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +bRn +xuB +xuB +xuB +xuB +xuB +tzq +fac +fac +fac +fac +fac +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(241,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +bRn +xuB +xuB +xuB +xuB +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(242,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +tzq +tzq +tzq +tzq +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(243,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(244,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(245,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(246,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(247,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(248,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(249,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(250,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(251,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(252,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(253,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(254,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} +(255,1,2) = {" +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +fac +"} diff --git a/_maps/map_files/Voidraptor/VoidRaptor.dmm b/_maps/map_files/Voidraptor/VoidRaptor.dmm new file mode 100644 index 00000000000000..c27d8d4d20dffe --- /dev/null +++ b/_maps/map_files/Voidraptor/VoidRaptor.dmm @@ -0,0 +1,152413 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aaa" = ( +/obj/structure/table, +/obj/structure/sign/poster/official/obey/directional/east, +/obj/item/storage/medkit/emergency{ + pixel_y = 4 + }, +/obj/effect/turf_decal/siding/red{ + dir = 8 + }, +/turf/open/floor/iron/large, +/area/station/hallway/primary/fore) +"aal" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"aau" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/storage_shared) +"aaA" = ( +/obj/structure/bookcase/random/reference, +/obj/machinery/light/warm/directional/north, +/turf/open/floor/wood, +/area/station/security/prison/garden) +"aaD" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/primary/central/aft) +"aaH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/turf/open/floor/plating, +/area/station/engineering/supermatter) +"aaV" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/telecomms/processor/preset_one, +/turf/open/floor/circuit/telecomms/server, +/area/station/tcommsat/server) +"aaY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/diagonal, +/area/station/hallway/secondary/service) +"abt" = ( +/obj/machinery/shower/directional/west, +/obj/structure/drain, +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron/freezer, +/area/station/commons/dorms/laundry) +"abw" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/medical/storage) +"abC" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/security/prison/work) +"abF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/central) +"abG" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/landmark/start/scientist, +/turf/open/floor/iron/white/textured_large, +/area/station/science/lab) +"abN" = ( +/obj/machinery/button/door/directional/north{ + id = "lawyerprivacy"; + name = "Lawyer's Privacy Control" + }, +/obj/item/radio/intercom/directional/north{ + pixel_y = 32 + }, +/obj/structure/table/wood, +/obj/machinery/fax{ + fax_name = "Law Office"; + name = "Law Office Fax Machine"; + pixel_y = 3 + }, +/obj/item/storage/briefcase{ + pixel_x = -3; + pixel_y = -12 + }, +/obj/item/storage/briefcase/secure{ + pixel_x = 2; + pixel_y = -15 + }, +/turf/open/floor/iron/grimy, +/area/station/service/lawoffice) +"abP" = ( +/obj/effect/spawner/random/medical/two_percent_xeno_egg_spawner, +/turf/open/floor/circuit/green, +/area/station/science/xenobiology) +"abQ" = ( +/turf/closed/wall, +/area/station/medical/medbay/central) +"ace" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"acx" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"acJ" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/light_switch/directional/south, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8; + name = "External Waste Ports to Filter" + }, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/atmos/storage) +"acN" = ( +/turf/closed/wall, +/area/station/security/range) +"acO" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison/work) +"acQ" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/structure/closet/toolcloset, +/obj/effect/turf_decal/bot, +/obj/item/clothing/glasses/meson/engine, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 8 + }, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/main) +"acT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/dark/corner, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"acW" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/machinery/duct, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/medical/treatment_center) +"ade" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/pod/dark, +/area/station/service/chapel/funeral) +"adh" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/textured_corner, +/area/station/medical/surgery) +"ads" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/effect/turf_decal/trimline/dark_red/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"adx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/machinery/meter, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"ady" = ( +/obj/structure/table, +/obj/item/storage/medkit/toxin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/medkit/toxin, +/obj/item/storage/medkit/regular{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/sign/poster/official/moth_epi/directional/west, +/obj/machinery/door/window/left/directional/east{ + name = "Medkit Storage"; + req_access = list("medical") + }, +/obj/effect/turf_decal/trimline/dark_green/filled, +/obj/effect/turf_decal/trimline/dark_green/filled/mid_joiner, +/obj/effect/turf_decal/trimline/dark_green/filled/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_green/filled/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_green/filled/mid_joiner{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/storage) +"adY" = ( +/obj/structure/table/wood/fancy, +/obj/machinery/light/warm/directional/north, +/obj/item/storage/bag/books, +/obj/machinery/door/window/right/directional/south{ + name = "Secure Art Exhibition"; + req_access = list("library") + }, +/turf/open/floor/carpet, +/area/station/service/library) +"aef" = ( +/obj/item/seeds/coffee{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/seeds/coffee/robusta{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/item/seeds/coffee{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/storage/box/drinkingglasses{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/storage/pill_bottle/happinesspsych{ + pixel_x = -4; + pixel_y = -1 + }, +/obj/item/seeds/coffee{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/structure/table{ + name = "Jim Norton's Quebecois Coffee table" + }, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/wood, +/area/station/hallway/secondary/entry) +"aeg" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/medical/medbay/central) +"aei" = ( +/turf/closed/wall, +/area/station/maintenance/eva_shed/starboard) +"aez" = ( +/obj/structure/chair/stool/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"aeH" = ( +/obj/structure/chair/sofa/corp/right{ + color = "#DE3A3A"; + dir = 4 + }, +/obj/structure/window/spawner/directional/west, +/turf/open/floor/iron/cafeteria, +/area/station/service/cafeteria) +"aeL" = ( +/obj/machinery/status_display/evac, +/turf/closed/wall/r_wall, +/area/station/ai_monitored/turret_protected/ai) +"aeN" = ( +/turf/closed/wall, +/area/station/commons/fitness/recreation) +"aeP" = ( +/obj/machinery/door/airlock/grunge{ + name = "Crematorium" + }, +/obj/effect/mapping_helpers/airlock/access/all/service/crematorium, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/pod/dark, +/area/station/service/chapel/office) +"aeU" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/table, +/obj/item/experi_scanner{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/experi_scanner{ + pixel_x = -4; + pixel_y = 5 + }, +/turf/open/floor/iron/white, +/area/station/science/research) +"afb" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"afj" = ( +/obj/effect/turf_decal/tile/red/diagonal_centre, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/office) +"aft" = ( +/obj/effect/landmark/start/chaplain, +/turf/open/floor/carpet/stellar, +/area/station/service/chapel) +"afy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/supermatter/room) +"afz" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/primary/central/aft) +"afD" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/pod/dark, +/area/station/service/chapel/funeral) +"afO" = ( +/turf/open/floor/iron/chapel{ + dir = 5 + }, +/area/station/service/chapel) +"aga" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/item/radio/intercom/directional/south, +/obj/structure/closet/crate/trashcart/laundry, +/obj/structure/bedsheetbin, +/turf/open/floor/iron/kitchen{ + dir = 1 + }, +/area/station/commons/dorms/laundry) +"agi" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light/warm/directional/south, +/obj/machinery/shower{ + pixel_y = -16; + dir = 1 + }, +/obj/effect/turf_decal/stripes/box, +/obj/effect/turf_decal/siding/thinplating/dark/end{ + dir = 1 + }, +/obj/structure/drain, +/turf/open/floor/iron/checker, +/area/station/science/xenobiology) +"agm" = ( +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos/pumproom) +"agn" = ( +/obj/structure/flora/tree/jungle, +/turf/open/floor/grass, +/area/station/hallway/primary/central) +"agB" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/sign/flag/terragov/directional/north, +/turf/open/floor/iron/airless{ + icon_state = "dark_large" + }, +/area/space/nearstation) +"agC" = ( +/turf/closed/wall, +/area/station/security/prison/garden) +"agF" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "garbage" + }, +/obj/effect/turf_decal/bot, +/obj/machinery/door/window/right/directional/north{ + name = "Danger: Conveyor Access"; + req_access = list("maint_tunnels") + }, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/disposal) +"agG" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/visible{ + dir = 10 + }, +/turf/open/floor/pod, +/area/station/service/chapel/funeral) +"agH" = ( +/turf/closed/wall/r_wall, +/area/station/hallway/secondary/exit/departure_lounge) +"agQ" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/security/office) +"agV" = ( +/obj/structure/chair/stool/directional/west, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/theater) +"agW" = ( +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/aft) +"agX" = ( +/obj/machinery/plumbing/ooze_sucker{ + mapping_id = "1"; + dir = 1 + }, +/obj/machinery/light/floor/has_bulb, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"aha" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 6 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/office) +"ahd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/obj/effect/spawner/random/maintenance/four, +/obj/effect/spawner/random/entertainment/money, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/medical) +"ahe" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/item/kirbyplants/photosynthetic, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/ai_upload) +"ahi" = ( +/obj/machinery/ammo_workbench, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/item/radio/intercom/directional/east, +/obj/item/stack/sheet/iron/fifty, +/turf/open/floor/iron/dark/textured, +/area/station/security/range) +"ahv" = ( +/obj/structure/chair{ + name = "Prosecution" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/security/courtroom) +"ahw" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/station/engineering/atmos) +"ahz" = ( +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 5 + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) +"ahP" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/machinery/camera/directional/west{ + dir = 10 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/break_room) +"ahU" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 10 + }, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation/entertainment) +"aic" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/construction/mining/aux_base) +"aij" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/bot, +/obj/structure/table, +/obj/item/folder/white{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = 5; + pixel_y = 4 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/science/auxlab) +"ail" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/storage) +"aiq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/bar) +"air" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating/airless, +/area/station/science/auxlab) +"aiw" = ( +/obj/structure/chair/office{ + color = "#B11111"; + dir = 1 + }, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/turf_decal/tile/dark_red/half, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"aiA" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Departures Maintenance" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/unres, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/lesser) +"aiL" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 10 + }, +/obj/item/banner/cargo/mundane, +/turf/open/floor/iron/textured, +/area/station/cargo/lobby) +"aiS" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/break_room) +"aiT" = ( +/obj/machinery/computer/bank_machine, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/station/ai_monitored/command/nuke_storage) +"aiU" = ( +/obj/effect/turf_decal/bot_red, +/obj/structure/sign/warning/hot_temp/directional/north, +/obj/structure/bodycontainer/crematorium{ + dir = 4; + id = "crematoriumSecurity" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/office) +"ajb" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 6 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/storage) +"ajg" = ( +/turf/open/floor/carpet, +/area/station/security/detectives_office) +"ajm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/commons/fitness/recreation/entertainment) +"ajx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/station/commons/dorms) +"ajy" = ( +/turf/open/floor/wood/large, +/area/station/commons/fitness/recreation/entertainment) +"ajz" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/science/robotics/lab) +"ajK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ + dir = 8 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"ajL" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/lesser) +"ajP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/science/xenobiology) +"ajT" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/medical/medbay/lobby) +"ajZ" = ( +/obj/machinery/power/solar{ + id = "aftport"; + name = "Aft-Port Solar Array" + }, +/obj/structure/cable, +/turf/open/floor/iron/solarpanel/airless, +/area/station/solars/starboard/fore) +"aka" = ( +/obj/machinery/corral_corner{ + mapping_id = "3" + }, +/obj/machinery/light/neon_lining{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"akb" = ( +/obj/machinery/light/floor/has_bulb, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/textured_corner{ + dir = 4 + }, +/area/station/engineering/atmos) +"akj" = ( +/obj/effect/turf_decal/tile/dark/half, +/obj/effect/turf_decal/trimline/green/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/mid_joiner{ + dir = 1 + }, +/obj/machinery/growing/tray, +/turf/open/floor/iron/half, +/area/station/service/hydroponics) +"akq" = ( +/obj/machinery/computer/scan_consolenew{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/machinery/camera/directional/south{ + c_tag = "Science - Genetics"; + network = list("ss13","rd") + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/science/genetics) +"akv" = ( +/obj/structure/bodycontainer/morgue, +/obj/effect/turf_decal/bot_red, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"akR" = ( +/obj/structure/table, +/obj/item/storage/box/mousetraps{ + pixel_x = -3; + pixel_y = 8 + }, +/obj/item/storage/box/mousetraps{ + pixel_x = -3; + pixel_y = 8 + }, +/obj/item/clothing/gloves/color/orange{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/tile/dark/fourcorners, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 6 + }, +/turf/open/floor/noslip, +/area/station/service/janitor) +"akT" = ( +/obj/effect/turf_decal/trimline/green/warning{ + dir = 4 + }, +/turf/open/floor/iron/small, +/area/station/commons/dorms) +"akU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/remains/human, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/security/greater) +"akW" = ( +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/main) +"akZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/office) +"ale" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/power/energy_accumulator/tesla_coil, +/turf/open/floor/engine, +/area/station/engineering/main) +"alk" = ( +/obj/effect/turf_decal/trimline/green/warning{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/small, +/area/station/commons/dorms) +"all" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/textured_corner, +/area/station/cargo/storage) +"alm" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/station/maintenance/port) +"alq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 10 + }, +/turf/open/floor/iron/white, +/area/station/science/research) +"alz" = ( +/obj/structure/flora/bush/fullgrass, +/obj/structure/flora/bush/flowers_br, +/obj/structure/window/spawner/directional/north, +/turf/open/floor/grass, +/area/station/hallway/secondary/exit/departure_lounge) +"alX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hydroponics/glass{ + name = "Hydroponics" + }, +/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/navigate_destination/hydro, +/turf/open/floor/iron/large, +/area/station/service/hydroponics) +"amD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/sign/poster/official/random/directional/west, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"amO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/hallway/primary/aft) +"amP" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall16"; + location = "hall15" + }, +/turf/open/floor/iron/large, +/area/station/hallway/primary/fore) +"amZ" = ( +/obj/machinery/modular_computer/preset/civilian{ + dir = 4 + }, +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/science/robotics/lab) +"anq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"anu" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/command/storage/eva) +"anA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/obj/machinery/holopad, +/turf/open/floor/wood, +/area/station/commons/vacant_room/office) +"anM" = ( +/obj/machinery/door/airlock/cmo{ + name = "Chief Medical Officer's Quarters" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/cmo, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/wood/end, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/cmo) +"anW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/obj/item/storage/box, +/obj/item/stack/sheet/iron/five, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/aft) +"anX" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"aoa" = ( +/obj/effect/turf_decal/tile/purple/diagonal_centre, +/obj/structure/table, +/obj/item/crowbar{ + pixel_y = 5 + }, +/obj/item/wrench{ + pixel_y = 6 + }, +/obj/item/gps/science{ + pixel_y = 5 + }, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/white/diagonal, +/area/station/science/research) +"aoi" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Mix to Ports" + }, +/obj/machinery/light/floor/has_bulb, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"aot" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1; + name = "Mix to Filter" + }, +/obj/effect/turf_decal/trimline/dark_blue/warning{ + dir = 1 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos/pumproom) +"aoB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass, +/turf/open/floor/iron/large, +/area/station/commons/fitness/recreation/entertainment) +"aoD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/button/door/directional/west{ + id = "custodialshutters"; + name = "Custodial Closet Shutters"; + req_access = list("janitor") + }, +/obj/item/clothing/head/cone, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/greater) +"aoH" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 5 + }, +/obj/structure/sink/directional/south, +/turf/open/floor/iron/white/textured_edge, +/area/station/science/lab) +"aoQ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, +/obj/structure/cable, +/obj/machinery/meter, +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured, +/area/station/science/ordnance/storage) +"apl" = ( +/obj/structure/spider/stickyweb, +/obj/machinery/power/port_gen/pacman, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/electrical) +"apF" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/plasticflaps/opaque{ + name = "Hydroponics Deliveries" + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + location = "Hydroponics" + }, +/turf/open/floor/iron/large, +/area/station/service/hydroponics) +"apU" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/greater) +"aqb" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/textured_large, +/area/station/hallway/secondary/entry) +"aqg" = ( +/obj/structure/table/optable{ + name = "Robotics Operating Table" + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/dark_red/half/contrasted, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/science/robotics/lab) +"aqh" = ( +/obj/machinery/status_display/ai, +/turf/closed/wall, +/area/station/hallway/secondary/exit/departure_lounge) +"aqi" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/grassy, +/obj/structure/flora/bush/flowers_br, +/turf/open/floor/grass, +/area/station/hallway/secondary/exit/departure_lounge) +"aql" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/spawner/random/trash/garbage, +/obj/machinery/duct, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/engine/atmos) +"aqs" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/exit/departure_lounge) +"aqw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/north, +/turf/open/floor/engine, +/area/station/medical/chemistry) +"aqx" = ( +/obj/machinery/light/neon_lining{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/camera/directional/west{ + c_tag = "Science - Xenobiology, Pen 1"; + name = "xenobiology camera"; + network = list("ss13","rd","xeno") + }, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"aqy" = ( +/obj/docking_port/stationary/random{ + dir = 2; + name = "lavaland"; + shuttle_id = "pod_3_lavaland" + }, +/turf/open/space, +/area/space/nearstation) +"aqJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/textured_large, +/area/station/cargo/lobby) +"aqX" = ( +/obj/machinery/cryopod, +/obj/effect/turf_decal/siding/white, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_large, +/area/station/common/cryopods) +"arc" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/textured, +/area/station/command/cc_dock) +"ark" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/light/small/directional/south, +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/landmark/generic_maintenance_landmark, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/station/maintenance/department/engine/atmos) +"art" = ( +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/structure/displaycase/forsale{ + pixel_y = 8 + }, +/turf/open/floor/wood, +/area/station/hallway/secondary/entry) +"ary" = ( +/obj/structure/table/reinforced, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 9 + }, +/obj/machinery/recharger{ + pixel_y = 3 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/auxlab/firing_range) +"arF" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/medical/medbay/lobby) +"arG" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L9" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/large, +/area/station/hallway/primary/fore) +"arR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"arU" = ( +/turf/closed/wall/r_wall, +/area/station/security/prison/garden) +"asg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/caution{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured_large, +/area/station/command/cc_dock) +"ash" = ( +/obj/effect/turf_decal/bot, +/obj/structure/safe{ + pixel_x = 3 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/stack/spacecash/c500{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/lazarus_injector, +/obj/effect/decal/cleanable/dirt, +/obj/structure/spider/stickyweb, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/greater) +"asj" = ( +/obj/effect/turf_decal/trimline/dark_red/warning{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central) +"asr" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/herringbone, +/area/station/service/theater) +"ast" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/entry) +"asv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/highsecurity{ + name = "Emergency Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "engielock"; + name = "Engineering Lockdown Blast Door" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/engine) +"asM" = ( +/obj/machinery/porta_turret/ai, +/obj/effect/turf_decal/stripes/white/box, +/obj/structure/sign/nanotrasen{ + pixel_x = 32 + }, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/aisat_interior) +"asQ" = ( +/obj/structure/easel, +/obj/item/canvas/twentythree_twentythree, +/obj/structure/sign/poster/random/directional/west, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/grimy, +/area/station/service/library) +"asX" = ( +/turf/closed/wall, +/area/station/medical/office) +"atb" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/theater) +"atf" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/textured_large, +/area/station/hallway/secondary/entry) +"atg" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/window/spawner/directional/east{ + pixel_x = 4 + }, +/obj/effect/turf_decal/tile/yellow/half, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/window/right/directional/south{ + name = "Engineering Deliveries"; + req_access = list("cargo") + }, +/obj/effect/turf_decal/trimline/neutral/line, +/obj/effect/turf_decal/trimline/neutral/line, +/obj/effect/turf_decal/trimline/neutral/line, +/obj/effect/turf_decal/trimline/neutral/line, +/obj/effect/turf_decal/trimline/neutral/line, +/obj/effect/turf_decal/trimline/neutral/mid_joiner, +/obj/effect/turf_decal/trimline/neutral/mid_joiner, +/obj/effect/turf_decal/trimline/neutral/mid_joiner, +/obj/effect/turf_decal/trimline/neutral/mid_joiner, +/obj/effect/turf_decal/trimline/neutral/mid_joiner, +/turf/open/floor/iron/textured_large, +/area/station/cargo/sorting) +"atp" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/stellar, +/area/station/service/chapel) +"att" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"atG" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/disposal/incinerator) +"atL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/delam_scram/directional/east, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"atS" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/grassy, +/obj/structure/flora/bush/flowers_yw, +/turf/open/floor/grass, +/area/station/hallway/primary/central) +"atT" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/turf/open/floor/plating/airless, +/area/station/engineering/supermatter) +"atW" = ( +/obj/machinery/vending/wardrobe/viro_wardrobe, +/obj/effect/turf_decal/trimline/dark_green/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white, +/area/station/medical/virology) +"aub" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/sign/poster/official/help_others/directional/east, +/obj/effect/turf_decal/bot, +/turf/open/floor/wood/large, +/area/station/medical/psychology) +"aus" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/obj/structure/table, +/obj/item/paper_bin/carbon{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/stamp/denied{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/stamp{ + pixel_x = -6 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/cargo/office) +"auH" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos/pumproom) +"ava" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/greater) +"avf" = ( +/obj/machinery/status_display/ai/directional/west, +/obj/structure/bed/double{ + dir = 1 + }, +/obj/item/bedsheet/ce/double{ + dir = 1 + }, +/turf/open/floor/carpet/orange, +/area/station/command/heads_quarters/ce) +"avl" = ( +/obj/structure/rack, +/obj/item/storage/belt/utility, +/obj/item/weldingtool/largetank, +/obj/item/clothing/head/utility/welding, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/atmos/storage/gas) +"avm" = ( +/obj/structure/table, +/obj/machinery/recharger, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/gateway) +"avz" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine) +"avA" = ( +/turf/closed/wall, +/area/station/science/robotics/mechbay) +"avD" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/machinery/modular_computer/preset/id{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/security/checkpoint/customs) +"avM" = ( +/obj/structure/table, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/item/stack/cable_coil, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/supermatter/room) +"avX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/science/xenobiology) +"awa" = ( +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/box/red, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge, +/area/station/science/ordnance) +"awc" = ( +/obj/machinery/status_display/evac, +/turf/closed/wall/mineral/iron, +/area/station/service/chapel) +"awh" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/carpet/cyan, +/area/station/commons/dorms) +"awj" = ( +/obj/machinery/light/blacklight/directional/east, +/turf/open/floor/circuit/green, +/area/station/ai_monitored/command/nuke_storage) +"awq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/green/arrow_ccw, +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/small, +/area/station/commons/dorms) +"awr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/miningdock) +"awv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/trash_pile, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine) +"awG" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/textured_large, +/area/station/cargo/miningdock) +"awP" = ( +/obj/machinery/mech_bay_recharge_port, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/large, +/area/station/security/office) +"awR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/science/xenobiology) +"awZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/machinery/duct, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/medical/medbay/lobby) +"axc" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/turf/open/floor/plating, +/area/station/maintenance/port) +"axd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"axe" = ( +/obj/structure/chair/office, +/turf/open/floor/glass/reinforced, +/area/station/security/office) +"axx" = ( +/obj/structure/window/spawner/directional/south, +/obj/structure/flora/bush/sparsegrass, +/obj/structure/flora/bush/flowers_pp, +/turf/open/floor/grass, +/area/station/hallway/secondary/exit/departure_lounge) +"axD" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/visible, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/science/xenobiology) +"axN" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Pharmacy Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/pharmacy, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/medical/pharmacy) +"axY" = ( +/obj/structure/dresser, +/obj/item/toy/figure/cmo{ + pixel_y = 15 + }, +/obj/machinery/light_switch/directional/west, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet/blue, +/area/station/command/heads_quarters/cmo) +"aya" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Garden Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/service/chapel_office, +/turf/open/floor/pod, +/area/station/service/chapel/funeral) +"ayc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/landmark/generic_maintenance_landmark, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/crew_quarters/bar) +"aye" = ( +/obj/structure/chair, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"ayg" = ( +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/pen{ + pixel_y = 4 + }, +/obj/structure/table/reinforced/rglass, +/turf/open/floor/glass/reinforced, +/area/station/security/office) +"ayp" = ( +/turf/open/floor/iron/freezer, +/area/station/medical/pharmacy) +"ayr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"ayt" = ( +/turf/open/floor/carpet/purple, +/area/station/common/night_club) +"ayH" = ( +/obj/machinery/computer/telecomms/monitor{ + dir = 4; + network = "tcommsat" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/station/tcommsat/computer) +"ayO" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/fore) +"ayV" = ( +/obj/machinery/defibrillator_mount/directional/west, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/stasis{ + dir = 4 + }, +/obj/effect/turf_decal/box/blue, +/turf/open/floor/iron/freezer, +/area/station/medical/treatment_center) +"azd" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/chair/office{ + color = "#52B4E9"; + dir = 8 + }, +/obj/effect/turf_decal/tile/blue/half{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"azl" = ( +/obj/machinery/door/airlock/external/ruin{ + name = "Pod Docking Bay" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/service/chapel) +"azp" = ( +/obj/structure/mirror/directional/south, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/machinery/space_heater, +/turf/open/floor/wood, +/area/station/maintenance/department/science/xenobiology) +"azq" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/grass, +/area/station/service/hydroponics/upper) +"azr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ + dir = 1 + }, +/turf/open/floor/iron/textured_large, +/area/station/science/ordnance) +"azv" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/hallway/primary/fore) +"azx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 9 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"azG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured_edge, +/area/station/cargo/storage) +"azI" = ( +/obj/effect/turf_decal/stripes/red/full, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "bsa"; + name = "BSA Shutters" + }, +/turf/open/floor/iron/textured_large, +/area/station/hallway/secondary/construction) +"azV" = ( +/obj/item/radio/intercom/directional/south, +/obj/structure/table/wood/fancy/blue, +/obj/machinery/computer/records/medical/laptop{ + dir = 8; + pixel_x = -2; + pixel_y = 4 + }, +/turf/open/floor/carpet/blue, +/area/station/command/heads_quarters/cmo) +"azX" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"aAc" = ( +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Aft Primary Hallway Maintenance" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/aft) +"aAd" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/entry) +"aAe" = ( +/obj/effect/turf_decal/bot, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/textured_large, +/area/station/security/checkpoint/customs) +"aAh" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sink/directional/east, +/turf/open/floor/iron/large, +/area/station/commons/vacant_room/commissary) +"aAj" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/storage/box{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/radio/headset/headset_eng{ + pixel_x = -4; + pixel_y = 3 + }, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/lobby) +"aAs" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/pod/dark, +/area/station/engineering/storage/tech) +"aAz" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"aAG" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/hallway/secondary/command) +"aAN" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistry_shutters"; + name = "Pharmacy Shutters" + }, +/turf/open/floor/plating/airless, +/area/station/medical/pharmacy) +"aBb" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Antechamber" + }, +/obj/effect/landmark/navigate_destination/minisat_access_ai, +/obj/effect/mapping_helpers/airlock/access/all/science/minisat, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/structure/cable/layer3, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/aisat_interior) +"aBc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/commons/storage/primary) +"aBh" = ( +/obj/effect/spawner/random/structure/girder, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/lesser) +"aBq" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Private Room" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/science/xenobiology) +"aBH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"aBT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/grunge{ + id_tag = "Cell6Privacy"; + name = "Cell 6" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/prison) +"aBX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/screwdriver, +/obj/item/wrench, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/security/greater) +"aCi" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/wrench, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 5 + }, +/obj/structure/sign/warning/cold_temp/directional/east, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/science/server) +"aCm" = ( +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/iron/white/diagonal, +/area/station/medical/medbay/central) +"aCq" = ( +/turf/closed/wall, +/area/station/common/pool) +"aCv" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Chapel Access Maintenance" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/hallway/primary/fore) +"aCI" = ( +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"aCW" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"aCY" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/obj/effect/spawner/structure/window/reinforced/plasma, +/turf/open/floor/plating, +/area/station/engineering/atmos) +"aDx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/lobby) +"aDA" = ( +/obj/machinery/modular_computer/preset/id, +/obj/machinery/requests_console/directional/north{ + department = "Captain's Desk"; + name = "Captain's Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/announcement, +/obj/effect/mapping_helpers/requests_console/information, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/structure/noticeboard/captain{ + dir = 8; + pixel_x = -32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain) +"aDC" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/aft) +"aDR" = ( +/turf/closed/wall/r_wall, +/area/station/security/warden) +"aEB" = ( +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"aEC" = ( +/obj/structure/reflector/single/anchored{ + dir = 5 + }, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/supermatter/room) +"aEE" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"aEF" = ( +/turf/closed/wall/r_wall, +/area/station/command/teleporter) +"aEH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/lesser) +"aEI" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/machinery/power/energy_accumulator/tesla_coil/anchored, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"aER" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured_large, +/area/station/engineering/power_room) +"aFc" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/caution_sign, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"aFm" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/blackbox_recorder, +/turf/open/floor/circuit/telecomms/server, +/area/station/tcommsat/server) +"aFp" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_x = -9 + }, +/obj/machinery/recharger, +/obj/machinery/recharger{ + pixel_x = 9 + }, +/obj/effect/turf_decal/tile/dark_red/half{ + dir = 4 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/ai_monitored/security/armory) +"aFv" = ( +/obj/machinery/corral_corner{ + mapping_id = "3" + }, +/obj/machinery/light/neon_lining{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"aFA" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 6 + }, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/radio/headset/headset_medsci{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/machinery/button/door/directional/south{ + id = "genetics_shutters"; + name = "Genetics Shutters" + }, +/obj/structure/table, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 6 + }, +/obj/item/storage/box/monkeycubes{ + pixel_x = 6; + pixel_y = 9 + }, +/obj/item/storage/box/monkeycubes{ + pixel_x = 4 + }, +/obj/item/storage/pill_bottle/mutadone{ + pixel_x = -8; + pixel_y = 9 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -10; + pixel_y = -1 + }, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/white, +/area/station/science/genetics) +"aFG" = ( +/obj/structure/chair/sofa/corp/left{ + color = "#DE3A3A" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/landmark/start/geneticist, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/wood/large, +/area/station/science/research) +"aFK" = ( +/obj/structure/flora/bush/flowers_pp/style_random, +/turf/open/floor/grass, +/area/station/service/hydroponics/garden/abandoned) +"aFO" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/turf_decal/box, +/turf/open/floor/engine, +/area/station/science/ordnance/storage) +"aFP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/science/research) +"aFT" = ( +/obj/effect/turf_decal/bot, +/obj/structure/table/glass, +/obj/item/storage/box/beakers{ + pixel_y = 4 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) +"aFU" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/white/end{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"aFY" = ( +/turf/closed/wall, +/area/station/engineering/atmos/storage/gas) +"aGg" = ( +/obj/machinery/griddle, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"aGq" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/stock_parts/cell/potato, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/aft) +"aGu" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/security/office) +"aGE" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/service/theater) +"aGK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + id_tag = "Cabin4"; + name = "Cabin 4" + }, +/turf/open/floor/iron/large, +/area/station/commons/dorms) +"aHi" = ( +/obj/machinery/status_display/evac, +/turf/closed/wall/r_wall, +/area/station/command/heads_quarters/qm) +"aHV" = ( +/obj/structure/cable, +/obj/machinery/computer/warrant, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/brig) +"aIi" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/aisat_interior) +"aIr" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "surgery"; + name = "Surgery Shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/medical/surgery) +"aIP" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/textured_edge, +/area/station/construction/mining/aux_base) +"aIV" = ( +/obj/structure/bed, +/obj/item/bedsheet/red, +/obj/effect/landmark/start/prisoner, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 5 + }, +/obj/machinery/button/curtain{ + id = "Cell3Privacy"; + pixel_x = -4; + pixel_y = 24 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"aJr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet, +/area/station/medical/psychology) +"aJH" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/textured_corner, +/area/station/cargo/sorting) +"aKj" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external/glass{ + name = "External Access"; + space_dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/catwalk_floor, +/area/station/hallway/primary/fore) +"aKq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/button/door/directional/north{ + id = "securitybridge"; + name = "Bridge Shutters" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/security/brig) +"aKt" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/science/genetics) +"aKM" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/large, +/area/station/hallway/primary/fore) +"aKO" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/machinery/shower{ + pixel_y = 20 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"aKT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/carpet/black, +/area/station/commons/dorms) +"aKU" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 2; + name = "Robotics Junction" + }, +/obj/structure/sink/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/mapping_helpers/mail_sorting/science/robotics, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/science/research) +"aKW" = ( +/obj/structure/showcase/machinery/signal_decrypter, +/obj/machinery/camera/directional/east{ + c_tag = "Science - Server Room"; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/effect/turf_decal/siding/purple/end{ + dir = 4 + }, +/obj/effect/turf_decal/bot_red, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/iron/dark/telecomms, +/area/station/science/server) +"aKY" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 4 + }, +/area/station/hallway/secondary/command) +"aLb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/mess) +"aLj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/greater) +"aLk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical/morgue) +"aLp" = ( +/obj/structure/tank_holder/oxygen/yellow, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/science/ordnance_maint) +"aLt" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/textured_large, +/area/station/science/xenobiology) +"aLw" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/bot, +/obj/machinery/holopad/secure, +/turf/open/floor/carpet, +/area/station/security/courtroom) +"aLz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/chem_master/condimaster, +/obj/structure/railing{ + dir = 6 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"aLB" = ( +/obj/structure/chair/sofa/corp/right, +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/mess) +"aLH" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/aisat_interior) +"aLP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 6 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) +"aLU" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/machinery/newscaster/directional/east, +/obj/structure/bookcase/random, +/obj/machinery/light/small/directional/east, +/turf/open/floor/wood, +/area/station/service/library/abandoned) +"aLY" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/machinery/door/airlock/external, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/department/engine/atmos) +"aMb" = ( +/obj/machinery/status_display/evac, +/turf/closed/wall/r_wall, +/area/station/ai_monitored/turret_protected/aisat_interior) +"aMf" = ( +/obj/machinery/mechpad, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/iron/dark/textured, +/area/station/science/robotics/lab) +"aMk" = ( +/obj/machinery/growing/tray, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/hydroponics/garden) +"aMl" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/security/brig) +"aMy" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/item/hand_labeler{ + pixel_x = 6 + }, +/obj/item/flashlight/lamp/green{ + pixel_y = 13 + }, +/turf/open/floor/iron/grimy, +/area/station/security/detectives_office) +"aMH" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/structure/bed/dogbed/mcgriff{ + anchored = 1 + }, +/mob/living/basic/pet/dog/pug/mcgriff, +/obj/item/key/security, +/obj/structure/cable, +/obj/structure/reagent_dispensers/wall/peppertank/directional/west, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/security/warden) +"aMQ" = ( +/obj/machinery/requests_console/directional/north{ + department = "Head of Security's Desk"; + name = "Head of Security's Requests Console"; + pixel_x = 10 + }, +/obj/effect/mapping_helpers/requests_console/announcement, +/obj/effect/mapping_helpers/requests_console/information, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/structure/cable, +/obj/machinery/button/door/directional/north{ + id = "hoslockdown"; + name = "Head of Security Office Lockdown"; + pixel_x = -7; + req_access = list("hos") + }, +/obj/machinery/button/curtain{ + id = "hoscurtain"; + pixel_x = -8; + pixel_y = 35 + }, +/turf/open/floor/carpet/royalblack, +/area/station/command/heads_quarters/hos) +"aMY" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/siding/green/corner{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"aMZ" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/bot_white/right, +/turf/open/floor/iron/textured_large, +/area/station/command/gateway) +"aNe" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Fore Central Primary Hallway" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/large, +/area/station/hallway/primary/central/fore) +"aNf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"aNg" = ( +/obj/machinery/computer/upload/ai{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/end{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/ai_upload) +"aNj" = ( +/turf/closed/wall/mineral/wood, +/area/station/service/library) +"aNs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/mess) +"aNw" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/machinery/airalarm/directional/west, +/obj/machinery/power/terminal{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/gravity_generator) +"aNG" = ( +/obj/structure/closet/secure_closet/hop, +/obj/item/storage/box/silver_ids, +/obj/item/storage/box/ids, +/obj/machinery/light_switch/directional/north, +/obj/machinery/firealarm/directional/west, +/obj/item/storage/box/pdas, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/hop) +"aNH" = ( +/obj/structure/cable, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/ai) +"aNJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron/textured, +/area/station/command/cc_dock) +"aNK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/greater) +"aNM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/security/prison) +"aNS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/public/glass{ + name = "Cryopods" + }, +/obj/machinery/door/firedoor, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/white/textured_large, +/area/station/common/cryopods) +"aNT" = ( +/obj/structure/closet/crate/coffin, +/turf/open/floor/pod/dark, +/area/station/service/chapel/funeral) +"aOj" = ( +/obj/effect/turf_decal/bot_white/right, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral/anticorner{ + dir = 1 + }, +/turf/open/floor/iron/textured_corner, +/area/station/engineering/gravity_generator) +"aOk" = ( +/obj/structure/table/wood, +/obj/machinery/computer/records/medical/laptop{ + dir = 1; + pixel_y = 4 + }, +/obj/item/folder/white{ + pixel_x = 16; + pixel_y = 3 + }, +/obj/machinery/light/warm/directional/west, +/turf/open/floor/carpet, +/area/station/medical/psychology) +"aOl" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 6 + }, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/science/research) +"aOp" = ( +/obj/structure/closet/crate/coffin, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/pod/dark, +/area/station/service/chapel/funeral) +"aOs" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/science/explab) +"aOI" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Fore Central Primary Hallway" + }, +/turf/open/floor/iron/large, +/area/station/hallway/primary/central/fore) +"aOO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/greater) +"aOQ" = ( +/obj/machinery/computer/station_alert{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/west, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/textured_large, +/area/station/command/heads_quarters/ce) +"aOV" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/item/plate, +/turf/open/floor/iron/kitchen, +/area/station/security/prison/mess) +"aPj" = ( +/obj/structure/table, +/obj/item/plant_analyzer, +/obj/item/hatchet, +/obj/item/cultivator, +/obj/item/shovel/spade, +/turf/open/floor/iron/dark/textured, +/area/station/service/hydroponics/garden) +"aPq" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/textured, +/area/station/command/cc_dock) +"aPu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/aft/greater) +"aPy" = ( +/obj/item/kirbyplants/random, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/iron/grimy, +/area/station/commons/dorms) +"aPz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/siding/green/corner{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"aPJ" = ( +/obj/machinery/door/airlock/external{ + name = "Auxiliary Base Airlock" + }, +/turf/open/floor/plating, +/area/station/construction/mining/aux_base) +"aQl" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/textured_corner{ + dir = 1 + }, +/area/station/engineering/atmos) +"aQn" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical) +"aQo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/dark_green/filled/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/white/textured_corner{ + dir = 8 + }, +/area/station/medical/virology) +"aQC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 10 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/machinery/light_switch/directional/west{ + pixel_y = -15 + }, +/obj/machinery/duct, +/turf/open/floor/iron/white, +/area/station/medical/storage) +"aQR" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 1 + }, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/lobby) +"aQZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/green, +/area/station/command/heads_quarters/nt_rep) +"aRc" = ( +/obj/structure/railing, +/obj/structure/table, +/obj/item/modular_computer/laptop/preset/civilian{ + pixel_y = 5; + pixel_x = 2 + }, +/obj/effect/turf_decal/tile/brown/fourcorners, +/turf/open/floor/iron/dark/textured_large, +/area/station/bitrunning/den) +"aRf" = ( +/obj/structure/chair/plastic, +/turf/open/floor/glass/reinforced, +/area/station/maintenance/port/fore) +"aRi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/west, +/turf/open/floor/engine, +/area/station/medical/chemistry) +"aRn" = ( +/turf/open/floor/iron/textured_large, +/area/station/cargo/storage) +"aRs" = ( +/obj/effect/landmark/start/atmospheric_technician, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"aRA" = ( +/obj/structure/transit_tube/curved/flipped, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"aRC" = ( +/turf/open/floor/carpet/green, +/area/station/commons/dorms) +"aRE" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/conveyor{ + id = "cargodisposals" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera/directional/west{ + c_tag = "Cargo Bay - Delivery Office Port"; + name = "cargo camera" + }, +/obj/structure/window/reinforced/spawner/directional/east{ + layer = 2.9; + pixel_x = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/sorting) +"aRQ" = ( +/obj/structure/chair/office, +/turf/open/floor/iron/grimy, +/area/station/service/library) +"aRZ" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/item/restraints/handcuffs, +/obj/effect/turf_decal/tile/red/diagonal_centre, +/turf/open/floor/iron/dark/diagonal, +/area/station/hallway/secondary/exit/departure_lounge) +"aSg" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/engine, +/area/station/science/auxlab/firing_range) +"aSp" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/aft) +"aSv" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/structure/spider/stickyweb, +/obj/structure/cable, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/electrical) +"aSw" = ( +/obj/machinery/door/airlock/research{ + name = "Research Division Access" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "rnd-enterance" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/general, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/white/textured_large, +/area/station/science/research) +"aSA" = ( +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, +/obj/structure/window/reinforced/plasma/spawner/directional/west, +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/obj/effect/turf_decal/tile/dark_red/full, +/obj/effect/turf_decal/tile/dark_red/full, +/obj/effect/turf_decal/tile/neutral/full, +/obj/machinery/atmospherics/components/binary/pump/off/yellow/visible{ + dir = 4; + name = "N2 to Pure" + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"aSL" = ( +/obj/machinery/newscaster/directional/north, +/obj/machinery/airalarm/directional/east, +/obj/structure/closet/secure_closet/injection{ + name = "educational injections"; + pixel_x = 2 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/dark_red/fourcorners, +/turf/open/floor/iron/dark/textured, +/area/station/security/execution/education) +"aSR" = ( +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/light/small/red/directional/north, +/turf/open/floor/iron/textured_large, +/area/station/hallway/secondary/exit/departure_lounge) +"aSS" = ( +/turf/closed/wall/r_wall, +/area/station/engineering/power_room) +"aTk" = ( +/obj/structure/cable, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/bitrunning/den) +"aTo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/maintenance/port) +"aTp" = ( +/obj/structure/sign/gym/right{ + pixel_y = 32 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/dark/textured_edge, +/area/station/security/prison) +"aTu" = ( +/obj/structure/cable, +/obj/machinery/power/smes/full, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/textured, +/area/station/engineering/gravity_generator) +"aTI" = ( +/obj/structure/transit_tube/crossing{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"aTR" = ( +/obj/machinery/photocopier, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/lobby) +"aTV" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Arrivals" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/large, +/area/station/commons/dorms) +"aUc" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/vending/wallmed/directional/north, +/obj/machinery/anesthetic_machine, +/turf/open/floor/iron/white, +/area/station/medical/surgery) +"aUj" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos/pumproom) +"aUp" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/gateway) +"aUu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/crew_quarters/bar) +"aUx" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/sheet/iron/fifty{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/turf/open/floor/iron/diagonal, +/area/station/hallway/secondary/exit/departure_lounge) +"aUA" = ( +/obj/structure/table, +/obj/item/stock_parts/scanning_module{ + pixel_x = -5; + pixel_y = 7 + }, +/obj/item/stock_parts/scanning_module{ + pixel_x = 5; + pixel_y = 7 + }, +/obj/item/stock_parts/scanning_module{ + pixel_x = -5 + }, +/obj/item/stock_parts/scanning_module{ + pixel_x = 5 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 10 + }, +/obj/structure/sign/poster/contraband/random/directional/west, +/turf/open/floor/iron/textured, +/area/station/cargo/drone_bay) +"aUC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/upper) +"aUE" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 5 + }, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/atmos) +"aUK" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/food_or_drink/seed, +/turf/open/floor/grass, +/area/station/service/hydroponics/garden/abandoned) +"aUO" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/vg_decals/department/mining, +/turf/open/floor/iron/textured_edge, +/area/station/cargo/miningdock) +"aVa" = ( +/turf/closed/wall/r_wall, +/area/station/science/explab) +"aVb" = ( +/obj/structure/trash_pile, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/greater) +"aVg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 10 + }, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/command/storage/eva) +"aVN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/white/small, +/area/station/common/pool) +"aVQ" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/wood/parquet, +/area/station/common/night_club) +"aVR" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/half{ + dir = 8 + }, +/area/station/hallway/primary/central) +"aVW" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/storage) +"aWh" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/department/engine/atmos) +"aWs" = ( +/obj/structure/rack, +/obj/item/stack/medical/mesh, +/obj/item/stack/medical/suture, +/obj/item/reagent_containers/syringe/multiver, +/obj/item/reagent_containers/syringe/epinephrine{ + pixel_x = -1; + pixel_y = 2 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm/directional/east, +/obj/machinery/camera/directional/east{ + c_tag = "Bridge - Gateway"; + name = "command camera" + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/command/gateway) +"aWv" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/medical/medbay/central) +"aWw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/closet/firecloset/wall{ + pixel_x = 32 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/white/end{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/white/mid_joiner, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 1 + }, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/iron/textured_large, +/area/station/command/cc_dock) +"aWz" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/engineering/atmos/pumproom) +"aWC" = ( +/obj/machinery/door/airlock/research{ + name = "Mech Bay" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/science/robotics, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/robotics/mechbay) +"aWD" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/neutral/filled/corner, +/obj/effect/turf_decal/trimline/neutral/filled/corner, +/obj/effect/turf_decal/trimline/neutral/filled/corner, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/corner, +/area/station/commons/vacant_room) +"aWG" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/medical/medbay/central) +"aWH" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/fore) +"aWK" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"aWR" = ( +/mob/living/basic/chicken{ + forced_gender = "male" + }, +/turf/open/floor/grass, +/area/station/service/hydroponics/upper) +"aWS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/hobo_squat, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft) +"aWT" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/newscaster/directional/west, +/obj/structure/bed/dogbed{ + anchored = 1; + name = "Citrus's bed" + }, +/mob/living/basic/sloth/citrus, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/qm) +"aWY" = ( +/obj/structure/chair/sofa/right/brown{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/station/maintenance/port/aft) +"aWZ" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/structure/chair{ + dir = 1 + }, +/obj/item/radio/intercom/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/medical/medbay/lobby) +"aXg" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/camera/directional/north{ + c_tag = "Dormitories - Recreation Area"; + name = "dormitories camera" + }, +/obj/structure/tank_holder/oxygen, +/turf/open/floor/iron/edge, +/area/station/commons/fitness/recreation) +"aXl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"aXr" = ( +/obj/structure/table/wood, +/obj/item/paper_bin/carbon{ + pixel_y = 4 + }, +/obj/item/pen{ + pixel_y = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/medical/psychology) +"aXD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/fore) +"aXE" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/carpet/executive, +/area/station/command/heads_quarters/hop) +"aXF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor, +/area/station/hallway/secondary/construction) +"aXG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/aft) +"aXM" = ( +/turf/closed/wall/mineral/plastitanium, +/area/station/science/research) +"aXO" = ( +/obj/machinery/newscaster/directional/north, +/obj/effect/turf_decal/stripes/red/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"aXQ" = ( +/obj/structure/table/reinforced/rglass, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/machinery/door/firedoor, +/obj/item/reagent_containers/hypospray/medipen{ + pixel_y = 16 + }, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "paramed_dispatch_desk"; + name = "Desk Shutters"; + dir = 8 + }, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/pen{ + pixel_y = 4 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/lobby) +"aYo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/textured_large, +/area/station/hallway/primary/fore) +"aYr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/graffiti, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/lesser) +"aYK" = ( +/obj/item/radio/intercom/directional/east, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/stairs/medium, +/area/station/cargo/storage) +"aZb" = ( +/obj/structure/flora/bush/flowers_yw/style_random, +/obj/structure/flora/bush/flowers_pp/style_random, +/obj/structure/flora/bush/pale/style_random, +/turf/open/floor/grass, +/area/station/service/chapel) +"aZe" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/modular_computer/preset/cargochat/medical{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/brown/filled/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/mid_joiner{ + dir = 1 + }, +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_large, +/area/station/medical/storage) +"aZp" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/textured_large, +/area/station/command/gateway) +"aZq" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/east, +/obj/item/storage/box/rubbershot, +/obj/item/gun/ballistic/shotgun/doublebarrel, +/turf/open/floor/wood, +/area/station/service/bar) +"aZy" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/dark_red/anticorner/contrasted{ + dir = 8 + }, +/obj/item/storage/toolbox/electrical{ + pixel_y = 14 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 7 + }, +/obj/item/multitool{ + pixel_x = -6 + }, +/obj/item/multitool{ + pixel_x = 5 + }, +/turf/open/floor/iron/dark/textured, +/area/station/science/robotics/lab) +"aZH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/item/storage/bag/plants/portaseeder, +/obj/item/cultivator, +/obj/item/plant_analyzer, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/service/hydroponics/garden/abandoned) +"aZT" = ( +/obj/effect/turf_decal/siding/thinplating, +/obj/structure/table, +/obj/machinery/chem_dispenser/drinks{ + dir = 1 + }, +/obj/structure/window/spawner/directional/south, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/exit/departure_lounge) +"aZX" = ( +/obj/effect/spawner/random/trash/mess, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"aZZ" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/box, +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/textured_large, +/area/station/hallway/primary/aft) +"baj" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/landmark/start/lawyer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/station/service/lawoffice) +"bak" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/effect/spawner/random/engineering/tool, +/obj/effect/spawner/random/engineering/tool, +/obj/item/storage/box, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/greater) +"bal" = ( +/obj/structure/table/wood, +/obj/item/food/grown/poppy{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/food/grown/poppy{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/food/grown/poppy, +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"bao" = ( +/obj/structure/trash_pile, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/department/science/ordnance_maint) +"baw" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 6 + }, +/obj/machinery/button/door/directional/east{ + id = "warehouse_shutters"; + name = "warehouse shutters control" + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/box, +/obj/machinery/firealarm/directional/south, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/iron/textured, +/area/station/cargo/warehouse) +"baF" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/textured, +/area/station/command/cc_dock) +"baK" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/aquarium/prefilled, +/obj/item/fish_feed{ + pixel_x = 1; + pixel_y = 19 + }, +/obj/structure/sign/calendar/directional/north, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/nt_rep) +"baU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/hallway/primary/aft) +"bbh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/dark_blue{ + dir = 10 + }, +/obj/effect/turf_decal/tile/blue/anticorner{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"bbm" = ( +/obj/effect/turf_decal/trimline/dark_red/arrow_ccw, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central) +"bbr" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/hallway/primary/fore) +"bby" = ( +/obj/structure/cable, +/turf/open/floor/carpet/purple, +/area/station/command/heads_quarters/rd) +"bbz" = ( +/obj/machinery/power/smes, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/solars/port/fore) +"bbN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/department/engine/atmos/lesser) +"bbU" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/bot, +/obj/machinery/camera/directional/west{ + dir = 10 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/lobby) +"bbW" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/engineering/glass{ + name = "Shared Engineering Storage" + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/storage_shared) +"bcf" = ( +/obj/structure/table_frame, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/fore) +"bcn" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple, +/turf/open/floor/iron/white/textured_large, +/area/station/command/heads_quarters/rd) +"bcq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/aft) +"bcw" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/camera/directional/south{ + c_tag = "Library - Aft"; + name = "library camera" + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/wood/large, +/area/station/service/library) +"bcB" = ( +/obj/structure/cable, +/obj/structure/transit_tube/crossing, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/upper) +"bcC" = ( +/obj/effect/turf_decal/trimline/green/warning{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/small, +/area/station/commons/dorms) +"bcF" = ( +/obj/item/toy/figure/detective{ + pixel_y = 17 + }, +/obj/machinery/light_switch/directional/south{ + pixel_x = -10 + }, +/obj/structure/sign/calendar/directional/south{ + pixel_x = 9 + }, +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/detective, +/obj/item/camera/detective, +/obj/item/reagent_containers/cup/glass/flask/det{ + pixel_x = 4 + }, +/turf/open/floor/iron/grimy, +/area/station/security/detectives_office) +"bcG" = ( +/obj/effect/spawner/random/structure/closet_empty, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/greater) +"bcP" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/main) +"bcW" = ( +/obj/effect/turf_decal/trimline/brown/filled/warning, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/cargo/miningdock) +"bdb" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/burgundy, +/turf/open/space/basic, +/area/station/solars/port/aft) +"bdd" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/textured, +/area/station/command/cc_dock) +"bdp" = ( +/obj/machinery/destructive_scanner, +/obj/effect/turf_decal/stripes/end, +/turf/open/floor/iron/white/textured_large, +/area/station/hallway/primary/fore) +"bdA" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/obj/machinery/meter, +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/maintenance/disposal/incinerator) +"bdH" = ( +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, +/obj/structure/window/reinforced/plasma/spawner/directional/west, +/obj/structure/window/reinforced/plasma/spawner/directional/north, +/obj/effect/turf_decal/tile/neutral/full, +/obj/effect/turf_decal/tile/neutral/full, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"bdJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/stairs/left{ + dir = 8 + }, +/area/station/maintenance/disposal/incinerator) +"bdL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable/layer3, +/turf/open/floor/circuit/green, +/area/station/ai_monitored/turret_protected/ai) +"bdP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/cable/layer3, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/ai) +"bdV" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/carpet, +/area/station/commons/dorms) +"bdW" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/spawner/random/entertainment/arcade{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/wood/large, +/area/station/commons/fitness/recreation) +"beb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Courtroom" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/navigate_destination/court, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/large, +/area/station/security/courtroom) +"bej" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/light/floor/has_bulb, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_large, +/area/station/command/cc_dock) +"bem" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/science/ordnance) +"beq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"bes" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical/central) +"bew" = ( +/obj/machinery/recharge_station, +/obj/effect/landmark/start/cyborg, +/obj/effect/turf_decal/box, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/aisat/service) +"bey" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 5 + }, +/obj/effect/landmark/start/cargo_technician, +/turf/open/floor/iron/textured, +/area/station/cargo/sorting) +"beU" = ( +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/machinery/light_switch/directional/west, +/obj/machinery/light/directional/west, +/obj/structure/table, +/obj/machinery/fax{ + fax_name = "Service Hallway"; + name = "Service Fax Machine"; + pixel_y = 3 + }, +/turf/open/floor/iron/diagonal, +/area/station/hallway/secondary/service) +"beY" = ( +/obj/effect/landmark/start/cargo_technician, +/obj/effect/turf_decal/trimline/brown/filled/warning, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/cargo/storage) +"beZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Aft Central Primary Hallway" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/large, +/area/station/hallway/primary/central/aft) +"bff" = ( +/obj/machinery/status_display/evac, +/turf/closed/wall, +/area/station/security/lockers) +"bfB" = ( +/obj/effect/turf_decal/tile/red/anticorner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/pod/dark, +/area/station/service/chapel/office) +"bfE" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, +/obj/machinery/light/floor/has_bulb, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/atmos) +"bfF" = ( +/obj/machinery/requests_console/auto_name/directional/south, +/obj/effect/turf_decal/stripes/red/line{ + dir = 8 + }, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"bgi" = ( +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"bgo" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Exam Room Maintenance" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical/central) +"bgy" = ( +/obj/structure/chair/wood, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/stellar, +/area/station/service/chapel/funeral) +"bgz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/aft) +"bgF" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/textured_corner{ + dir = 8 + }, +/area/station/engineering/storage) +"bgW" = ( +/obj/structure/dresser, +/turf/open/floor/carpet/green, +/area/station/command/heads_quarters/nt_rep) +"bhv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/airalarm/directional/west, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/science/server) +"bhF" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/wood/large, +/area/station/science/research) +"bhK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ + dir = 1 + }, +/obj/effect/spawner/structure/window/reinforced/plasma, +/turf/open/floor/plating, +/area/station/engineering/atmos) +"bhS" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/watertank/high, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/iron/textured, +/area/station/engineering/main) +"bie" = ( +/obj/machinery/corral_corner{ + mapping_id = "4" + }, +/obj/machinery/light/neon_lining{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"bik" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/obj/machinery/camera/directional/south{ + dir = 5 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"bip" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/sorting/mail{ + dir = 1; + name = "Library Junction" + }, +/obj/effect/mapping_helpers/mail_sorting/service/library, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"biy" = ( +/obj/machinery/duct, +/turf/open/floor/carpet/neon/simple/pink, +/area/station/science/xenobiology) +"biU" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/stock_parts/subspace/amplifier, +/obj/item/stock_parts/subspace/amplifier, +/obj/item/stock_parts/subspace/amplifier, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/storage/tcomms) +"bjg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/recharge_floor, +/area/station/science/research/abandoned) +"bjs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/primary/fore) +"bjH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, +/area/station/service/bar) +"bjI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/layer_manifold/supply/visible{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/science/xenobiology) +"bjJ" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/ai_upload) +"bjS" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, +/obj/machinery/holopad/secure, +/obj/effect/turf_decal/bot, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"bka" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/white/textured_corner{ + dir = 1 + }, +/area/station/science/xenobiology) +"bki" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "briglockdown"; + name = "Warden Desk Shutters" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/warden) +"bkr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/landmark/start/bartender, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, +/area/station/service/bar) +"bku" = ( +/turf/closed/wall, +/area/station/command/cc_dock) +"bkw" = ( +/obj/structure/destructible/cult/item_dispenser/archives/library, +/obj/item/book/codex_gigas, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/siding/thinplating/dark, +/turf/open/floor/cult, +/area/station/service/library) +"bkB" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/vending/drugs, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) +"bkY" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 3 + }, +/obj/effect/turf_decal/bot, +/obj/item/flashlight{ + pixel_y = 4 + }, +/turf/open/floor/iron/large, +/area/station/commons/storage/primary) +"bls" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/lesser) +"bly" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/science/xenobiology) +"blC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/department/security/greater) +"blT" = ( +/obj/structure/dresser, +/obj/effect/turf_decal/siding/wood/end{ + dir = 1 + }, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/department/science/xenobiology) +"blV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/textured, +/area/station/command/cc_dock) +"blY" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/arrows/white{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood, +/area/station/hallway/secondary/entry) +"bmj" = ( +/obj/item/radio/intercom/directional/east, +/obj/machinery/light/warm/directional/east, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/carpet/black, +/area/station/command/heads_quarters/qm) +"bmt" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/white/textured_edge, +/area/station/hallway/primary/fore) +"bmv" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8; + name = "Air to Distro" + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/textured, +/area/station/medical/virology) +"bmN" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/edge, +/area/station/service/hydroponics) +"bmS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_large, +/area/station/cargo/office) +"bmU" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 9 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"bna" = ( +/obj/structure/hedge, +/obj/machinery/status_display/ai/directional/west, +/obj/effect/turf_decal/siding/wood/end, +/turf/open/floor/wood, +/area/station/commons/fitness/recreation/entertainment) +"bnf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/science/xenobiology) +"bng" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Fore Primary Hallway" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/large, +/area/station/hallway/primary/fore) +"bnr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple/diagonal_centre, +/obj/machinery/firealarm/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/white/diagonal, +/area/station/science/research) +"bnA" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/window/fulltile, +/turf/open/floor/grass, +/area/station/service/kitchen) +"bnD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/green/warning{ + dir = 1 + }, +/turf/open/floor/iron/small, +/area/station/commons/dorms) +"bnJ" = ( +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/crew_quarters/bar) +"bnV" = ( +/obj/machinery/modular_computer/preset/id{ + dir = 4 + }, +/obj/structure/sign/calendar/directional/north, +/obj/machinery/keycard_auth/directional/north{ + pixel_x = -27 + }, +/obj/machinery/status_display/supply{ + pixel_x = -32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/carpet/black, +/area/station/command/heads_quarters/qm) +"boe" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/iron/textured, +/area/station/command/cc_dock) +"boi" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/siding/red{ + dir = 8 + }, +/turf/open/floor/iron/large, +/area/station/hallway/primary/fore) +"bom" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/main) +"bor" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/hallway/secondary/command) +"bow" = ( +/obj/structure/rack, +/obj/item/clothing/suit/hazardvest, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/dark_red/filled/line, +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/secondary/construction) +"boy" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/camera/directional/north{ + c_tag = "Security - Head of Security's Office" + }, +/obj/item/radio/intercom/directional/north{ + pixel_x = 13 + }, +/obj/machinery/light_switch/directional/north{ + pixel_x = -4 + }, +/turf/open/floor/carpet/royalblack, +/area/station/command/heads_quarters/hos) +"boF" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/power_room) +"boH" = ( +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/table/wood/fancy/green, +/obj/item/pen/fountain{ + pixel_y = 4 + }, +/turf/open/floor/wood/large, +/area/station/security/courtroom) +"boK" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/greater) +"bpa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible, +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/science/ordnance) +"bpi" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/edge, +/area/station/hallway/primary/fore) +"bps" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/service/theater) +"bpt" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/textured_large, +/area/station/hallway/primary/aft) +"bpy" = ( +/obj/structure/chair/comfy{ + color = "#596479"; + dir = 4 + }, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/wood, +/area/station/security/prison/garden) +"bpz" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 9 + }, +/obj/machinery/status_display/shuttle{ + pixel_y = 32; + shuttle_id = "arrivals_shuttle" + }, +/obj/effect/turf_decal/box, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/security/checkpoint/customs) +"bpL" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/turf_decal/box, +/obj/structure/sign/warning/fire/directional/west, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/engine, +/area/station/science/ordnance/storage) +"bpM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/trimline/green/filled/corner, +/turf/open/floor/iron/corner, +/area/station/hallway/primary/central) +"bqg" = ( +/obj/machinery/power/solar{ + id = "aftport"; + name = "Aft-Port Solar Array" + }, +/obj/structure/cable, +/turf/open/floor/iron/solarpanel/airless, +/area/station/solars/aisat) +"bqi" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/banner/security/mundane{ + pixel_y = 16 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/hallway/primary/fore) +"bqv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 6 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/work) +"bqy" = ( +/obj/effect/turf_decal/trimline/green/filled/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/corner, +/area/station/hallway/primary/central) +"bqO" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"brb" = ( +/obj/effect/landmark/start/hangover, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/primary/fore) +"brc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/textured, +/area/station/command/cc_dock) +"brf" = ( +/obj/effect/spawner/random/trash/moisture_trap, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/fore) +"bri" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2, +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + dir = 4; + name = "blue line" + }, +/turf/open/floor/engine/vacuum, +/area/station/science/ordnance/freezerchamber) +"brl" = ( +/obj/machinery/newscaster/directional/west, +/obj/machinery/conveyor{ + id = "cargodisposals" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/plasticflaps, +/turf/open/floor/iron/textured_large, +/area/station/cargo/sorting) +"bru" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/power_room) +"brB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/circuit/green, +/area/station/ai_monitored/command/nuke_storage) +"brI" = ( +/turf/closed/wall, +/area/station/maintenance/department/engine/atmos) +"brS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_large, +/area/station/cargo/warehouse) +"bsm" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/station/engineering/supermatter/room) +"bsn" = ( +/obj/structure/table/wood, +/obj/item/folder/red{ + pixel_y = 4 + }, +/obj/item/pen{ + pixel_y = 4 + }, +/obj/machinery/light/warm/directional/west, +/turf/open/floor/carpet, +/area/station/commons/dorms) +"bsr" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/turf/open/floor/glass/reinforced, +/area/station/security/execution/transfer) +"bsF" = ( +/obj/effect/turf_decal/weather/snow, +/obj/structure/kitchenspike, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/service/kitchen/coldroom) +"bsI" = ( +/turf/closed/wall/r_wall, +/area/station/science/auxlab) +"btc" = ( +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/atmos) +"btf" = ( +/obj/structure/rack, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/micro_laser, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/obj/item/storage/box/lights/mixed, +/obj/effect/spawner/random/engineering/vending_restock, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine/atmos) +"btw" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/directions/science/directional/west{ + dir = 1; + pixel_y = 8 + }, +/obj/structure/sign/directions/dorms/directional/west{ + dir = 1 + }, +/obj/structure/sign/directions/arrival/directional/west{ + dir = 1; + pixel_y = -8 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/primary/central) +"btY" = ( +/obj/structure/table/glass, +/obj/item/folder/white{ + pixel_y = 4 + }, +/obj/item/pen/red{ + pixel_y = 4 + }, +/obj/machinery/camera{ + c_tag = "Medbay - Virology Ward 1"; + dir = 4; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/white/herringbone, +/area/station/medical/virology) +"btZ" = ( +/obj/machinery/firealarm/directional/south, +/obj/machinery/light_switch/directional/south{ + pixel_x = -9 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/iron/textured, +/area/station/science/ordnance/storage) +"buh" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/turf_decal/bot_red, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/execution/education) +"buj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/bot, +/obj/structure/table, +/obj/item/clothing/suit/hazardvest, +/obj/item/flashlight, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"bup" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Xenobiology - Cytology Cell"; + name = "xenobiology camera"; + network = list("ss13","xeno","rd") + }, +/obj/machinery/light/cold/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_edge, +/area/station/science/xenobiology) +"bur" = ( +/obj/machinery/light/warm/directional/south, +/obj/structure/sign/calendar/directional/south, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/wood, +/area/station/service/lawoffice) +"bux" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/diagonal, +/area/station/hallway/secondary/service) +"buz" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/power_room) +"buG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/lesser) +"buI" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/textured, +/area/station/command/cc_dock) +"buK" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/atmos/storage/gas) +"buO" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"buX" = ( +/obj/structure/cable, +/obj/structure/cable/layer3, +/turf/open/floor/circuit/green, +/area/station/ai_monitored/turret_protected/ai) +"bvd" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 6 + }, +/obj/machinery/camera/directional/east{ + dir = 6 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/storage) +"bvi" = ( +/obj/item/stack/package_wrap{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/stack/package_wrap, +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/item/hand_labeler{ + pixel_y = 9 + }, +/turf/open/floor/wood, +/area/station/service/bar) +"bvt" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/port) +"bvv" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Janitorial" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/prison/work) +"bvI" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/science/auxlab/firing_range) +"bvK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos/hfr_room) +"bvO" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/primary/central/aft) +"bvV" = ( +/obj/effect/turf_decal/trimline/dark_green/filled/line{ + dir = 9 + }, +/obj/machinery/firealarm/directional/north, +/obj/structure/closet/l3closet/virology, +/turf/open/floor/iron/white, +/area/station/medical/virology) +"bws" = ( +/obj/structure/table, +/obj/item/storage/bag/egg, +/obj/item/storage/bag/egg, +/obj/item/storage/bag/egg, +/obj/item/storage/bag/egg, +/obj/item/storage/bag/egg, +/obj/item/storage/bag/egg, +/obj/item/chicken_book, +/obj/item/chicken_book, +/obj/item/chicken_book, +/obj/item/chicken_book, +/obj/item/chicken_book, +/turf/open/floor/wood, +/area/station/service/hydroponics/upper) +"bwv" = ( +/obj/effect/spawner/random/structure/crate, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/hallway/primary/aft) +"bwz" = ( +/obj/machinery/recharge_station, +/obj/effect/landmark/start/cyborg, +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/box, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/aisat/service) +"bwG" = ( +/obj/structure/closet/radiation, +/obj/effect/turf_decal/bot, +/obj/machinery/requests_console/auto_name/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/disposal/incinerator) +"bwJ" = ( +/obj/machinery/light/neon_lining{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/science/xenobiology) +"bxm" = ( +/obj/structure/cable, +/obj/machinery/modular_computer/preset/engineering{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/main) +"bxt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/mopbucket, +/obj/effect/spawner/random/trash/janitor_supplies, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft) +"bxI" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/status_display/evac/directional/east, +/obj/effect/turf_decal/siding/red{ + dir = 8 + }, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/security/office) +"bxL" = ( +/obj/machinery/door/firedoor/heavy, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "sci-toxins-circuits" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, +/obj/machinery/door/airlock/science{ + name = "Ordnance Office" + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 4; + name = "Ordnance Junction" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/mapping_helpers/mail_sorting/science/ordnance, +/turf/open/floor/iron/textured_large, +/area/station/science/ordnance/office) +"bxO" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/right, +/obj/effect/turf_decal/siding/green{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"bxT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/science/xenobiology) +"bxX" = ( +/obj/structure/lattice/catwalk, +/obj/item/book/manual/wiki/security_space_law, +/turf/open/space/basic, +/area/space/nearstation) +"bye" = ( +/obj/effect/spawner/random/structure/tank_holder, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/greater) +"byh" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/department/security/brig) +"byl" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/station/solars/port/fore) +"byq" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/vending/wardrobe/medi_wardrobe, +/obj/item/toy/figure/md{ + pixel_y = 16 + }, +/obj/machinery/requests_console/directional/north{ + department = "Medbay"; + name = "Medbay Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/machinery/camera/directional/north{ + c_tag = "Medbay - Storage"; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white/textured_edge, +/area/station/medical/storage) +"byt" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/radio/intercom, +/turf/open/floor/carpet/blue, +/area/station/command/bridge) +"byw" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external/ruin, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/effect/mapping_helpers/airlock/access/any/service/chapel_office, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/service/chapel/funeral) +"byP" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/hidden{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/station/engineering/atmos) +"byT" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/item/radio/intercom/directional/north, +/obj/machinery/computer/piratepad_control/civilian, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_edge, +/area/station/cargo/lobby) +"bza" = ( +/obj/structure/cable, +/obj/machinery/light_switch/directional/east, +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 5 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/hallway/secondary/construction) +"bzg" = ( +/obj/structure/flora/tree/jungle/small, +/obj/structure/window/spawner/directional/south, +/turf/open/floor/grass, +/area/station/hallway/secondary/exit/departure_lounge) +"bzh" = ( +/obj/machinery/seed_extractor, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/small, +/area/station/security/prison/garden) +"bzn" = ( +/obj/structure/closet, +/obj/item/clothing/under/costume/nova/bathrobe, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white/small, +/area/station/common/pool) +"bzs" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 5 + }, +/obj/structure/bed/roller{ + dir = 4 + }, +/obj/item/clothing/suit/jacket/straight_jacket, +/obj/item/clothing/glasses/blindfold, +/obj/item/clothing/mask/muzzle, +/obj/structure/sink/directional/south, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/white, +/area/station/security/medical) +"bzu" = ( +/obj/structure/table, +/obj/item/food/grown/wheat, +/obj/item/food/grown/watermelon, +/obj/item/food/grown/citrus/orange, +/obj/item/food/grown/grapes, +/obj/item/food/grown/cocoapod, +/obj/item/food/grown/apple, +/obj/item/food/grown/chili, +/obj/item/food/grown/cherries, +/obj/item/food/grown/soybeans, +/obj/item/food/grown/citrus/lime, +/obj/machinery/light/warm/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/hydroponics/garden) +"bzE" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/grimy, +/area/station/commons/dorms) +"bzI" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/turf/open/floor/iron/textured_corner, +/area/station/engineering/atmos) +"bzU" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/delivery_chute{ + dir = 4 + }, +/obj/structure/window/spawner/directional/south, +/obj/structure/window/spawner/directional/west, +/obj/structure/window/spawner/directional/north, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/disposal) +"bzY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/white/small, +/area/station/common/pool) +"bzZ" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) +"bAc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/robotics/lab) +"bAf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/hallway/secondary/command) +"bAI" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Gas to Mix" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"bAT" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"bBd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/aisat_interior) +"bBk" = ( +/obj/machinery/smartfridge, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/kitchen, +/area/station/security/prison/mess) +"bBm" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L13" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/hallway/primary/fore) +"bBn" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Atmospherics - Nitrogen Cell"; + name = "atmospherics camera" + }, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/atmos) +"bBp" = ( +/obj/machinery/door/airlock/external{ + name = "MiniSat External Access" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/science/minisat, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/catwalk_floor, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"bBq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/textured_large, +/area/station/command/cc_dock) +"bBu" = ( +/obj/effect/turf_decal/trimline/dark_red/arrow_ccw, +/obj/machinery/camera/directional/south{ + c_tag = "Departures - Aft"; + name = "departures camera" + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"bBy" = ( +/turf/closed/indestructible/opshuttle, +/area/station/science/ordnance/bomb) +"bBE" = ( +/obj/machinery/newscaster/directional/east, +/obj/effect/spawner/random/bedsheet/any, +/obj/structure/bed, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/station/commons/dorms) +"bBU" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/light_switch/directional/north, +/obj/structure/chair/comfy/brown{ + buildstackamount = 0; + color = "#4169e1"; + dir = 8 + }, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain/private) +"bCe" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 1 + }, +/area/station/security/brig) +"bCj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/security/greater) +"bCw" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/effect/turf_decal/trimline/dark_green/filled/line{ + dir = 4 + }, +/obj/structure/sink/directional/west, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/medical/virology) +"bCE" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/textured, +/area/station/security/warden) +"bCV" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/siding/red/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 10 + }, +/obj/structure/closet/emcloset/wall{ + pixel_x = -32 + }, +/obj/effect/turf_decal/trimline/white/end{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/office) +"bDp" = ( +/obj/machinery/medipen_refiller, +/obj/effect/turf_decal/bot, +/obj/structure/sign/poster/official/random/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) +"bDA" = ( +/obj/structure/closet/secure_closet/hydroponics, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/machinery/camera/directional/west{ + c_tag = "Service - Hydroponics Front"; + dir = 10; + name = "hallway camera" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/service/hydroponics) +"bDF" = ( +/obj/effect/landmark/blobstart, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/greater) +"bDW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/science/ordnance_maint) +"bEe" = ( +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"bEm" = ( +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/cargo/lobby) +"bEn" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/service/library) +"bEy" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/box, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/textured_large, +/area/station/hallway/primary/aft) +"bES" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/holopad/secure, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/ai_upload) +"bFv" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/effect/landmark/start/chemist, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"bFy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/iron/textured_large, +/area/station/command/cc_dock) +"bFG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/spider/stickyweb, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/electrical) +"bFI" = ( +/obj/effect/turf_decal/trimline/dark_red/arrow_ccw, +/obj/machinery/station_map/engineering/directional/south, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"bFO" = ( +/turf/closed/wall/r_wall, +/area/station/command/heads_quarters/rd) +"bFT" = ( +/obj/machinery/vending/medical, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/status_display/ai/directional/west, +/obj/item/toy/figure/paramedic{ + pixel_y = 18 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/medical/medbay/lobby) +"bGd" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/structure/cable, +/turf/open/floor/iron/freezer, +/area/station/medical/treatment_center) +"bGe" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/primary/central/aft) +"bGn" = ( +/obj/effect/turf_decal/trimline/neutral/filled/warning, +/obj/effect/turf_decal/trimline/neutral/filled/warning, +/obj/effect/turf_decal/trimline/neutral/filled/warning, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/hallway/primary/fore) +"bGJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/security/prison/garden) +"bGR" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/disease2/centrifuge, +/obj/item/reagent_containers/cup/tube, +/obj/item/reagent_containers/cup/tube, +/obj/item/reagent_containers/cup/tube, +/obj/item/reagent_containers/cup/tube, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/virology) +"bGZ" = ( +/obj/structure/showcase/machinery/signal_decrypter, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/turf/open/floor/circuit/green, +/area/station/tcommsat/computer) +"bHi" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L6" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/large, +/area/station/hallway/primary/fore) +"bHq" = ( +/obj/structure/bookcase/random/fiction, +/turf/open/floor/wood, +/area/station/security/prison/garden) +"bHP" = ( +/obj/machinery/atmospherics/pipe/bridge_pipe/dark/visible, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"bHW" = ( +/obj/machinery/atmospherics/components/tank/oxygen{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/science/ordnance/storage) +"bIs" = ( +/obj/machinery/atmospherics/components/binary/valve/digital{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"bIx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/red/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"bIy" = ( +/obj/structure/table, +/obj/effect/turf_decal/bot, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = -4 + }, +/obj/item/stack/sheet/iron/fifty{ + pixel_x = 4 + }, +/obj/item/clothing/gloves/color/yellow, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/power_room) +"bIJ" = ( +/obj/machinery/airalarm/directional/west, +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/hop) +"bIN" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/siding/dark_blue{ + dir = 6 + }, +/obj/effect/turf_decal/tile/blue/anticorner, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"bIW" = ( +/obj/structure/dresser, +/obj/item/toy/dummy{ + pixel_x = -1; + pixel_y = 10 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/checker, +/area/station/service/theater) +"bJf" = ( +/obj/structure/chair/stool/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/theater) +"bJi" = ( +/obj/structure/transit_tube/curved{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"bJk" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos/storage/gas) +"bJq" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/aft) +"bJr" = ( +/obj/machinery/computer/atmos_control/air_tank{ + dir = 4 + }, +/obj/structure/window/reinforced/plasma/spawner/directional/west, +/obj/effect/turf_decal/tile/neutral/full, +/obj/effect/turf_decal/tile/neutral/full, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"bJt" = ( +/obj/structure/closet/secure_closet/security/science, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 10 + }, +/obj/machinery/status_display/ai/directional/west, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white, +/area/station/security/checkpoint/science/research) +"bJz" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"bJB" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/turf_decal/trimline/green/arrow_cw{ + dir = 1 + }, +/obj/machinery/status_display/ai/directional/north, +/obj/machinery/light/warm/directional/north, +/obj/effect/landmark/start/hangover/closet, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/small, +/area/station/commons/dorms) +"bJF" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 5 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"bJW" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/qm) +"bKE" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/greater) +"bKI" = ( +/obj/effect/turf_decal/trimline/green/corner{ + dir = 1 + }, +/obj/effect/landmark/start/botanist, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/siding/green{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/service/hydroponics) +"bKK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/blue, +/area/station/command/heads_quarters/cmo) +"bKL" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/sign/poster/official/random/directional/east, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/break_room) +"bKR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/executive, +/area/station/command/heads_quarters/hop) +"bKS" = ( +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/corner{ + dir = 1 + }, +/area/station/commons/fitness/recreation) +"bKT" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/supply/visible, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/medical/virology) +"bKX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/upper) +"bKZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 6 + }, +/turf/open/floor/iron/dark/textured, +/area/station/medical/medbay/central) +"bLi" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 6 + }, +/obj/structure/trash_pile, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/iron/dark/textured, +/area/station/bitrunning/den) +"bLv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/random/directional/south, +/turf/open/floor/plating, +/area/station/maintenance/aft) +"bLx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"bLE" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) +"bLQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 9 + }, +/turf/open/floor/iron/dark/textured, +/area/station/science/xenobiology) +"bLW" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/small, +/area/station/commons/dorms) +"bMa" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/glass/reinforced, +/area/station/security/execution/transfer) +"bMb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/hallway/secondary/command) +"bMc" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Dormitories Maintenance" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/crew_quarters/bar) +"bMg" = ( +/obj/structure/chair/stool/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/warm/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/theater) +"bMr" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/science/xenobiology) +"bMJ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/iron/sepia, +/area/station/service/library) +"bMN" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/structure/sign/warning/chem_diamond/directional/east, +/obj/machinery/camera/directional/east{ + c_tag = "Medbay - Freezer"; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/showroomfloor, +/area/station/medical/coldroom) +"bMR" = ( +/turf/closed/wall, +/area/station/engineering/atmos/pumproom) +"bMT" = ( +/obj/effect/spawner/random/trash/moisture_trap, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/fore) +"bNc" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/requests_console/directional/east{ + department = "Atmospherics"; + name = "Atmospherics Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/assistance, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/atmos) +"bNm" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/textured_edge, +/area/station/cargo/storage) +"bNs" = ( +/obj/structure/bed/roller{ + dir = 4 + }, +/obj/machinery/iv_drip, +/obj/item/bedsheet/medical, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/box/blue, +/turf/open/floor/iron/white/herringbone, +/area/station/medical/virology) +"bNu" = ( +/obj/structure/chair/sofa/left/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/miningoffice) +"bNv" = ( +/obj/machinery/firealarm/directional/east, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/station/tcommsat/computer) +"bNy" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"bNE" = ( +/obj/structure/rack/shelf, +/obj/item/reagent_containers/cup/bottle/acidic_buffer{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/reagent_containers/cup/bottle/basic_buffer{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/reagent_containers/cup/bottle/formaldehyde{ + pixel_x = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) +"bNF" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/nanotrasen{ + pixel_y = -32 + }, +/obj/machinery/duct, +/turf/open/floor/iron/white, +/area/station/science/lab) +"bNV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/diagonal, +/area/station/hallway/secondary/service) +"bNZ" = ( +/obj/machinery/door/airlock/external{ + name = "External Solar Access" + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/solars/port/aft) +"bOb" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/station/solars/aisat) +"bOd" = ( +/obj/structure/closet/secure_closet/atmospherics, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/atmos/storage) +"bOj" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos/hfr_room) +"bOA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/textured_edge, +/area/station/construction/mining/aux_base) +"bOC" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 3 + }, +/obj/item/flashlight{ + pixel_y = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/large, +/area/station/commons/storage/primary) +"bOD" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating/airless, +/area/station/engineering/main) +"bOH" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 1; + id = "construction"; + name = "Construction Shutters" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/textured_large, +/area/station/construction/mining/aux_base) +"bOJ" = ( +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/lesser) +"bOP" = ( +/obj/structure/table/wood, +/turf/open/floor/iron/grimy, +/area/station/commons/vacant_room/office) +"bOT" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 5 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/power_room) +"bPc" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/science/auxlab) +"bPq" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/window/fulltile, +/turf/open/floor/grass, +/area/station/service/library) +"bPz" = ( +/obj/machinery/requests_console/auto_name/directional/east, +/obj/structure/table/wood, +/obj/machinery/computer/security/wooden_tv{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/grimy, +/area/station/security/detectives_office) +"bPI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner, +/turf/open/floor/iron/dark/textured, +/area/station/security/corrections_officer) +"bPZ" = ( +/turf/closed/wall, +/area/station/service/cafeteria) +"bQd" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Departures" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/large, +/area/station/hallway/primary/central) +"bQf" = ( +/obj/structure/railing, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/flowers_br, +/turf/open/floor/grass, +/area/station/hallway/secondary/exit/departure_lounge) +"bQr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 9 + }, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation/entertainment) +"bQy" = ( +/obj/effect/turf_decal/trimline/dark_green/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/textured_corner{ + dir = 8 + }, +/area/station/medical/virology) +"bQF" = ( +/turf/open/floor/iron/textured, +/area/station/maintenance/department/science/ordnance_maint) +"bQT" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Laundry Room" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/large, +/area/station/commons/dorms/laundry) +"bQZ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/pod/dark, +/area/station/service/chapel/office) +"bRa" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/textured, +/area/station/maintenance/solars/starboard/aft) +"bRb" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"bRl" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/r_wall, +/area/station/maintenance/department/science/xenobiology) +"bRn" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/blueshield) +"bRM" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/textured_edge, +/area/station/hallway/primary/aft) +"bRN" = ( +/obj/structure/sign/warning/firing_range/directional/west, +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 10 + }, +/obj/machinery/light/warm/directional/west, +/obj/item/kirbyplants/random, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"bSd" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/station/maintenance/department/engine/atmos) +"bSl" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/machinery/newscaster/directional/north, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_edge, +/area/station/security/lockers) +"bSp" = ( +/obj/structure/closet/emcloset/wall{ + pixel_x = -32 + }, +/obj/effect/turf_decal/trimline/white/end{ + dir = 4 + }, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/greater) +"bSC" = ( +/obj/machinery/status_display/evac/directional/south, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/turf/open/floor/iron/textured, +/area/station/maintenance/disposal/incinerator) +"bSM" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating/airless, +/area/station/maintenance/port/aft) +"bSQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"bSV" = ( +/obj/machinery/suit_storage_unit/engine, +/obj/effect/turf_decal/box, +/obj/machinery/firealarm/directional/north, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/storage) +"bSW" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/textured_corner{ + dir = 1 + }, +/area/station/science/ordnance) +"bTe" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/carpet/blue, +/area/station/command/bridge) +"bTj" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/solars/port/aft) +"bTo" = ( +/turf/closed/wall, +/area/station/commons/storage/primary) +"bTq" = ( +/obj/machinery/digital_clock, +/turf/closed/wall/r_wall, +/area/station/command/heads_quarters/qm) +"bTF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/status_display/ai/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/chair/comfy/brown{ + color = "#A46106"; + dir = 1 + }, +/obj/effect/landmark/start/quartermaster, +/turf/open/floor/carpet/black, +/area/station/command/heads_quarters/qm) +"bTJ" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/siding/red{ + dir = 4 + }, +/obj/machinery/status_display/ai/directional/west, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/security/office) +"bTK" = ( +/obj/structure/chair/office/light{ + color = "#52B4E9"; + dir = 1 + }, +/obj/machinery/requests_console/directional/south{ + department = "Chief Medical Officer's Desk"; + name = "Chief Medical Officer's Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/announcement, +/obj/effect/mapping_helpers/requests_console/information, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/landmark/start/chief_medical_officer, +/turf/open/floor/carpet/blue, +/area/station/command/heads_quarters/cmo) +"bTM" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 10 + }, +/turf/open/floor/iron/textured, +/area/station/science/ordnance/testlab) +"bUl" = ( +/obj/structure/sign/departments/custodian/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"bUt" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/chair/plastic{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/wood/large, +/area/station/commons/fitness/recreation/entertainment) +"bUy" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/science/ordnance/office) +"bUE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/port/upper) +"bUQ" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/machinery/door/window/right/directional/north{ + name = "Janitor Deliveries"; + req_access = list("kitchen") + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/large, +/area/station/service/janitor) +"bUS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/stairs/medium, +/area/station/cargo/storage) +"bVk" = ( +/obj/structure/filingcabinet/chestdrawer/wheeled, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/item/antique{ + pixel_y = 15 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/rd) +"bVr" = ( +/obj/structure/sign/poster/contraband/c20r/directional/east, +/turf/open/floor/plating/foam{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"bVu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/supermatter/room) +"bVB" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/commons/fitness/recreation/entertainment) +"bVL" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/turf/open/floor/plating/airless, +/area/station/engineering/atmos/hfr_room) +"bVR" = ( +/obj/machinery/computer/crew{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/medical/medbay/lobby) +"bVW" = ( +/obj/machinery/atmospherics/components/binary/valve/digital/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/disposal/incinerator) +"bWj" = ( +/obj/effect/decal/remains/human, +/turf/open/floor/iron/textured, +/area/station/security/prison/work) +"bWt" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/station/service/library/abandoned) +"bWK" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/turf/open/floor/circuit/green, +/area/station/ai_monitored/turret_protected/ai) +"bWT" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/structure/filingcabinet/security, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/security/checkpoint/customs) +"bWZ" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Console Room" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/fore) +"bXf" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/solars/port/fore) +"bXh" = ( +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/security/prison) +"bXt" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/greater) +"bXW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/aisat/service) +"bYe" = ( +/obj/effect/landmark/start/security_officer, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/security/lockers) +"bYi" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/iron/large, +/area/station/commons/dorms/laundry) +"bYj" = ( +/obj/machinery/light_switch/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 10 + }, +/turf/open/floor/iron/dark/textured, +/area/station/command/gateway) +"bYk" = ( +/obj/structure/bed/dogbed{ + anchored = 1; + name = "Bumbles's bed" + }, +/obj/effect/landmark/event_spawn, +/obj/item/paper/guides/jobs/hydroponics, +/mob/living/basic/pet/bumbles, +/mob/living/basic/pet/potty, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/hydroponics) +"bYs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white/textured_large, +/area/station/security/checkpoint/science/research) +"bYy" = ( +/obj/structure/chair/pew/left{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/large, +/area/station/security/courtroom) +"bYA" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/security/brig) +"bYP" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Central Hallway" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/large, +/area/station/commons/dorms/laundry) +"bYQ" = ( +/turf/closed/wall/r_wall, +/area/station/engineering/storage_shared) +"bYS" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/atmos/storage) +"bYX" = ( +/obj/structure/table, +/obj/item/storage/bag/tray{ + pixel_y = 3 + }, +/obj/item/food/dough{ + pixel_y = 5 + }, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"bZi" = ( +/turf/closed/wall/r_wall, +/area/station/engineering/supermatter) +"bZk" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/eva_shed/starboard) +"bZZ" = ( +/obj/structure/filingcabinet/security, +/obj/effect/turf_decal/bot, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain/private) +"cad" = ( +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/medical/surgery) +"cah" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/textured, +/area/station/maintenance/disposal/incinerator) +"caj" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/turf/open/floor/iron/textured, +/area/station/hallway/secondary/entry) +"cas" = ( +/obj/item/kirbyplants/photosynthetic, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"cau" = ( +/obj/structure/flora/bush/fullgrass, +/obj/structure/flora/bush/ferny, +/obj/structure/window/fulltile, +/turf/open/floor/grass, +/area/station/service/cafeteria) +"cay" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical/central) +"caG" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/ai_upload) +"caK" = ( +/obj/machinery/camera/directional/west{ + c_tag = "Medbay - Psychology"; + name = "medical camera"; + network = list("ss13","medical") + }, +/obj/machinery/computer/security/telescreen/entertainment/directional/west, +/obj/effect/landmark/start/psychologist, +/obj/structure/chair/comfy/teal, +/turf/open/floor/carpet, +/area/station/medical/psychology) +"caN" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/white/textured_edge, +/area/station/security/medical) +"caV" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/poddoor/shutters{ + id = "sciencebridge"; + name = "Science Pod Space Bridge" + }, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/port/fore) +"cbf" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/service/kitchen, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/service{ + name = "Kitchen" + }, +/obj/effect/landmark/navigate_destination/kitchen, +/turf/open/floor/iron/large, +/area/station/service/kitchen) +"cbr" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/commons/storage/primary) +"cbs" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/secondary/command) +"cbA" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark_blue, +/obj/effect/turf_decal/tile/blue/half, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"cbB" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/warm/directional/east, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/commons/fitness/recreation/entertainment) +"cbC" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/machinery/light_switch/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/lobby) +"cbL" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Engineering Guard's Office" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/security/checkpoint/engineering) +"cbV" = ( +/obj/effect/landmark/start/hangover, +/obj/machinery/camera/directional/west{ + c_tag = "Command Hallway - Fore Starboard"; + name = "hallway camera" + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/hallway/secondary/command) +"ccc" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/wood/large, +/area/station/service/theater) +"ccf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"cci" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/atmos) +"cck" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/hallway/secondary/command) +"ccG" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"ccV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/station/maintenance/department/science/xenobiology) +"ccY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/red/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/science/auxlab/firing_range) +"cdo" = ( +/turf/closed/wall/r_wall, +/area/station/command/heads_quarters/cmo) +"cdz" = ( +/obj/effect/turf_decal/trimline/neutral/filled/warning, +/obj/effect/turf_decal/trimline/neutral/filled/warning, +/obj/effect/turf_decal/trimline/neutral/filled/warning, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/hallway/primary/central) +"cdB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/requests_console/directional/east{ + department = "Quartermaster's Desk"; + name = "Quartermaster's Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/announcement, +/turf/open/floor/carpet/black, +/area/station/command/heads_quarters/qm) +"cdL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/hallway/secondary/exit/departure_lounge) +"cdO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/grimy, +/area/station/service/library) +"cdR" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/medical/medbay/lobby) +"cea" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/rd) +"ceg" = ( +/obj/effect/turf_decal/trimline/dark_red/arrow_ccw, +/obj/structure/closet/firecloset/wall{ + pixel_y = -32 + }, +/obj/effect/turf_decal/trimline/white/end{ + dir = 1 + }, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"cej" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Atmospherics - Port"; + name = "atmospherics camera"; + network = list("ss13","engine") + }, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/atmos) +"cen" = ( +/obj/item/banner/command/mundane, +/mob/living/basic/crab/shuffle, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/starboard/fore) +"cey" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Science Guard's Office" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/security/checkpoint/science/research) +"ceI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/machinery/requests_console/auto_name/directional/south, +/obj/machinery/camera/directional/south{ + c_tag = "Firing Range"; + name = "dormitories camera" + }, +/turf/open/floor/engine, +/area/station/science/auxlab/firing_range) +"ceN" = ( +/obj/effect/spawner/random/structure/crate, +/obj/effect/spawner/random/maintenance/two, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine) +"ceO" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/service/library) +"ceP" = ( +/obj/structure/window/reinforced/spawner/directional/north{ + pixel_y = 1 + }, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/item/kirbyplants/photosynthetic, +/obj/structure/sign/plaques/kiddie{ + pixel_x = -32 + }, +/turf/open/floor/circuit/green, +/area/station/ai_monitored/turret_protected/ai_upload) +"ceS" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/turf_decal/box, +/turf/open/floor/engine, +/area/station/science/ordnance/storage) +"cfa" = ( +/obj/effect/decal/cleanable/blood/xtracks, +/obj/machinery/door/window/brigdoor/left/directional/south{ + name = "Secure Creature Pen"; + req_access = list("xenobiology") + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"cfm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/line, +/turf/open/floor/iron/dark/textured, +/area/station/security/execution/education) +"cfH" = ( +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/structure/sign/clock/directional/west, +/obj/machinery/light_switch/directional/west{ + pixel_y = 15 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/medical/surgery) +"cfR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/crew_quarters/bar) +"cfZ" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/item/banner/cargo/mundane, +/turf/open/floor/iron/textured, +/area/station/cargo/lobby) +"cge" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/machinery/camera/directional/north, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/main) +"cgf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/primary/central/aft) +"cgl" = ( +/mob/living/basic/spider/giant/hunter/scrawny, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/electrical) +"cgt" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/telecomms/processor/preset_three, +/turf/open/floor/circuit/telecomms/server, +/area/station/tcommsat/server) +"cgu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/command/gateway) +"cgx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/service/barber) +"cgA" = ( +/obj/machinery/status_display/ai, +/turf/closed/wall, +/area/station/engineering/atmos) +"cgH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"cgT" = ( +/obj/effect/turf_decal/trimline/blue/line, +/obj/effect/landmark/start/medical_doctor, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/lobby) +"cgZ" = ( +/turf/closed/wall, +/area/station/maintenance/port/greater) +"chc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/station_map/engineering/directional/east, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/hallway/secondary/command) +"chg" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/storage/photo_album, +/obj/item/camera{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/effect/turf_decal/siding/dark_blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue/half{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"chq" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/service/library) +"chz" = ( +/obj/structure/closet/emcloset/wall{ + pixel_y = 32 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/white/end, +/obj/effect/turf_decal/trimline/white/mid_joiner, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/dark/textured_edge, +/area/station/hallway/secondary/command) +"chJ" = ( +/obj/structure/cable, +/turf/open/floor/iron/textured_large, +/area/station/hallway/secondary/entry) +"chK" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/structure/closet/emcloset/wall{ + pixel_x = -32 + }, +/obj/effect/turf_decal/trimline/white/end{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"chQ" = ( +/obj/machinery/growing/soil, +/obj/item/seeds/sugarcane, +/turf/open/floor/grass, +/area/station/service/chapel) +"chX" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/station/service/library/abandoned) +"cie" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/structure/sign/poster/official/random/directional/west, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/atmos/hfr_room) +"cig" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark/small, +/area/station/security/prison/garden) +"civ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/random/directional/south, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/aft/greater) +"ciL" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/half, +/area/station/hallway/primary/central) +"ciQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"ciZ" = ( +/turf/closed/wall/r_wall, +/area/station/science/ordnance) +"cjd" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/machinery/light/directional/north, +/turf/open/floor/engine, +/area/station/science/auxlab/firing_range) +"cjh" = ( +/turf/closed/wall/r_wall, +/area/station/command/heads_quarters/captain/private) +"cjn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"cju" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"cjx" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/folder/red{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/folder/yellow{ + pixel_x = 4 + }, +/turf/open/floor/carpet/blue, +/area/station/command/bridge) +"cjC" = ( +/obj/effect/turf_decal/bot, +/obj/structure/table, +/obj/item/storage/bag/construction, +/obj/item/storage/bag/construction, +/obj/item/storage/bag/construction, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"cjT" = ( +/obj/structure/chair/plastic{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/security/prison/work) +"cjY" = ( +/obj/structure/table, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/fore) +"ckd" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/station/commons/vacant_room/office) +"cki" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/maintenance_hatch, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/aft/lesser) +"ckp" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/grimy, +/area/station/commons/lounge) +"ckH" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/atmos/storage) +"ckL" = ( +/obj/machinery/computer/security, +/obj/effect/turf_decal/tile/dark_blue/half{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"ckQ" = ( +/obj/machinery/duct, +/obj/machinery/light/neon_lining{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/science/xenobiology) +"clk" = ( +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/crew_quarters/bar) +"clu" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 6 + }, +/obj/structure/sign/poster/official/nanotrasen_logo/directional/east, +/turf/open/floor/iron/dark/textured, +/area/station/security/interrogation) +"clD" = ( +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/flowers_pp/style_random, +/turf/open/floor/grass, +/area/station/service/chapel) +"clH" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/siding/red, +/turf/open/floor/iron/dark/textured_edge, +/area/station/security/office) +"clM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/crate_abandoned, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft) +"clP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate, +/obj/effect/spawner/random/maintenance/four, +/obj/effect/spawner/random/medical/minor_healing, +/obj/effect/spawner/random/engineering/vending_restock, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/greater) +"cme" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/secondary/entry) +"cmk" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/security/brig) +"cmr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"cmH" = ( +/turf/closed/wall/r_wall, +/area/station/command/heads_quarters/blueshield) +"cmM" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/science/ordnance/testlab) +"cmO" = ( +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/item/food/grown/banana, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/window/right/directional/east{ + name = "Monkey Pen"; + req_access = list("pathology") + }, +/turf/open/floor/grass, +/area/station/medical/virology) +"cmW" = ( +/obj/effect/turf_decal/tile/brown/anticorner{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"cna" = ( +/obj/machinery/atmospherics/components/unary/passive_vent{ + dir = 4; + name = "server vent" + }, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/corner, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"cnb" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, +/obj/machinery/door/airlock/science{ + name = "Ordnance Launch Site" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/science/ordnance/testlab) +"cnc" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Aft Central Primary Hallway" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/office) +"cne" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/surgery) +"cnl" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation/entertainment) +"cnv" = ( +/obj/effect/spawner/random/trash/botanical_waste, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/broken/directional/west, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"cnA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/cafeteria, +/area/station/service/cafeteria) +"cnC" = ( +/turf/closed/wall, +/area/station/maintenance/port/central) +"coc" = ( +/obj/structure/sign/nanotrasen{ + pixel_y = -32 + }, +/obj/structure/cable, +/obj/machinery/power/smes/super/full, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/ai) +"coi" = ( +/obj/structure/table, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/plaque/static_plaque/golden{ + pixel_y = 32 + }, +/obj/machinery/syndicatebomb/training, +/obj/item/screwdriver, +/obj/item/wirecutters, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/iron/dark/textured, +/area/station/security/office) +"coN" = ( +/obj/structure/table, +/obj/item/reagent_containers/cup/glass/mug/britcup{ + pixel_x = -6; + pixel_y = 11 + }, +/obj/item/phone{ + pixel_x = 6; + pixel_y = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 6 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/iron/textured, +/area/station/cargo/drone_bay) +"coO" = ( +/obj/structure/chair/comfy/brown{ + color = "#A46106"; + dir = 8 + }, +/turf/open/floor/carpet/blue, +/area/station/command/bridge) +"coR" = ( +/obj/structure/sign/poster/contraband/random/directional/south, +/obj/effect/spawner/random/structure/crate, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/greater) +"coS" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/closet/emcloset/wall{ + pixel_y = 32 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/white/end, +/obj/structure/sign/departments/maint/directional/east, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/secondary/command) +"cpg" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/camera/directional/south{ + c_tag = "Cargo - Quartermaster's Office"; + name = "cargo camera" + }, +/obj/machinery/status_display/ai/directional/south, +/obj/structure/table/wood/fancy/black, +/obj/machinery/fax{ + fax_name = "Quartermaster's Office"; + name = "Quartermaster's Fax Machine"; + pixel_y = 3 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/qm) +"cpz" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/large, +/area/station/commons/fitness/recreation/entertainment) +"cpF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/fore) +"cpN" = ( +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/blueshield) +"cpP" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/camera/directional/west{ + c_tag = "AI Satellite - Fore Starboard"; + name = "ai camera"; + network = list("minisat"); + start_active = 1 + }, +/obj/structure/cable, +/turf/open/space/basic, +/area/space/nearstation) +"cpU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/effect/landmark/blobstart, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/electrical) +"cpV" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/machinery/computer/records/medical, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/carpet, +/area/station/security/detectives_office) +"cpX" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/science/research/abandoned) +"cqf" = ( +/obj/structure/flora/bush/large, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/grass, +/area/station/medical/virology) +"cqn" = ( +/obj/item/toy/basketball, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/mid_joiner{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/prison) +"cqp" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/greater) +"cqq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/carbon_output{ + dir = 4 + }, +/turf/open/floor/engine/co2, +/area/station/engineering/atmos) +"cqt" = ( +/obj/structure/table, +/obj/item/mmi, +/obj/item/storage/toolbox/electrical{ + pixel_y = 12 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/bot, +/obj/item/multitool{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/science/auxlab) +"cqz" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8; + name = "Air to Distro" + }, +/turf/open/floor/iron/textured, +/area/station/medical/virology) +"cqB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/large, +/area/station/commons/dorms/laundry) +"cqI" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/service/hydroponics/upper) +"cqJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/cyborg, +/obj/structure/cable, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/aisat_interior) +"cqK" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/corner{ + dir = 8 + }, +/area/station/hallway/primary/central) +"cqN" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical/morgue) +"cqT" = ( +/obj/structure/transit_tube/diagonal{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"cqU" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/primary/central/aft) +"crj" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/power_room) +"crK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ + dir = 8 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos/pumproom) +"csg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white/textured_large, +/area/station/science/auxlab) +"csp" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"cst" = ( +/obj/structure/bookcase/random/adult, +/turf/open/floor/wood, +/area/station/security/prison/garden) +"csL" = ( +/turf/open/floor/iron/dark/textured_large, +/area/station/security/prison) +"csX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/turf/open/floor/iron/dark/diagonal, +/area/station/engineering/transit_tube) +"ctd" = ( +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/lesser) +"cte" = ( +/obj/structure/sign/departments/cargo/directional/east, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_large, +/area/station/hallway/primary/aft) +"ctf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/turf/open/floor/iron/diagonal, +/area/station/hallway/secondary/service) +"cti" = ( +/obj/structure/reflector/box/anchored{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/supermatter/room) +"ctj" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/structure/sign/departments/cargo/directional/north, +/turf/open/floor/iron/textured_edge, +/area/station/hallway/primary/aft) +"ctm" = ( +/turf/open/floor/circuit/green, +/area/station/engineering/gravity_generator) +"ctq" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/right, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/edge, +/area/station/hallway/primary/fore) +"ctu" = ( +/obj/structure/table, +/obj/item/raw_anomaly_core/random{ + pixel_x = -5; + pixel_y = 7 + }, +/obj/item/raw_anomaly_core/random{ + pixel_x = 7; + pixel_y = 9 + }, +/obj/item/raw_anomaly_core/random, +/obj/machinery/light_switch/directional/north, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 5 + }, +/turf/open/floor/iron/textured, +/area/station/science/ordnance/testlab) +"ctO" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/telecomms/hub/preset, +/turf/open/floor/circuit/telecomms/server, +/area/station/tcommsat/server) +"ctQ" = ( +/obj/structure/tank_dispenser/oxygen, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/exit/departure_lounge) +"cuq" = ( +/obj/structure/table, +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/effect/turf_decal/stripes/line, +/obj/item/storage/belt/utility{ + pixel_y = 2 + }, +/obj/item/storage/belt/utility{ + pixel_y = 6 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/science/robotics/lab) +"cuA" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain/private) +"cuF" = ( +/obj/machinery/seed_extractor, +/obj/item/seeds/tower, +/obj/item/seeds/watermelon, +/obj/item/seeds/wheat, +/obj/item/seeds/sugarcane, +/obj/item/seeds/orange, +/obj/item/seeds/grape, +/obj/item/seeds/cocoapod, +/obj/item/seeds/banana, +/obj/item/seeds/apple, +/obj/effect/turf_decal/siding/green{ + dir = 1 + }, +/obj/structure/sign/poster/random/directional/south, +/turf/open/floor/iron/dark/textured, +/area/station/service/hydroponics/garden) +"cuJ" = ( +/obj/structure/closet/secure_closet/hydroponics, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/service/hydroponics) +"cuQ" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/atmos) +"cuZ" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/science/research) +"cvm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/obj/structure/disposalpipe/sorting/mail{ + dir = 8; + name = "Experimentor Lab Junction" + }, +/obj/effect/turf_decal/tile/purple/diagonal_centre, +/obj/effect/mapping_helpers/mail_sorting/science/experimentor_lab, +/turf/open/floor/iron/white/diagonal, +/area/station/science/research) +"cvG" = ( +/obj/structure/sign/warning/biohazard/directional/east, +/turf/open/space/basic, +/area/space) +"cvH" = ( +/turf/closed/wall, +/area/station/medical/psychology) +"cvI" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/structure/sign/departments/engineering/directional/south, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/aft) +"cwa" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/engine/atmos) +"cwd" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/freezer, +/area/station/medical/pharmacy) +"cwf" = ( +/obj/effect/turf_decal/vg_decals/numbers/one, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/command) +"cwn" = ( +/obj/machinery/door/poddoor/massdriver_chapel, +/turf/open/floor/plating, +/area/station/service/chapel/funeral) +"cwt" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/requests_console/auto_name/directional/south, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/medical/medbay/lobby) +"cwE" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/aft) +"cwH" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/fore) +"cwJ" = ( +/obj/effect/turf_decal/trimline/dark_red/arrow_ccw, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/obj/machinery/station_map/engineering/directional/south, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central) +"cwM" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/medical/medbay/lobby) +"cwO" = ( +/obj/structure/reagent_dispensers/plumbed{ + dir = 4; + name = "science water reservoir" + }, +/obj/effect/turf_decal/tile/purple/opposingcorners, +/obj/effect/turf_decal/delivery/blue, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/science/xenobiology) +"cxw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/power/energy_accumulator/tesla_coil, +/turf/open/floor/engine, +/area/station/engineering/main) +"cxC" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/station/solars/starboard/aft) +"cxD" = ( +/obj/structure/chair/pew/left{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/wood/large, +/area/station/security/courtroom) +"cxF" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/lesser) +"cxG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/fore) +"cxP" = ( +/obj/effect/turf_decal/weather/snow, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/service/kitchen/coldroom) +"cxR" = ( +/obj/effect/landmark/start/hangover, +/obj/structure/cable, +/turf/open/floor/iron/textured_large, +/area/station/hallway/primary/aft) +"cyc" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"cyd" = ( +/obj/structure/table, +/obj/machinery/pollution_scrubber{ + pixel_x = 7; + pixel_y = -5 + }, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/exit/departure_lounge) +"cyi" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 5 + }, +/obj/machinery/modular_computer/preset/cargochat/security{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/mid_joiner{ + dir = 4 + }, +/obj/machinery/light_switch/directional/south, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_large, +/area/station/security/lockers) +"cyj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance/external/glass{ + name = "Space Bridge Access" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/department/science/xenobiology) +"cyz" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/maintenance/external/glass{ + name = "Space Bridge Access" + }, +/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/port) +"cyA" = ( +/obj/structure/chair/wood, +/turf/open/floor/carpet/stellar, +/area/station/service/chapel/funeral) +"cyI" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/turf/open/floor/iron/diagonal, +/area/station/hallway/secondary/service) +"cyL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/random/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge, +/area/station/hallway/secondary/construction) +"cyN" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/large, +/area/station/hallway/primary/fore) +"cyO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical) +"cyY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/large, +/area/station/hallway/primary/fore) +"czg" = ( +/obj/structure/flora/bush/ferny/style_random, +/obj/machinery/growing/soil, +/obj/effect/spawner/random/trash/bucket, +/turf/open/floor/grass, +/area/station/service/hydroponics/garden/abandoned) +"czo" = ( +/obj/machinery/door/airlock/external{ + name = "Labor Camp Shuttle Airlock"; + space_dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/catwalk_floor, +/area/station/security/execution/transfer) +"czs" = ( +/turf/open/floor/plating, +/area/station/maintenance/department/engine) +"czC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/textured, +/area/station/security/checkpoint/engineering) +"cAd" = ( +/obj/effect/turf_decal/stripes/box, +/obj/machinery/power/shieldwallgen/anchored{ + shield_range = 14 + }, +/obj/structure/cable, +/turf/open/floor/iron/textured, +/area/station/maintenance/eva_shed/starboard) +"cAj" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"cAy" = ( +/obj/effect/turf_decal/trimline/dark/filled/line, +/obj/structure/closet/bombcloset/security, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/bot, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/security/office) +"cAz" = ( +/obj/structure/lattice, +/obj/structure/transit_tube/horizontal{ + dir = 1 + }, +/turf/open/space/basic, +/area/space/nearstation) +"cAH" = ( +/obj/structure/bed/double, +/obj/item/bedsheet/centcom/double, +/obj/item/storage/secure/safe/directional/east, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/carpet/green, +/area/station/command/heads_quarters/nt_rep) +"cAQ" = ( +/obj/machinery/computer/operating, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 6 + }, +/obj/machinery/status_display/evac/directional/east, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white, +/area/station/medical/surgery) +"cAR" = ( +/obj/item/mod/module/plasma_stabilizer, +/obj/item/mod/module/thermal_regulator, +/obj/structure/table, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/machinery/door/window/right/directional/west{ + name = "Supply Storage"; + req_access = list("medical") + }, +/obj/effect/turf_decal/trimline/dark_red/filled, +/obj/effect/turf_decal/trimline/dark_red/filled/mid_joiner, +/obj/effect/turf_decal/trimline/dark_red/filled/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/mid_joiner{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/storage) +"cBb" = ( +/obj/structure/reagent_dispensers/cooking_oil, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/greater) +"cBc" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/window/reinforced/spawner/directional/west{ + layer = 2.9; + pixel_x = -4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/medical/medbay/lobby) +"cBd" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/lobby) +"cBe" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/aft) +"cBg" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 1 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/turf/open/floor/iron/edge, +/area/station/commons/fitness/recreation) +"cBi" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/ce) +"cBj" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start/scientist, +/obj/structure/cable, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/science/explab) +"cBk" = ( +/obj/structure/table, +/obj/item/food/cornchips/blue{ + pixel_x = 9; + pixel_y = 4 + }, +/obj/item/reagent_containers/cup/soda_cans/space_mountain_wind{ + pixel_x = -7; + pixel_y = -1 + }, +/obj/effect/turf_decal/box/corners, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/item/food/cornchips/red{ + pixel_x = 3; + pixel_y = 6 + }, +/turf/open/floor/engine, +/area/station/bitrunning/den) +"cBU" = ( +/obj/structure/chair/comfy/beige{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/medical/psychology) +"cBW" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/grimy, +/area/station/service/chapel) +"cCl" = ( +/obj/machinery/power/tracker, +/obj/structure/cable, +/turf/open/floor/iron/solarpanel/airless, +/area/station/solars/port/fore) +"cCq" = ( +/turf/open/floor/iron/grimy, +/area/station/service/library) +"cCw" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/green/corner{ + dir = 8 + }, +/turf/open/floor/iron/edge, +/area/station/service/hydroponics) +"cCA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hos{ + id_tag = "HoSdoor"; + name = "Head Of Security's Office" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/hos, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/poddoor/preopen{ + id = "hoslockdown"; + name = "Head of Security Blast Door" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/hos) +"cCJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/aft) +"cCK" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/command) +"cDc" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced/spawner/directional/east{ + layer = 2.9; + pixel_x = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/storage/box/trackimp{ + pixel_x = -4; + pixel_y = 1 + }, +/obj/item/storage/box/chemimp{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/gun/energy/ionrifle{ + pixel_y = -6 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/security/armory) +"cDg" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/station/security/interrogation) +"cDj" = ( +/turf/closed/wall/r_wall, +/area/station/security/execution/transfer) +"cDq" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/port/upper) +"cDs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/solars/starboard/aft) +"cDF" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Storage Closet" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/aft/lesser) +"cDV" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "commissaryshutters"; + name = "Vacant Commissary Shutters" + }, +/turf/open/floor/iron/large, +/area/station/commons/vacant_room) +"cEh" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/obj/machinery/door/airlock/external/glass{ + name = "External Access"; + space_dir = 2 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical/central) +"cEq" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/turf/open/floor/iron/diagonal, +/area/station/hallway/secondary/service) +"cEx" = ( +/obj/machinery/power/tracker, +/obj/structure/cable, +/turf/open/floor/iron/solarpanel/airless, +/area/station/solars/port/aft) +"cEB" = ( +/obj/machinery/digital_clock/directional/north, +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/white/textured_edge, +/area/station/medical/office) +"cEE" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/item/radio/intercom/directional/east, +/obj/structure/table/reinforced, +/obj/effect/spawner/random/food_or_drink/donkpockets{ + pixel_y = 5 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/lobby) +"cEL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port) +"cEP" = ( +/obj/effect/spawner/random/structure/girder, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/fore) +"cFf" = ( +/turf/open/floor/glass/reinforced, +/area/station/security/office) +"cFr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured_large, +/area/station/science/ordnance/testlab) +"cFu" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/camera/directional/west{ + c_tag = "Dormitories - Ring"; + name = "dormitories camera" + }, +/turf/open/floor/wood, +/area/station/commons/fitness/recreation/entertainment) +"cFx" = ( +/obj/structure/closet/wardrobe/mixed, +/obj/effect/landmark/start/hangover/closet, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/large, +/area/station/commons/fitness/recreation/entertainment) +"cFz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"cFF" = ( +/obj/structure/cable, +/obj/structure/chair/stool/directional/east, +/obj/machinery/power/terminal{ + dir = 8 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/solars/starboard/fore) +"cFN" = ( +/obj/machinery/light/small/directional/west, +/obj/item/bikehorn/rubberducky, +/obj/machinery/shower/directional/west, +/turf/open/floor/pod/light, +/area/station/service/chapel) +"cFR" = ( +/obj/machinery/rnd/destructive_analyzer, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/iron/large, +/area/station/science/lab) +"cGp" = ( +/obj/machinery/light/small/directional/east, +/obj/structure/closet/firecloset, +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"cGr" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access = list("command") + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "bridge-left" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "Bridge Blast Door" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"cGu" = ( +/obj/machinery/firealarm/directional/east{ + pixel_y = 5 + }, +/obj/machinery/light_switch/directional/east{ + pixel_x = 23; + pixel_y = 6 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 5 + }, +/turf/open/floor/iron/white, +/area/station/medical/office) +"cGw" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/air_input{ + dir = 4 + }, +/turf/open/floor/engine/air, +/area/station/engineering/atmos) +"cGC" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/station/solars/port/fore) +"cGJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/hallway/secondary/command) +"cGM" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/light_switch/directional/north, +/obj/structure/table, +/obj/item/stack/sheet/plasteel{ + amount = 10; + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/sheet/iron/fifty{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/stack/sheet/iron/fifty{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/head/utility/welding{ + pixel_y = 6 + }, +/obj/item/clothing/head/utility/welding{ + pixel_y = 6 + }, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/atmos/storage) +"cGU" = ( +/obj/structure/disposalpipe/junction/flip, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/hallway/secondary/command) +"cGX" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/machinery/camera/directional/west{ + c_tag = "Medbay - Port Chemistry Lab"; + name = "medical camera"; + network = list("ss13","medical") + }, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"cGZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/station/maintenance/department/engine) +"cHc" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/effect/turf_decal/tile/red/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/iron, +/area/station/commons/lounge) +"cHd" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/light/small/broken/directional/south, +/obj/effect/turf_decal/bot, +/turf/open/floor/wood, +/area/station/commons/vacant_room/office) +"cHh" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/atmos) +"cHj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/eva_shed/starboard) +"cHk" = ( +/obj/structure/table, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/storage) +"cHv" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/structure/table, +/obj/item/storage/photo_album, +/obj/item/toy/cards/deck, +/obj/item/radio/intercom/directional/south, +/obj/machinery/light/warm/directional/south, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/commons/fitness/recreation) +"cHE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/effect/turf_decal/trimline/white/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"cHJ" = ( +/obj/effect/turf_decal/siding/white, +/turf/open/floor/iron/dark/textured_large, +/area/station/common/cryopods) +"cHR" = ( +/turf/closed/wall, +/area/station/security/checkpoint/customs) +"cHS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/carpet/black, +/area/station/commons/dorms) +"cIc" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/department/science/ordnance_maint) +"cIr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/construction/mining/aux_base) +"cIy" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/machinery/status_display/ai/directional/east, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/main) +"cIz" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/dark_green/filled/warning{ + dir = 4 + }, +/obj/machinery/door_buttons/airlock_controller{ + idExterior = "virology_airlock_exterior"; + idInterior = "virology_airlock_interior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Console"; + pixel_x = 24; + pixel_y = -24; + req_access = list("pathology") + }, +/obj/machinery/duct, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + name = "Virology Junction"; + sortType = 27 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/mail_sorting/medbay/virology, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/medical/virology) +"cIE" = ( +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_edge, +/area/station/cargo/lobby) +"cIG" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/science/server) +"cII" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/camera/directional/north{ + c_tag = "Medbay - Fore Chemistry Lab"; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/obj/machinery/light_switch/directional/north{ + pixel_x = -16 + }, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"cIK" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/landmark/generic_maintenance_landmark, +/turf/open/floor/iron/textured, +/area/station/maintenance/eva_shed/port) +"cIS" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/carpet/executive, +/area/station/command/heads_quarters/hop) +"cIZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/dark_green/filled/warning, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/medical/virology) +"cJm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/cardboard, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"cJo" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 8 + }, +/obj/effect/landmark/start/cargo_technician, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/cargo/office) +"cJv" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/wood, +/area/station/security/prison/garden) +"cJA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/supermatter/room) +"cJP" = ( +/obj/structure/table/wood, +/obj/structure/displaycase/forsale{ + pixel_y = 8 + }, +/obj/effect/turf_decal/siding/green{ + dir = 6 + }, +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"cJR" = ( +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 10 + }, +/obj/structure/sign/poster/contraband/random/directional/west, +/turf/open/floor/iron/textured, +/area/station/cargo/warehouse) +"cJY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/carpet/blue, +/area/station/command/bridge) +"cKb" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/textured_large, +/area/station/command/gateway) +"cKl" = ( +/obj/machinery/duct, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light/neon_lining{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"cKH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/science/robotics/mechbay) +"cKW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Aft Central Primary Hallway" + }, +/turf/open/floor/iron/large, +/area/station/commons/fitness/recreation) +"cLi" = ( +/obj/structure/window/spawner/directional/east, +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/spawner/random/food_or_drink/donkpockets{ + pixel_y = 5 + }, +/turf/open/floor/wood/large, +/area/station/science/research) +"cLl" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 6 + }, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/atmos) +"cLr" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner/directional/east{ + layer = 2.9; + pixel_x = 4 + }, +/obj/structure/disposaloutlet{ + name = "Prisoner Doomp" + }, +/obj/effect/turf_decal/bot_red, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/brig) +"cLw" = ( +/obj/effect/spawner/random/vending/snackvend, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/hallway/primary/central/aft) +"cLG" = ( +/obj/effect/landmark/start/cargo_technician, +/turf/open/floor/iron/textured_large, +/area/station/cargo/storage) +"cLN" = ( +/obj/docking_port/stationary/random{ + name = "lavaland"; + shuttle_id = "pod_2_lavaland" + }, +/turf/open/space, +/area/space/nearstation) +"cMm" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/atmos) +"cMC" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/grass/jungle/a/style_random, +/obj/machinery/door/poddoor/preopen{ + id = "atmoslock"; + name = "Atmospherics Lockdown Blast Door" + }, +/turf/open/misc/asteroid, +/area/station/engineering/atmos/storage/gas) +"cMG" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/medical/medbay/central) +"cMY" = ( +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 9 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"cNd" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/iron/stairs/right{ + dir = 8 + }, +/area/station/engineering/atmos) +"cNe" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/obj/structure/rack, +/obj/item/analyzer, +/obj/item/wrench, +/obj/item/crowbar/red, +/obj/machinery/status_display/ai/directional/north, +/obj/machinery/camera/directional/north, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"cNi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"cNm" = ( +/obj/structure/disposalpipe/junction{ + dir = 2 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall3"; + location = "hall2" + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"cNB" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/cargo/lobby) +"cNE" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/item/knife/plastic, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/mess) +"cOd" = ( +/obj/structure/sign/poster/official/space_cops/directional/east, +/obj/structure/cable, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/hallway/secondary/command) +"cOf" = ( +/obj/machinery/light/neon_lining{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/camera/directional/east{ + c_tag = "Science - Xenobiology, Pen 3"; + name = "xenobiology camera"; + network = list("ss13","rd","xeno") + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"cOi" = ( +/obj/structure/sign/gym/right{ + pixel_y = 32 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"cOm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/medical/medbay/central) +"cOs" = ( +/obj/machinery/door/airlock/grunge{ + name = "Chapel Office" + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/service/chapel_office, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/service/chapel/office) +"cOx" = ( +/obj/structure/chair/comfy/black, +/obj/effect/landmark/start/assistant, +/obj/item/radio/intercom/directional/east, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/iron/grimy, +/area/station/hallway/primary/central/fore) +"cON" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured, +/area/station/maintenance/disposal/incinerator) +"cOS" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/machinery/pdapainter/engineering, +/obj/structure/sign/clock/directional/west, +/obj/machinery/status_display/ai/directional/north, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/ce) +"cPe" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"cPj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_green/diagonal_centre, +/turf/open/floor/iron/white/diagonal, +/area/station/medical/virology) +"cPv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/small, +/area/station/common/pool) +"cPx" = ( +/turf/open/floor/iron/chapel{ + dir = 9 + }, +/area/station/service/chapel) +"cPE" = ( +/obj/structure/weightmachine/weightlifter, +/obj/effect/turf_decal/tile/yellow/full, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white/textured_large, +/area/station/commons/fitness/recreation/entertainment) +"cPF" = ( +/obj/structure/closet/l3closet, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/tile/dark_green/diagonal_centre, +/turf/open/floor/iron/white/diagonal, +/area/station/medical/virology) +"cPN" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/camera/directional/east{ + c_tag = "Research Division - Starboard"; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/machinery/duct, +/obj/structure/disposalpipe/junction{ + dir = 2 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/science/research) +"cPS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/aisat/service) +"cPU" = ( +/obj/item/radio/intercom/directional/north{ + freerange = 1; + frequency = 1447; + listening = 0; + name = "Private Channel" + }, +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/ai) +"cQa" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/grimy, +/area/station/commons/lounge) +"cQb" = ( +/obj/machinery/recharge_station, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/textured, +/area/station/science/research/abandoned) +"cQi" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Aft Central Primary Hallway" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/auxlab/firing_range) +"cQj" = ( +/obj/effect/spawner/random/structure/crate_abandoned, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/fore) +"cQk" = ( +/obj/item/cultivator, +/turf/open/floor/grass, +/area/station/service/chapel) +"cQn" = ( +/obj/machinery/camera/directional/south{ + c_tag = "Atmospherics - Project Room Fore"; + dir = 5; + name = "atmospherics camera" + }, +/obj/effect/turf_decal/bot, +/obj/structure/table, +/obj/item/multitool, +/obj/item/multitool, +/obj/item/multitool, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"cQB" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/grass, +/area/station/service/chapel) +"cQG" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/command/cc_dock) +"cQH" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/effect/turf_decal/bot, +/obj/machinery/camera/directional/west{ + dir = 10 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/power_room) +"cQJ" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/machinery/smartfridge/petri/preloaded, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/science/xenobiology) +"cQN" = ( +/obj/effect/turf_decal/siding/dark_blue/corner, +/obj/machinery/shuttle_manipulator{ + desc = "A holographic display of the ship we're on right now."; + layer = 2.7; + name = "ship holographic display" + }, +/obj/effect/turf_decal/tile/blue/half{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"cQZ" = ( +/obj/item/kirbyplants/random, +/obj/machinery/status_display/shuttle{ + pixel_y = 32; + shuttle_id = "arrivals_shuttle" + }, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/textured_edge, +/area/station/hallway/secondary/entry) +"cRe" = ( +/turf/closed/wall/r_wall, +/area/station/ai_monitored/turret_protected/ai_upload) +"cRr" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/eva_shed/starboard) +"cRT" = ( +/obj/machinery/computer/exoscanner_control{ + dir = 1 + }, +/obj/machinery/camera/directional/south{ + c_tag = "Cargo Bay - Drone Launch Room"; + pixel_x = 14 + }, +/obj/structure/sign/poster/official/random/directional/south, +/obj/effect/turf_decal/trimline/brown/filled/line, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/cargo/drone_bay) +"cRU" = ( +/obj/machinery/conveyor{ + id = "shuttletodelivery" + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/sorting) +"cRX" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/table/wood/fancy/purple, +/obj/item/storage/briefcase{ + pixel_y = 4 + }, +/turf/open/floor/wood/large, +/area/station/security/courtroom) +"cSe" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/station/commons/fitness/recreation/entertainment) +"cSh" = ( +/obj/effect/turf_decal/arrows/red{ + dir = 4; + pixel_x = -15 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos/hfr_room) +"cSB" = ( +/obj/effect/turf_decal/trimline/green/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/small, +/area/station/commons/dorms) +"cSD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/secondary/entry) +"cSL" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall4"; + location = "hall3" + }, +/turf/open/floor/iron/small, +/area/station/commons/dorms) +"cSN" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/chair/stool/directional/west, +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood/large, +/area/station/commons/fitness/recreation) +"cSZ" = ( +/obj/structure/table, +/obj/item/storage/bag/tray, +/obj/item/storage/box/condimentbottles{ + pixel_y = 10 + }, +/obj/item/storage/box/beakers{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/turf/open/floor/iron/kitchen, +/area/station/security/prison/mess) +"cTg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/gravity_generator) +"cTq" = ( +/obj/machinery/door/airlock/maintenance/external/glass{ + name = "Observation Room" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/any/command/maintenance, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/fore) +"cTy" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/landmark/generic_maintenance_landmark, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/disposal) +"cTI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/station/commons/dorms) +"cTK" = ( +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + dir = 10; + name = "blue line" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/prison) +"cTL" = ( +/obj/item/kirbyplants/random, +/obj/machinery/newscaster/directional/south, +/obj/structure/noticeboard/captain{ + dir = 8; + name = "Consultant's Notice Board"; + pixel_x = -32 + }, +/turf/open/floor/carpet/green, +/area/station/command/heads_quarters/nt_rep) +"cTO" = ( +/obj/structure/trash_pile, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft) +"cUg" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Port to Filter" + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"cUk" = ( +/obj/effect/turf_decal/siding/thinplating_new/terracotta/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"cUA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/plating, +/area/station/maintenance/aft) +"cUH" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_edge, +/area/station/medical/medbay/central) +"cUM" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/fore) +"cUP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"cUV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"cVe" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/textured_large, +/area/station/command/cc_dock) +"cVl" = ( +/obj/machinery/holopad, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/bot, +/obj/effect/landmark/event_spawn, +/obj/effect/landmark/start/brig_physician, +/turf/open/floor/iron/white/textured_large, +/area/station/security/medical) +"cVF" = ( +/turf/open/floor/iron/small, +/area/station/hallway/primary/central) +"cVG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/cmo) +"cVH" = ( +/obj/effect/decal/cleanable/glass, +/obj/item/stack/sheet/glass{ + amount = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"cVI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/station/science/auxlab/firing_range) +"cVX" = ( +/obj/machinery/space_heater, +/obj/effect/turf_decal/box, +/obj/machinery/light_switch/directional/east, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"cWA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light/small/directional/north, +/obj/structure/cable, +/turf/open/floor/iron/textured_large, +/area/station/hallway/primary/fore) +"cWB" = ( +/obj/machinery/digital_clock{ + pixel_x = -1; + pixel_y = 7 + }, +/turf/closed/wall/r_wall, +/area/station/engineering/supermatter/room) +"cWH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/carpet/blue, +/area/station/command/bridge) +"cWO" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/power_room) +"cXb" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/chair/comfy, +/turf/open/floor/carpet/green, +/area/station/command/heads_quarters/nt_rep) +"cXd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"cXk" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/firealarm/directional/east, +/obj/machinery/atmospherics/components/binary/crystallizer{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/atmos) +"cXr" = ( +/turf/closed/wall/r_wall, +/area/station/security/checkpoint/customs) +"cXs" = ( +/obj/machinery/power/supermatter_crystal/engine, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"cXC" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/station/maintenance/aft/upper) +"cXP" = ( +/obj/machinery/corral_corner{ + mapping_id = "3" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/light/neon_lining{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"cXX" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/lockers) +"cYc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/obj/item/clothing/ears/earmuffs{ + pixel_y = 7 + }, +/obj/item/clothing/ears/earmuffs{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/item/clothing/ears/earmuffs{ + pixel_x = 6; + pixel_y = 3 + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/miningdock) +"cYk" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm/directional/east, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stock_parts/cell/high, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/electrical) +"cYr" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/carpet/stellar, +/area/station/service/chapel/office) +"cYu" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/closet/emcloset/wall{ + pixel_y = -32 + }, +/obj/effect/turf_decal/trimline/white/end{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 1 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/fore) +"cYx" = ( +/obj/item/storage/box/syndie_kit, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"cYz" = ( +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/lesser) +"cYE" = ( +/obj/structure/sign/warning/secure_area, +/turf/closed/wall/r_wall, +/area/station/maintenance/aft/greater) +"cYI" = ( +/obj/structure/table/wood, +/obj/item/radio/intercom/directional/east, +/obj/machinery/light/warm/directional/east, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/obj/item/radio/radio_mic{ + pixel_y = 7 + }, +/obj/item/device/cassette_tape/friday{ + pixel_y = -6; + pixel_x = -8 + }, +/turf/open/floor/cult, +/area/station/service/library) +"cYN" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 8; + pixel_x = 7 + }, +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood/parquet, +/area/station/common/night_club) +"cYR" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/lesser) +"cZb" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/bot, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/aisat/atmos) +"cZf" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/iron/airless{ + icon_state = "dark_large" + }, +/area/space/nearstation) +"cZv" = ( +/obj/structure/closet/radiation, +/obj/effect/turf_decal/bot, +/obj/machinery/camera/directional/east{ + c_tag = "Atmospherics - Ports"; + dir = 6; + name = "atmospherics camera" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/disposal/incinerator) +"cZG" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4; + name = "Cooling Loop to Gas" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"cZI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/transit_tube/horizontal, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/primary/fore) +"cZW" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/vending/mechcomp, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/storage_shared) +"dac" = ( +/obj/item/reagent_containers/cup/bottle/epinephrine, +/obj/item/reagent_containers/cup/bottle/multiver{ + pixel_x = 6 + }, +/obj/item/reagent_containers/syringe, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/structure/curtain, +/turf/open/floor/iron/freezer, +/area/station/medical/treatment_center) +"daf" = ( +/obj/effect/spawner/random/vending/snackvend, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_edge, +/area/station/hallway/secondary/command) +"dah" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 4; + pixel_x = -5 + }, +/obj/machinery/light/small/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/greater) +"dap" = ( +/obj/structure/fireplace, +/turf/open/floor/carpet/cyan, +/area/station/commons/dorms) +"dar" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/white/textured_edge, +/area/station/science/xenobiology) +"das" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/head/cone, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/fore) +"dau" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical, +/obj/item/multitool, +/obj/machinery/airalarm/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/turf/open/floor/engine, +/area/station/tcommsat/computer) +"day" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics Storage" + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos/storage) +"daB" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/structure/table/reinforced/rglass, +/obj/item/assembly/timer{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/assembly/igniter, +/obj/item/stack/package_wrap{ + pixel_y = -1; + pixel_x = 1 + }, +/obj/item/hand_labeler{ + pixel_y = -3; + pixel_x = 4 + }, +/turf/open/floor/iron/freezer, +/area/station/medical/pharmacy) +"daF" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/hallway/primary/aft) +"daH" = ( +/obj/structure/table, +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/structure/sign/poster/contraband/random/directional/south, +/obj/item/storage/box/lights/mixed{ + pixel_y = 4 + }, +/obj/item/stock_parts/cell/high/empty{ + pixel_y = 4 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/cargo/warehouse) +"daN" = ( +/obj/machinery/door/airlock/service{ + name = "Theater Access" + }, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/large, +/area/station/service/theater) +"daQ" = ( +/obj/machinery/modular_computer/preset/civilian{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/storage_shared) +"dbc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"dbj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/maintenance_hatch, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/aft) +"dbm" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/camera/directional/north{ + c_tag = "Fore Primary Hallway - Fore"; + name = "hallway camera" + }, +/turf/open/floor/iron/large, +/area/station/hallway/primary/fore) +"dbp" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, +/turf/closed/wall, +/area/station/engineering/atmos) +"dbr" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Aft Central Primary Hallway" + }, +/turf/open/floor/iron/large, +/area/station/commons/dorms) +"dbs" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/warm/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/tank_holder/extinguisher, +/turf/open/floor/iron/edge, +/area/station/commons/fitness/recreation) +"dbv" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/solars/port/fore) +"dbP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"dbZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/camera/directional/east{ + dir = 6 + }, +/turf/open/floor/engine, +/area/station/engineering/main) +"dcd" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/glass/reinforced, +/area/station/science/research) +"dcg" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/primary/fore) +"dck" = ( +/obj/effect/spawner/random/maintenance, +/turf/open/floor/glass/reinforced, +/area/station/maintenance/port/fore) +"dcr" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/machinery/porta_turret/ai, +/obj/effect/turf_decal/stripes/white/box, +/obj/effect/turf_decal/bot_red, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/ai_upload) +"dcB" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/cargo/storage) +"dcF" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/white/textured_edge, +/area/station/science/genetics) +"dcJ" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/commons/fitness/recreation) +"dcL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"dcR" = ( +/obj/machinery/door/airlock/external{ + name = "External Solar Access" + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/solars/starboard/fore) +"ddd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/commons/fitness/recreation/entertainment) +"ddj" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/security/brig) +"ddt" = ( +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Engineering Maintenance" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/poddoor/preopen{ + id = "engielock"; + name = "Engineering Lockdown Blast Door" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/aft/greater) +"ddB" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/machinery/computer/records/security{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured, +/area/station/security/corrections_officer) +"ddH" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/large, +/area/station/security/checkpoint/customs) +"ddN" = ( +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "Labor Camp Shuttle Airlock"; + space_dir = 8 + }, +/turf/open/floor/catwalk_floor, +/area/station/security/execution/transfer) +"ddP" = ( +/obj/machinery/door/poddoor/preopen{ + id = "brigprison"; + name = "Prison Blast Door" + }, +/turf/open/floor/iron/stairs/medium{ + dir = 4 + }, +/area/station/security/execution/transfer) +"ddS" = ( +/obj/machinery/door/poddoor/incinerator_ordmix, +/turf/open/floor/engine/vacuum, +/area/station/science/ordnance/burnchamber) +"dea" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured_large, +/area/station/cargo/miningdock) +"dec" = ( +/obj/structure/weightmachine, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 5 + }, +/obj/structure/sign/poster/contraband/random/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"deg" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/medical/surgery) +"dei" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/telecomms/server/presets/security, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/station/tcommsat/server) +"deq" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos/pumproom) +"dex" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/carpet, +/area/station/commons/dorms) +"deE" = ( +/turf/closed/wall/r_wall, +/area/station/engineering/atmos) +"deV" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/turf_decal/trimline/green/arrow_cw{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/light/warm/directional/north, +/obj/effect/landmark/start/hangover/closet, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/small, +/area/station/commons/dorms) +"dfi" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 1 + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + name = "Pharmacy Junction" + }, +/obj/machinery/duct, +/obj/effect/mapping_helpers/mail_sorting/medbay/chemistry, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/lobby) +"dfk" = ( +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/textured_large, +/area/station/security/checkpoint/customs) +"dfq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/textured_large, +/area/station/science/xenobiology) +"dfs" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8; + name = "Air to Distro" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/science/xenobiology) +"dfx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/lobby) +"dfA" = ( +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/item/food/poppypretzel{ + pixel_x = -8; + pixel_y = -3 + }, +/obj/item/food/cakeslice/pound_cake_slice{ + pixel_x = 8; + pixel_y = -2 + }, +/obj/item/food/muffin/berry{ + pixel_x = -4; + pixel_y = 9 + }, +/obj/item/food/hotcrossbun{ + pixel_x = 3; + pixel_y = 5 + }, +/turf/open/floor/wood, +/area/station/hallway/secondary/entry) +"dfF" = ( +/turf/closed/wall, +/area/station/medical/medbay/lobby) +"dfG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/dark, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"dfM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/security/armory) +"dfQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/brown/filled/corner, +/turf/open/floor/iron/dark/textured_corner, +/area/station/security/prison) +"dfU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/security/greater) +"dfV" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"dfY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos/hfr_room) +"dgb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/effect/spawner/random/maintenance/two, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/crew_quarters/bar) +"dgk" = ( +/obj/machinery/status_display/evac/directional/east, +/obj/structure/chair/comfy/brown{ + color = "#EFB341"; + dir = 1 + }, +/turf/open/floor/carpet/orange, +/area/station/command/heads_quarters/ce) +"dgm" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/textured_large, +/area/station/construction/mining/aux_base) +"dgw" = ( +/obj/machinery/corral_corner{ + mapping_id = "4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/light/neon_lining{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"dgE" = ( +/obj/structure/table/reinforced/rglass, +/obj/machinery/fax{ + fax_name = "Security Office"; + name = "Security Office Fax Machine"; + pixel_y = 3 + }, +/turf/open/floor/glass/reinforced, +/area/station/security/office) +"dgO" = ( +/obj/machinery/door/airlock/public/glass/incinerator/atmos_exterior, +/obj/effect/mapping_helpers/airlock/locked, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/turf/open/floor/engine, +/area/station/maintenance/disposal/incinerator) +"dhd" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Atmospherics - Plasma Cell"; + dir = 9; + name = "atmospherics camera" + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"dhm" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/commons/storage/art) +"dhx" = ( +/turf/closed/wall, +/area/station/command/heads_quarters/ce) +"dhy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "atmoslock"; + name = "Atmospherics Lockdown Blast Door" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"dhK" = ( +/obj/machinery/vending/hydroseeds, +/obj/structure/window/reinforced/spawner/directional/west, +/turf/open/floor/iron/dark/small, +/area/station/security/prison/garden) +"dhL" = ( +/obj/structure/table, +/obj/item/storage/crayons, +/obj/item/wrench, +/obj/structure/sign/warning/vacuum/external/directional/south, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/pod/dark, +/area/station/service/chapel/funeral) +"dhM" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/obj/structure/closet/firecloset/wall{ + pixel_y = 32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/white/end, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 8 + }, +/turf/open/floor/iron/white/diagonal, +/area/station/medical/medbay/central) +"dhZ" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"dih" = ( +/obj/structure/sign/warning/no_smoking/directional/west, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/main) +"dil" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/landmark/start/captain, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"din" = ( +/obj/effect/turf_decal/weather/snow, +/obj/machinery/airalarm/directional/north, +/obj/effect/mapping_helpers/airalarm/tlv_cold_room, +/obj/structure/kitchenspike, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/service/kitchen/coldroom) +"dir" = ( +/obj/structure/sign/departments/evac, +/turf/closed/wall/r_wall, +/area/station/hallway/secondary/exit/departure_lounge) +"diz" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos/hfr_room) +"diF" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"diH" = ( +/obj/structure/table/wood/fancy/blue, +/obj/effect/spawner/random/aimodule/neutral, +/obj/machinery/door/window/left/directional/south{ + name = "Core Modules"; + req_access = list("captain") + }, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/ai_upload) +"diL" = ( +/obj/effect/turf_decal/nova_decals/enclave/top/middle{ + color = "#52B4E9" + }, +/obj/effect/turf_decal/trimline/blue/line, +/obj/effect/turf_decal/trimline/blue/mid_joiner, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/lobby) +"diV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/service/barber) +"diX" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/green/corner{ + dir = 1 + }, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/service/hydroponics) +"djc" = ( +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/science/xenobiology) +"dje" = ( +/turf/closed/wall/r_wall, +/area/station/security/checkpoint/science/research) +"djg" = ( +/obj/structure/table/wood, +/obj/item/food/grown/harebell, +/obj/item/food/grown/harebell{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/food/grown/harebell{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/pod/dark, +/area/station/service/chapel/funeral) +"djj" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/window/fulltile, +/turf/open/floor/grass, +/area/station/cargo/lobby) +"djo" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 1 + }, +/area/station/hallway/secondary/command) +"djs" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/station/common/night_club) +"djy" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/cargo/sorting) +"djI" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/turf/closed/wall/r_wall, +/area/station/maintenance/department/engine/atmos/lesser) +"djR" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/mix_output{ + dir = 4 + }, +/turf/open/floor/engine/vacuum, +/area/station/engineering/atmos) +"dkx" = ( +/obj/machinery/door/airlock/bathroom{ + name = "Restroom" + }, +/turf/open/floor/iron/grimy, +/area/station/service/chapel) +"dkF" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/open/floor/engine/co2, +/area/station/engineering/atmos) +"dkR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/power/emitter, +/obj/machinery/camera/directional/west{ + dir = 10 + }, +/turf/open/floor/engine, +/area/station/engineering/main) +"dkU" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/bitrunning/den) +"dkX" = ( +/obj/effect/turf_decal/vg_decals/department/hop{ + pixel_y = 32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/atm/directional/north, +/turf/open/floor/iron/dark/textured_edge, +/area/station/hallway/secondary/command) +"dlb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/herringbone, +/area/station/service/theater) +"dld" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/grimy, +/area/station/service/library) +"dle" = ( +/obj/structure/sign/warning/chem_diamond/directional/east, +/obj/structure/rack/shelf, +/obj/item/reagent_containers/cup/bottle/fluorine{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/reagent_containers/cup/bottle/epinephrine{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/reagent_containers/cup/bottle/iodine{ + pixel_x = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) +"dlg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/open/floor/iron/textured_large, +/area/station/science/ordnance) +"dln" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Gateway Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/general, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/upper) +"dlv" = ( +/obj/machinery/firealarm/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/purple/filled/line, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/science/ordnance/testlab) +"dlz" = ( +/obj/effect/spawner/random/vending/snackvend, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/siding/green{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/commons/dorms) +"dlB" = ( +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/science/research) +"dlE" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/landmark/start/security_officer, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/security/brig) +"dlN" = ( +/obj/structure/disposalpipe/sorting/mail{ + dir = 4; + name = "Bar Junction" + }, +/obj/effect/landmark/event_spawn, +/obj/effect/mapping_helpers/mail_sorting/service/bar, +/turf/open/floor/iron/white/textured_large, +/area/station/hallway/primary/fore) +"dme" = ( +/obj/structure/closet/crate, +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/item/airlock_painter/decal/tile, +/obj/item/airlock_painter/decal, +/obj/machinery/requests_console/auto_name/directional/south, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/cargo/warehouse) +"dmf" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/white/end, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"dml" = ( +/obj/structure/window/spawner/directional/north, +/obj/structure/window/spawner/directional/west, +/obj/structure/flora/bush/sparsegrass, +/obj/structure/flora/bush/flowers_pp, +/turf/open/floor/grass, +/area/station/hallway/secondary/exit/departure_lounge) +"dmn" = ( +/obj/machinery/door/airlock/grunge{ + name = "Morgue" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/medical/morgue, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"dmt" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/obj/effect/turf_decal/siding/green{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"dmE" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/engineering/atmos/storage) +"dmH" = ( +/obj/structure/closet/crate, +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/cargo/warehouse) +"dmJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/security/prison/garden) +"dmU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/station/security/detectives_office) +"dnm" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/machinery/suit_storage_unit/medical, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white, +/area/station/medical/storage) +"dnq" = ( +/obj/effect/turf_decal/tile/dark/fourcorners, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 4 + }, +/turf/open/floor/noslip, +/area/station/service/janitor) +"dnr" = ( +/obj/item/stack/cable_coil, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/station/solars/port/fore) +"dns" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/rack, +/obj/effect/turf_decal/trimline/green/arrow_ccw, +/obj/effect/turf_decal/box/white, +/turf/open/floor/iron/small, +/area/station/commons/dorms) +"dnE" = ( +/obj/machinery/airalarm/directional/south, +/obj/structure/closet/l3closet/scientist, +/obj/effect/turf_decal/tile/purple/diagonal_centre, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/iron/white/diagonal, +/area/station/science/xenobiology) +"dnW" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp{ + pixel_y = 4 + }, +/turf/open/floor/iron/grimy, +/area/station/hallway/primary/central/fore) +"dnX" = ( +/obj/machinery/computer/robotics, +/turf/open/floor/iron/white/textured_large, +/area/station/command/heads_quarters/rd) +"dnZ" = ( +/obj/machinery/computer/security/hos, +/obj/machinery/airalarm/directional/east, +/obj/machinery/status_display/ai/directional/north, +/obj/effect/turf_decal/bot, +/turf/open/floor/carpet/royalblack, +/area/station/command/heads_quarters/hos) +"dof" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/turf/open/floor/iron/freezer, +/area/station/medical/pharmacy) +"doh" = ( +/obj/structure/closet/crate/coffin, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/pod/dark, +/area/station/service/chapel/funeral) +"dou" = ( +/obj/machinery/airalarm/directional/south, +/obj/structure/rack, +/obj/effect/turf_decal/trimline/dark_red/filled/line, +/obj/item/pipe_dispenser, +/obj/item/analyzer, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/science/ordnance) +"dov" = ( +/obj/structure/sign/logo{ + pixel_y = 32 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge, +/area/station/hallway/primary/aft) +"dow" = ( +/obj/structure/table, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 5 + }, +/obj/structure/sign/departments/rndserver/directional/north, +/obj/item/taperecorder, +/obj/item/tape/random, +/turf/open/floor/iron/white, +/area/station/science/research) +"doI" = ( +/obj/item/storage/belt/utility, +/obj/item/radio/off, +/obj/item/radio/off, +/obj/item/radio/off, +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/gateway) +"doJ" = ( +/turf/closed/wall/r_wall, +/area/station/engineering/transit_tube) +"dpe" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/station/security/courtroom) +"dpo" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, +/obj/machinery/door/airlock/science/glass{ + name = "Ordnance Freezer Chamber" + }, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/turf/open/floor/engine/vacuum, +/area/station/science/ordnance/freezerchamber) +"dpx" = ( +/obj/structure/table/wood, +/obj/item/storage/crayons, +/obj/item/toy/crayon/spraycan{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/toy/crayon/spraycan, +/turf/open/floor/iron/grimy, +/area/station/service/library) +"dql" = ( +/obj/structure/reflector/single/anchored{ + dir = 9 + }, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/supermatter/room) +"dqy" = ( +/obj/structure/bed/double, +/obj/item/bedsheet/qm/double, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/carpet/black, +/area/station/command/heads_quarters/qm) +"dqJ" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 6 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"dqM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/bar) +"dqT" = ( +/obj/structure/cable/layer3, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/ai) +"dqZ" = ( +/obj/structure/flora/ocean/longseaweed, +/obj/effect/spawner/liquids_spawner{ + reagent_list = list(/datum/reagent/water=600) + }, +/turf/open/misc/asteroid, +/area/station/medical/medbay/lobby) +"dri" = ( +/obj/structure/table, +/obj/item/assembly/timer, +/obj/item/assembly/timer{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/assembly/timer{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/assembly/timer{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 5 + }, +/turf/open/floor/iron/textured, +/area/station/science/ordnance/testlab) +"drm" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/edge, +/area/station/commons/fitness/recreation/entertainment) +"drv" = ( +/obj/effect/turf_decal/bot, +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/landmark/start/detective, +/turf/open/floor/iron/grimy, +/area/station/security/detectives_office) +"drx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/security/brig) +"drT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Fore Primary Hallway" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/large, +/area/station/hallway/primary/fore) +"dsg" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/aft/lesser) +"dsj" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/textured_edge, +/area/station/hallway/primary/aft) +"dss" = ( +/obj/machinery/status_display/evac/directional/east, +/obj/effect/turf_decal/bot, +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/aisat/atmos) +"dsz" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/siding/red, +/turf/open/floor/iron/dark/textured_corner{ + dir = 4 + }, +/area/station/security/office) +"dsG" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"dsL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/science/research/abandoned) +"dsV" = ( +/obj/item/phone{ + desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; + pixel_x = -8; + pixel_y = -3 + }, +/obj/item/clothing/mask/cigarette/cigar{ + pixel_x = 4.5 + }, +/obj/item/clothing/mask/cigarette/cigar/havana{ + pixel_x = 3 + }, +/obj/item/clothing/mask/cigarette/cigar/cohiba{ + pixel_x = 6 + }, +/obj/item/flashlight/lamp{ + pixel_x = -5; + pixel_y = 13 + }, +/obj/structure/table/reinforced/plastitaniumglass, +/turf/open/floor/carpet/royalblack, +/area/station/command/heads_quarters/hos) +"dsW" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/iron/large, +/area/station/commons/storage/primary) +"dtb" = ( +/obj/effect/turf_decal/bot, +/obj/structure/safe{ + pixel_x = 3 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/stack/spacecash/c500{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/storage/belt/bandolier, +/obj/item/gun/ballistic/rifle/boltaction/pipegun, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/greater) +"dtc" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/siding/wood/end, +/turf/open/floor/wood, +/area/station/commons/fitness/recreation/entertainment) +"dtj" = ( +/obj/structure/rack/shelf, +/obj/effect/spawner/random/techstorage/security_all, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/obj/machinery/camera/directional/west{ + c_tag = "Technology Storage"; + name = "engineering camera" + }, +/turf/open/floor/pod/dark, +/area/station/engineering/storage/tech) +"dto" = ( +/turf/closed/wall, +/area/station/hallway/primary/fore) +"dtq" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/textured_corner{ + dir = 4 + }, +/area/station/cargo/warehouse) +"dtt" = ( +/obj/structure/lattice/catwalk, +/obj/structure/sign/warning/biohazard/directional/east, +/obj/item/binoculars, +/turf/open/space/basic, +/area/space/nearstation) +"dtG" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/clothing/gloves/color/yellow, +/obj/item/t_scanner, +/obj/item/multitool, +/obj/machinery/status_display/evac/directional/east, +/obj/effect/turf_decal/bot, +/turf/open/floor/pod/dark, +/area/station/engineering/storage/tech) +"dtH" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/item/stock_parts/cell/high, +/obj/item/integrated_circuit/chemical, +/obj/item/multitool, +/obj/structure/chemical_manufacturer, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"dtK" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance/four, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical) +"dtR" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/science/ordnance_maint) +"dtW" = ( +/obj/machinery/power/shieldwallgen/xenobiologyaccess, +/obj/structure/cable, +/obj/machinery/button/door/directional/west{ + id = "Xtestlab"; + layer = 4; + name = "Secure Creature Pen Blast Door"; + req_access = list("xenobiology") + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"dtY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured_large, +/area/station/science/ordnance/testlab) +"dub" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/dark/textured, +/area/station/medical/break_room) +"dul" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/trash_pile, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"duq" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/security/old{ + glass = 1; + name = "Gamer Den" + }, +/turf/open/floor/plating, +/area/station/security/prison) +"dus" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/solars/port/aft) +"duu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/textured_large, +/area/station/hallway/secondary/entry) +"duy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"duG" = ( +/obj/structure/cable/multilayer/connected, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/ai) +"duI" = ( +/obj/machinery/power/shuttle_engine/propulsion, +/turf/open/floor/plating, +/area/space/nearstation) +"duN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/machinery/light/small/directional/west, +/obj/item/stack/cable_coil{ + pixel_y = 8 + }, +/obj/item/stack/rods/ten{ + pixel_y = 4 + }, +/obj/item/stack/sheet/mineral/plasma{ + amount = 10 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/noticeboard/directional/south, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/electrical) +"duU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical/central) +"dve" = ( +/obj/structure/rack, +/obj/item/clothing/head/utility/welding, +/obj/item/wrench, +/obj/item/crowbar, +/obj/effect/turf_decal/bot, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/aisat/service) +"dvq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/spawner/random/engineering/tracking_beacon, +/turf/open/floor/circuit/red, +/area/station/science/robotics/mechbay) +"dvO" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/parquet, +/area/station/common/night_club) +"dvQ" = ( +/obj/machinery/mass_driver/ordnance{ + dir = 8; + name = "tesh tosser" + }, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/science/ordnance/testlab) +"dvU" = ( +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple/diagonal_centre, +/turf/open/floor/iron/white/diagonal, +/area/station/science/research) +"dvY" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Aft Central Primary Hallway" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/execution/transfer) +"dwd" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge, +/area/station/construction/mining/aux_base) +"dwg" = ( +/obj/machinery/camera/directional/east{ + c_tag = "Cargo Bay - Delivery Office Starboard"; + name = "cargo camera" + }, +/obj/effect/turf_decal/tile/red/half, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/window/right/directional/south{ + name = "Security Deliveries"; + req_access = list("cargo") + }, +/obj/effect/turf_decal/trimline/neutral/line, +/obj/effect/turf_decal/trimline/neutral/line, +/obj/effect/turf_decal/trimline/neutral/line, +/obj/effect/turf_decal/trimline/neutral/line, +/obj/effect/turf_decal/trimline/neutral/line, +/obj/effect/turf_decal/trimline/neutral/mid_joiner, +/obj/effect/turf_decal/trimline/neutral/mid_joiner, +/obj/effect/turf_decal/trimline/neutral/mid_joiner, +/obj/effect/turf_decal/trimline/neutral/mid_joiner, +/obj/effect/turf_decal/trimline/neutral/mid_joiner, +/turf/open/floor/iron/textured_large, +/area/station/cargo/sorting) +"dwi" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/maintenance/port/aft) +"dwE" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 9 + }, +/obj/machinery/dna_scannernew, +/obj/machinery/airalarm/directional/west, +/obj/effect/turf_decal/delivery, +/obj/machinery/requests_console/directional/north{ + department = "Genetics"; + name = "Genetics Requests console" + }, +/turf/open/floor/iron/white, +/area/station/science/genetics) +"dwH" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/remains/human, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"dwO" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"dxg" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/tile/purple/diagonal_centre, +/turf/open/floor/iron/white/diagonal, +/area/station/science/research) +"dxr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/airlock/public/glass{ + name = "Aft Central Primary Hallway" + }, +/turf/open/floor/iron/textured_large, +/area/station/commons/dorms) +"dxK" = ( +/turf/closed/wall, +/area/station/security/holding_cell) +"dxN" = ( +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"dxW" = ( +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/obj/machinery/vending/wardrobe/cargo_wardrobe, +/obj/effect/turf_decal/bot, +/obj/item/toy/figure/cargotech{ + pixel_y = 18 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/cargo/office) +"dyd" = ( +/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Ordnance Office Maintenance" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/science/ordnance_maint) +"dyf" = ( +/obj/structure/reagent_dispensers/watertank/high, +/obj/effect/turf_decal/stripes/line, +/obj/item/reagent_containers/cup/watering_can, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/hydroponics) +"dyl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/tank_holder/extinguisher, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine) +"dyw" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/medical/surgery) +"dyC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance/external/glass{ + name = "Space Bridge Access" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/department/medical) +"dyF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/office) +"dyQ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/security/brig) +"dyZ" = ( +/obj/effect/spawner/random/trash/garbage, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/central) +"dzh" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/medical/virology) +"dzk" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/machinery/porta_turret/ai, +/obj/effect/turf_decal/stripes/white/box, +/obj/effect/turf_decal/bot_red, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/ai_upload) +"dzp" = ( +/obj/structure/window/spawner/directional/south, +/mob/living/simple_animal/pet/cat/cak, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/starboard/greater) +"dzx" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/light_switch/directional/east, +/obj/machinery/photocopier, +/obj/effect/turf_decal/bot, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/nt_rep) +"dzy" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/obj/structure/sign/departments/chemistry/directional/north, +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/hallway/primary/aft) +"dzC" = ( +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"dzE" = ( +/obj/structure/chair/comfy/beige{ + dir = 1 + }, +/obj/machinery/button/door/directional/west{ + id = "Cabin2"; + name = "Dormitory Door Lock"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/wood, +/area/station/commons/dorms) +"dzH" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/all/medical/psychology, +/obj/machinery/door/airlock/psych{ + id_tag = "psych_bolt"; + name = "Psychology" + }, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/psychology) +"dAf" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/obj/structure/railing{ + dir = 5 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/hallway/primary/fore) +"dAj" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Port Mix to Starboard Ports" + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"dAp" = ( +/obj/machinery/door/airlock/external/ruin, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/effect/mapping_helpers/airlock/access/any/service/crematorium, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/service/chapel/office) +"dAz" = ( +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "Barshutters"; + name = "Bar Shutters" + }, +/obj/machinery/pollution_scrubber{ + pixel_x = 7; + pixel_y = -5 + }, +/turf/open/floor/iron/large, +/area/station/service/bar) +"dAD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/closet_empty, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/aft) +"dAG" = ( +/obj/structure/flora/bush/flowers_yw/style_random, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/machinery/camera/directional/north{ + c_tag = "Monastery Garden"; + network = list("ss13","monastery") + }, +/obj/machinery/light/small/directional/north, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/grass, +/area/station/service/chapel) +"dAI" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/camera/directional/east{ + c_tag = "AI Satellite - Fore Port"; + name = "ai camera"; + network = list("minisat"); + start_active = 1 + }, +/obj/structure/cable, +/turf/open/space/basic, +/area/space/nearstation) +"dAK" = ( +/obj/effect/turf_decal/bot, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/trimline/blue/filled/arrow_cw{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/arrow_ccw{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/secondary/command) +"dAL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/carpet/blue, +/area/station/command/bridge) +"dAP" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "genetics_shutters"; + name = "Genetics Shutters" + }, +/turf/open/floor/plating, +/area/station/science/genetics) +"dAX" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/department/science/xenobiology) +"dAY" = ( +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"dBe" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 9 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/structure/window/reinforced/spawner/directional/west, +/turf/open/floor/iron/white, +/area/station/science/explab) +"dBr" = ( +/obj/item/radio/intercom/directional/north{ + freerange = 1; + frequency = 1447; + listening = 0; + name = "Private Channel" + }, +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/ai) +"dBB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"dBC" = ( +/turf/open/floor/iron/textured, +/area/station/science/research/abandoned) +"dBF" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/hallway/primary/aft) +"dBG" = ( +/obj/structure/flora/bush/sparsegrass, +/obj/structure/window/reinforced/spawner/directional/east{ + layer = 2.9 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/grass, +/area/station/medical/virology) +"dBK" = ( +/obj/structure/railing, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/flowers_br, +/obj/structure/ore_container/gutlunch_trough, +/turf/open/floor/grass, +/area/station/hallway/secondary/exit/departure_lounge) +"dBO" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/camera/directional/east{ + c_tag = "Fore Primary Hallway - Aft"; + name = "hallway camera" + }, +/obj/effect/turf_decal/trimline/white/end{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 8 + }, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"dBV" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/atmos) +"dBW" = ( +/obj/item/gavelblock{ + pixel_y = 2 + }, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/table/wood/fancy/green, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/item/book/manual/wiki/security_space_law{ + pixel_y = 16 + }, +/obj/item/gavelhammer{ + pixel_y = 3 + }, +/turf/open/floor/wood/large, +/area/station/security/courtroom) +"dCg" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/obj/machinery/light/warm/directional/west, +/turf/open/floor/wood/large, +/area/station/service/theater) +"dCj" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/large, +/area/station/hallway/primary/fore) +"dCq" = ( +/turf/closed/wall, +/area/station/engineering/storage/tech) +"dDf" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/hallway/secondary/command) +"dDl" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/security/prison) +"dDp" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/status_display/evac/directional/north, +/obj/effect/turf_decal/tile/dark_red/diagonal_centre, +/obj/effect/turf_decal/tile/neutral/diagonal_centre, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/execution/transfer) +"dDq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/textured, +/area/station/science/research/abandoned) +"dDD" = ( +/obj/effect/turf_decal/trimline/dark_red/arrow_cw{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/table, +/obj/item/book/manual/wiki/security_space_law{ + pixel_y = 3 + }, +/obj/structure/sign/poster/official/random/directional/west, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"dDM" = ( +/obj/structure/cable, +/obj/structure/sign/painting/library{ + pixel_x = 32 + }, +/obj/structure/transit_tube/horizontal{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/transit_tube) +"dDN" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 10 + }, +/obj/structure/table, +/obj/item/pai_card, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"dDP" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/circuitboard/computer/bountypad, +/obj/item/circuitboard/computer/warrant, +/obj/effect/spawner/random/entertainment/money, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/fore) +"dDR" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/structure/bed/roller{ + dir = 4 + }, +/obj/machinery/newscaster/directional/east, +/obj/machinery/duct, +/obj/effect/turf_decal/box/blue, +/obj/item/bedsheet/medical, +/turf/open/floor/iron/freezer, +/area/station/medical/treatment_center) +"dEb" = ( +/obj/effect/turf_decal/box, +/obj/structure/closet/crate/science{ + anchored = 1 + }, +/obj/item/mod/core/standard{ + pixel_x = 4 + }, +/obj/item/mod/core/standard{ + pixel_x = -4 + }, +/obj/item/mod/core/standard{ + pixel_y = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/robotics/lab) +"dEu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/field/generator, +/turf/open/floor/engine, +/area/station/engineering/main) +"dEx" = ( +/turf/closed/wall/r_wall, +/area/station/engineering/break_room) +"dEO" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured_large, +/area/station/engineering/storage_shared) +"dFa" = ( +/obj/structure/mop_bucket/janitorialcart{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/kitchen{ + dir = 1 + }, +/area/station/security/prison/work) +"dFh" = ( +/obj/structure/disposalpipe/segment, +/obj/item/trash/syndi_cakes, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/fore) +"dFn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/textured_large, +/area/station/security/checkpoint/engineering) +"dFp" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 8 + }, +/area/station/security/prison) +"dFA" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/trimline/blue/filled/arrow_cw{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/arrow_ccw{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/secondary/command) +"dFG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/aft/lesser) +"dFN" = ( +/obj/effect/spawner/random/trash/garbage, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/upper) +"dFT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/station/maintenance/starboard/lesser) +"dGf" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 8 + }, +/obj/structure/table/wood/fancy/purple, +/obj/machinery/fax{ + fax_name = "Research Director's Office"; + name = "Research Director's Fax Machine"; + pixel_y = 3 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/rd) +"dGg" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/textured_large, +/area/station/hallway/primary/aft) +"dGj" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/structure/closet/crate/internals, +/obj/effect/turf_decal/bot, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/clothing/mask/breath/vox, +/obj/item/clothing/mask/breath/vox, +/obj/item/clothing/mask/breath/vox, +/obj/item/clothing/mask/breath/vox, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/hidden, +/turf/open/floor/iron/showroomfloor, +/area/station/medical/coldroom) +"dGw" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/railing, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/flowers_yw, +/turf/open/floor/grass, +/area/station/hallway/secondary/exit/departure_lounge) +"dGz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/hydroponics/glass{ + name = "Garden" + }, +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"dGB" = ( +/obj/structure/window/spawner/directional/east, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/vending/clothing, +/turf/open/floor/wood/large, +/area/station/commons/fitness/recreation/entertainment) +"dGK" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 6 + }, +/obj/structure/table, +/obj/item/storage/box{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/lights/mixed{ + pixel_x = -13; + pixel_y = 4 + }, +/turf/open/floor/iron/textured, +/area/station/cargo/sorting) +"dGL" = ( +/obj/structure/toilet/greyscale{ + dir = 4 + }, +/obj/machinery/light/small/directional/west, +/obj/machinery/newscaster/directional/north, +/obj/effect/spawner/random/contraband/prison, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 9 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"dGO" = ( +/obj/structure/bookcase/random/nonfiction, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/large, +/area/station/service/library) +"dGU" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/cargo/storage) +"dGX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/dark/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 1 + }, +/area/station/security/office) +"dGZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/corporate{ + name = "Consultant's Quarters" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/captain, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/wood/end, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/nt_rep) +"dHa" = ( +/obj/structure/bookcase/random/religion, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/wood/large, +/area/station/service/library) +"dHe" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/engine/atmos) +"dHm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"dHs" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/spawner/random/structure/steam_vent, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/science/ordnance_maint) +"dHB" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/atmos) +"dHE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/purple/filled/corner, +/turf/open/floor/iron/dark/textured_corner, +/area/station/science/robotics/mechbay) +"dHN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/machinery/light/small/blacklight/directional/north, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/gravity_generator) +"dHS" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/structure/bed/dogbed{ + anchored = 1; + name = "Jerry's bed" + }, +/mob/living/simple_animal/pet/cat/jerry, +/turf/open/floor/wood, +/area/station/security/prison/garden) +"dIf" = ( +/obj/machinery/modular_computer/preset/civilian{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue/half, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"dIg" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/station/security/prison/garden) +"dIw" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/science/lab) +"dIE" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"dIJ" = ( +/obj/machinery/vending/wallmed/directional/north, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/structure/sink/directional/south, +/turf/open/floor/iron/freezer, +/area/station/medical/treatment_center) +"dIL" = ( +/obj/structure/bed/double, +/obj/effect/spawner/random/bedsheet/any/double, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/station/maintenance/department/science/xenobiology) +"dIM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/diagonal, +/area/station/hallway/secondary/service) +"dIO" = ( +/obj/machinery/computer/operating{ + dir = 1; + name = "Robotics Operating Computer" + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/dark_red/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/science/robotics/lab) +"dJb" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/layer_manifold/cyan/visible{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos/storage) +"dJj" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/aft) +"dJo" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/obj/structure/sign/poster/contraband/missing_gloves/directional/east, +/obj/machinery/power/smes, +/obj/structure/cable, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/electrical) +"dJr" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/carpet/orange, +/area/station/command/heads_quarters/ce) +"dJu" = ( +/obj/item/banner/science/mundane, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/science/lab) +"dJw" = ( +/obj/machinery/power/emitter/welded{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/engineering/supermatter/room) +"dJD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"dJF" = ( +/obj/structure/table/wood, +/obj/structure/displaycase/forsale{ + pixel_y = 8 + }, +/obj/effect/turf_decal/siding/green{ + dir = 10 + }, +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"dJK" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/landmark/blobstart, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/fore) +"dJN" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external/glass{ + name = "Arrival Airlock"; + space_dir = 2 + }, +/turf/open/floor/catwalk_floor, +/area/station/hallway/secondary/entry) +"dJY" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/pen{ + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/newscaster/directional/north, +/obj/machinery/button/door/directional/east{ + id = "bankvault"; + name = "Bank Door Lock"; + normaldoorcontrol = 1; + pixel_y = 8; + specialfunctions = 4 + }, +/obj/machinery/button/door/directional/east{ + id = "bankshutter"; + name = "Bank Shutter Toggle"; + pixel_y = -8 + }, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/greater) +"dKm" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"dKE" = ( +/turf/open/floor/iron/chapel{ + dir = 6 + }, +/area/station/service/chapel) +"dKF" = ( +/turf/closed/wall, +/area/station/maintenance/department/engine/atmos/lesser) +"dKK" = ( +/obj/machinery/growing/tray, +/obj/machinery/light/warm/directional/north, +/turf/open/floor/grass, +/area/station/security/prison/garden) +"dKO" = ( +/obj/machinery/growing/soil, +/obj/item/seeds/poppy, +/turf/open/floor/grass, +/area/station/service/chapel) +"dKQ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/firealarm/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/chair/comfy/brown{ + buildstackamount = 0; + color = "#4169e1"; + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain/private) +"dKU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/security/prison) +"dKZ" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/pod/dark, +/area/station/service/chapel/office) +"dLf" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 10 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/office) +"dLi" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/cable, +/obj/structure/railing{ + pixel_y = -5 + }, +/turf/open/floor/grass, +/area/station/service/hydroponics/upper) +"dLk" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Garden Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/greater) +"dLo" = ( +/obj/effect/turf_decal/tile/red/full, +/turf/open/floor/pod/dark, +/area/station/service/chapel/office) +"dLt" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/iron/textured_large, +/area/station/hallway/primary/aft) +"dLv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/large, +/area/station/commons/fitness/recreation) +"dLw" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/central) +"dLz" = ( +/obj/effect/turf_decal/tile/red/fourcorners, +/turf/open/floor/iron/dark/textured, +/area/station/security/warden) +"dLE" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Xenobiology - Cytology Desk"; + name = "xenobiology camera"; + network = list("ss13","xeno","rd") + }, +/obj/machinery/reagentgrinder{ + pixel_y = 7 + }, +/turf/open/floor/iron/white/textured_edge, +/area/station/science/xenobiology) +"dLJ" = ( +/obj/effect/landmark/start/mime, +/turf/open/floor/wood/large, +/area/station/service/theater) +"dLK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/turf/open/floor/iron/dark/textured_corner, +/area/station/hallway/secondary/command) +"dLP" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/item/kirbyplants/photosynthetic, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/ai_upload) +"dMb" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/item/radio/intercom/directional/east, +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/stack/cable_coil/five, +/obj/item/multitool, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/power_room) +"dMf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera/directional/east{ + c_tag = "Monastery Cloister Starboard"; + network = list("ss13","monastery") + }, +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"dMg" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/security/armory) +"dMh" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/cargo/office) +"dMl" = ( +/obj/structure/chair/sofa/left/brown{ + dir = 8 + }, +/obj/structure/sign/poster/official/help_others/directional/east, +/turf/open/floor/iron/textured_large, +/area/station/cargo/miningoffice) +"dMz" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"dME" = ( +/obj/machinery/power/emitter/welded{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/engineering/supermatter/room) +"dMK" = ( +/obj/machinery/door/airlock/engineering{ + name = "Starboard Bow Solar Access" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/solars/starboard/fore) +"dMS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/solars/port/aft) +"dMY" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod"; + space_dir = 1 + }, +/obj/effect/landmark/navigate_destination/dockescpod4, +/turf/open/floor/catwalk_floor, +/area/station/medical/medbay/central) +"dMZ" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/science/research) +"dNb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/pod/dark, +/area/station/engineering/storage/tech) +"dNc" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Secure Tech Storage" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/tech_storage, +/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/pod/dark, +/area/station/engineering/storage/tech) +"dNh" = ( +/obj/structure/cable, +/turf/open/floor/iron/textured, +/area/station/science/research/abandoned) +"dNz" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/entry) +"dNF" = ( +/obj/effect/turf_decal/trimline/red/filled/corner, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured_corner, +/area/station/security/brig) +"dNH" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/medical/medbay/central) +"dNL" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/wood/parquet, +/area/station/common/night_club) +"dNV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/office) +"dOd" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/bot, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/iron/textured_large, +/area/station/engineering/lobby) +"dOw" = ( +/obj/effect/spawner/random/trash/grime, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/broken/directional/east, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/iron/terracotta, +/area/station/service/kitchen/abandoned) +"dOx" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos/hfr_room) +"dOM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/qm) +"dOV" = ( +/obj/structure/sign/poster/random/directional/south, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/lesser) +"dOW" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/effect/turf_decal/trimline/blue/filled/warning, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/atmos) +"dOX" = ( +/obj/machinery/door/airlock/vault{ + id_tag = "bank"; + name = "Bank Vault" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/effect/mapping_helpers/airlock/access/all/supply/vault, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/aft/greater) +"dPb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical/morgue) +"dPc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/caution/stand_clear/red{ + dir = 4 + }, +/obj/machinery/door/window/right/directional/west{ + name = "Range" + }, +/turf/open/floor/engine, +/area/station/science/auxlab/firing_range) +"dPe" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/ai_upload) +"dPm" = ( +/obj/structure/table, +/obj/item/storage/crayons, +/obj/item/storage/crayons, +/obj/item/chisel{ + pixel_y = 7 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 9 + }, +/obj/machinery/airalarm/directional/north, +/obj/machinery/camera/directional/north{ + c_tag = "Dormitories - Art Storage"; + name = "dormitories camera" + }, +/turf/open/floor/iron, +/area/station/commons/storage/art) +"dPv" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/machinery/smartfridge/chemistry/preloaded, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistry_shutters_south"; + name = "Pharmacy Shutters" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/pharmacy) +"dPw" = ( +/obj/effect/turf_decal/trimline/dark_red/filled/line, +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/secondary/construction) +"dPF" = ( +/obj/structure/table/reinforced/rglass, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/item/storage/box/flashbangs, +/obj/item/restraints/handcuffs, +/obj/item/assembly/flash/handheld, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/effect/turf_decal/tile/dark_red/anticorner{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"dPO" = ( +/obj/machinery/door/airlock/maintenance_hatch, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/kitchen/abandoned) +"dPU" = ( +/obj/machinery/power/shuttle_engine/heater, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/north, +/turf/open/floor/plating, +/area/space/nearstation) +"dPY" = ( +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/obj/effect/landmark/start/atmospheric_technician, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/disposal/incinerator) +"dQi" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/greater) +"dQm" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/tile/red/anticorner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/pod/dark, +/area/station/service/chapel/office) +"dQq" = ( +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"dQr" = ( +/obj/structure/bed/roller{ + dir = 4 + }, +/obj/item/bedsheet/medical, +/obj/machinery/iv_drip, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/security/medical) +"dQu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/virology) +"dQE" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/machinery/airalarm/directional/south, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/commons/fitness/recreation) +"dQH" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/anesthetic_mix, +/obj/structure/window/spawner/directional/west, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/turf/open/floor/iron/dark/textured, +/area/station/medical/medbay/central) +"dQO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/dark_green/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/medical/virology) +"dQX" = ( +/obj/structure/toilet/greyscale{ + dir = 4 + }, +/obj/machinery/light/small/directional/west, +/obj/machinery/newscaster/directional/north, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 9 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"dRs" = ( +/obj/structure/disposalpipe/junction/yjunction, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/lobby) +"dRQ" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 5 + }, +/obj/structure/flora/grass/jungle/b, +/turf/open/floor/grass, +/area/station/hallway/primary/central/fore) +"dRR" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/radiation, +/obj/item/clothing/glasses/meson, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/supermatter/room) +"dRS" = ( +/obj/structure/closet/secure_closet/brig, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/dark_red/diagonal_centre, +/obj/effect/turf_decal/tile/neutral/diagonal_centre, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/execution/transfer) +"dRX" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/item/banner/medical/mundane, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"dRZ" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/carpet/green, +/area/station/commons/dorms) +"dSa" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/dish_drive/bullet, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/security/armory) +"dSc" = ( +/obj/item/radio/intercom/directional/south, +/turf/open/floor/glass/reinforced, +/area/station/security/execution/transfer) +"dSe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/primary/fore) +"dSB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"dSC" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/steam_vent, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/department/engine/atmos/lesser) +"dSI" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"dST" = ( +/obj/effect/turf_decal/tile/red/full, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/pod/dark, +/area/station/service/chapel/office) +"dSV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/barricade/wooden/crude, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/machinery/door/airlock/maintenance{ + id_tag = "bankvault"; + name = "Bank" + }, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/greater) +"dTb" = ( +/obj/effect/turf_decal/trimline/green/warning{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/small, +/area/station/commons/dorms) +"dTe" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/nova_decals/enclave/middle/right{ + color = "#52B4E9" + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/mid_joiner{ + dir = 8 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/lobby) +"dTn" = ( +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 5 + }, +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/iron/white, +/area/station/science/explab) +"dTw" = ( +/obj/item/storage/secure/safe/directional/north, +/obj/structure/table/wood/fancy/purple, +/obj/item/folder/syndicate{ + desc = "A folder stamped \"Top Secret - Property of Nanotrasen.\""; + pixel_x = 3; + pixel_y = 6 + }, +/obj/item/folder{ + pixel_x = -4; + pixel_y = 4 + }, +/turf/open/floor/carpet/purple, +/area/station/command/heads_quarters/rd) +"dTz" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/crew_quarters/bar) +"dTG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet/blue, +/area/station/command/heads_quarters/cmo) +"dTL" = ( +/obj/machinery/status_display/evac/directional/west, +/obj/machinery/vending/access/command, +/obj/item/toy/figure/wizard{ + pixel_y = 17 + }, +/obj/effect/turf_decal/siding/dark_blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue/half{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"dUa" = ( +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/obj/effect/landmark/start/shaft_miner, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/miningdock) +"dUf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"dUj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/siding/red, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/office) +"dUw" = ( +/obj/effect/spawner/random/trash/hobo_squat, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/science/ordnance_maint) +"dUD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/random/structure/steam_vent, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/greater) +"dUO" = ( +/obj/machinery/atmospherics/components/trinary/filter/flipped{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/aft) +"dVb" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/iron/dark/textured_edge, +/area/station/hallway/primary/fore) +"dVc" = ( +/turf/open/floor/carpet/black, +/area/station/service/chapel/office) +"dVe" = ( +/obj/effect/spawner/random/trash/grille_or_waste, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine/atmos) +"dVs" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/closet/emcloset/wall{ + pixel_x = 32 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/white/end{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/secondary/command) +"dVy" = ( +/obj/effect/landmark/start/ai/secondary, +/obj/item/radio/intercom/directional/north{ + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_x = 8 + }, +/obj/item/radio/intercom/directional/east{ + freerange = 1; + listening = 0; + name = "Common Channel" + }, +/obj/item/radio/intercom/directional/south{ + freerange = 1; + frequency = 1447; + listening = 0; + name = "Private Channel"; + pixel_x = 8 + }, +/turf/open/floor/circuit/green, +/area/station/ai_monitored/turret_protected/ai) +"dVG" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/atmos) +"dVS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/engine/atmos) +"dVV" = ( +/obj/effect/landmark/start/chief_engineer, +/obj/structure/chair/office{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/ce) +"dVY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"dWg" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/taperecorder{ + pixel_x = -10; + pixel_y = 4 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 5 + }, +/obj/item/camera{ + pixel_y = 2 + }, +/obj/item/storage/photo_album/library{ + pixel_y = 11 + }, +/turf/open/floor/cult, +/area/station/service/library) +"dWs" = ( +/obj/item/banner/command/mundane, +/turf/open/floor/iron/airless{ + icon_state = "dark_large" + }, +/area/space/nearstation) +"dWt" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom/directional/north, +/obj/item/circuitboard/machine/telecomms/bus{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/circuitboard/machine/telecomms/broadcaster, +/obj/machinery/camera/directional/north{ + c_tag = "Telecomms Storage"; + name = "engineering camera"; + network = list("ss13","engine") + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/storage/tcomms) +"dWx" = ( +/obj/structure/chair/sofa/bench/left, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"dWS" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 9 + }, +/obj/structure/closet/emcloset/wall{ + pixel_x = -32 + }, +/obj/effect/turf_decal/trimline/white/end{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) +"dWT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/pod/dark, +/area/station/engineering/storage/tech) +"dWV" = ( +/obj/structure/table/wood, +/obj/machinery/computer/security/wooden_tv{ + pixel_y = 8 + }, +/obj/structure/window/reinforced/spawner/directional/east{ + layer = 2.9 + }, +/obj/structure/plaque/static_plaque/golden/captain{ + pixel_y = 32 + }, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain) +"dWX" = ( +/turf/closed/wall, +/area/station/maintenance/department/science/xenobiology) +"dWY" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/bot, +/obj/item/stock_parts/cell/high, +/obj/item/lightreplacer, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"dXa" = ( +/obj/effect/landmark/start/hangover, +/obj/effect/landmark/navigate_destination/bar, +/turf/open/floor/iron/grimy, +/area/station/commons/lounge) +"dXg" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood, +/area/station/hallway/secondary/entry) +"dXs" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/telecomms/receiver/preset_left, +/turf/open/floor/circuit/telecomms/server, +/area/station/tcommsat/server) +"dXu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/engineering/supermatter/room) +"dXM" = ( +/obj/effect/spawner/random/trash/grime, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"dXU" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/turf/open/floor/plating/airless, +/area/station/maintenance/department/engine) +"dXW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/aft) +"dXY" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 1 + }, +/obj/machinery/cassette/mailbox, +/turf/open/floor/wood/large, +/area/station/service/library) +"dXZ" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/structure/table, +/obj/machinery/recharger{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/machinery/light/warm/directional/south, +/obj/machinery/camera/directional/south{ + c_tag = "Security - Office Aft" + }, +/obj/item/radio{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/machinery/requests_console/directional/south{ + department = "Security"; + name = "Security Requests Console" + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/security/office) +"dYb" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "AI Core shutters"; + name = "AI Core Shutters" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/ai_monitored/turret_protected/ai) +"dYc" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Surgery Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/surgery, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical/morgue) +"dYh" = ( +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"dYi" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/aft) +"dYr" = ( +/obj/structure/transit_tube, +/obj/effect/spawner/structure/window/hollow/reinforced/middle, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"dYB" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "Cell5Privacy"; + name = "curtain" + }, +/turf/open/floor/plating, +/area/station/security/prison) +"dYG" = ( +/obj/machinery/airalarm/directional/west, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 8 + }, +/obj/structure/table, +/obj/item/stack/sheet/iron/five, +/obj/item/stack/cable_coil/five, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/commons/vacant_room) +"dYR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/blue/filled/warning, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/medical/medbay/central) +"dYV" = ( +/obj/effect/turf_decal/box/white, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos/hfr_room) +"dYX" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/item/radio/intercom/directional/east, +/obj/machinery/status_display/ai/directional/south, +/obj/structure/table/wood/fancy/blue, +/obj/machinery/fax{ + fax_name = "Chief Medical Officer's Office"; + name = "Chief Medical Officer's Fax Machine"; + pixel_y = 3 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/cmo) +"dZd" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/landmark/generic_maintenance_landmark, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/fore) +"dZs" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Justice gas pump" + }, +/obj/effect/turf_decal/trimline/dark_red/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/line, +/turf/open/floor/iron/dark/textured, +/area/station/security/execution/education) +"dZt" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/office) +"dZv" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 5 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"dZy" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/storage) +"dZH" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/table/reinforced, +/obj/item/clothing/shoes/magboots{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/shoes/magboots, +/turf/open/floor/iron/textured, +/area/station/engineering/storage) +"dZN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/item/radio/intercom/directional/east, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall18"; + location = "hall17" + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/hallway/secondary/command) +"dZR" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) +"eai" = ( +/obj/machinery/porta_turret/ai, +/obj/effect/turf_decal/stripes/white/box, +/obj/structure/sign/nanotrasen{ + pixel_x = -32 + }, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/ai) +"eak" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/department/medical/central) +"eam" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/grimy, +/area/station/commons/dorms) +"eaL" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/security/prison) +"eaM" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "chemistry_shutters"; + name = "Pharmacy Shutters" + }, +/turf/open/floor/plating/airless, +/area/station/medical/pharmacy) +"eaR" = ( +/obj/item/reagent_containers/cup/glass/drinkingglass{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/reagent_containers/cup/glass/drinkingglass{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/item/reagent_containers/cup/rag{ + pixel_y = 3 + }, +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "Barshutters"; + name = "Bar Shutters" + }, +/turf/open/floor/iron/large, +/area/station/service/bar) +"eaV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/white/textured_corner{ + dir = 8 + }, +/area/station/science/research) +"ebf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/white/small, +/area/station/common/pool) +"ebj" = ( +/turf/open/floor/iron/dark/textured_large, +/area/station/command/gateway) +"ebo" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Chapel Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/service/chapel_office, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/pod, +/area/station/service/chapel/funeral) +"ebv" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/wood, +/area/station/service/hydroponics/upper) +"ebz" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/carpet, +/area/station/commons/dorms) +"ebF" = ( +/obj/effect/turf_decal/siding/thinplating_new/terracotta/corner, +/obj/structure/closet/secure_closet/freezer/kitchen/maintenance, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"ebS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/plating, +/area/station/maintenance/department/engine/atmos) +"eci" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"ecj" = ( +/obj/structure/closet/secure_closet/hydroponics, +/obj/machinery/light/directional/north, +/turf/open/floor/wood, +/area/station/service/hydroponics/upper) +"ecl" = ( +/obj/structure/table, +/obj/machinery/requests_console/directional/west{ + department = "Kitchen"; + name = "Kitchen Requests Console" + }, +/obj/machinery/microwave{ + desc = "Cooks and boils stuff, somehow."; + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"ecq" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "atmoshfr" + }, +/turf/open/floor/plating/airless, +/area/station/engineering/atmos/hfr_room) +"ecx" = ( +/obj/machinery/plumbing/ooze_sucker{ + mapping_id = "3"; + dir = 1 + }, +/obj/machinery/light/floor/has_bulb, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"ecy" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/iron/textured_large, +/area/station/command/heads_quarters/hos) +"ecE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/security/brig) +"ecF" = ( +/obj/structure/sign/poster/random/directional/east, +/obj/effect/spawner/random/trash/hobo_squat, +/obj/effect/decal/cleanable/plastic, +/obj/effect/decal/cleanable/oil, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/crew_quarters/bar) +"ecK" = ( +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"ecR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/greater) +"ecV" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/structure/sign/poster/official/random/directional/west, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/primary/central/aft) +"ecX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/large, +/area/station/commons/fitness/recreation) +"ecY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/tcommsat/computer) +"edi" = ( +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + dir = 9; + name = "blue line" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/prison) +"edt" = ( +/obj/effect/landmark/start/hangover, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/common/cryopods) +"edL" = ( +/obj/machinery/plumbing/ooze_sucker{ + mapping_id = "5" + }, +/obj/machinery/light/floor/has_bulb, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"eef" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/greater) +"eeh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Chapel" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/navigate_destination/chapel, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/primary/fore) +"een" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/pod/dark, +/area/station/service/chapel/office) +"eev" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/courtroom) +"eey" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/effect/turf_decal/siding/wood/end{ + dir = 1 + }, +/obj/item/storage/briefcase, +/turf/open/floor/wood, +/area/station/commons/dorms) +"eeC" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/duct, +/turf/open/floor/iron/freezer, +/area/station/medical/treatment_center) +"eeF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/aft/greater) +"eeN" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east{ + freerange = 1; + frequency = 1447; + name = "Private Channel" + }, +/obj/machinery/camera/directional/east{ + c_tag = "AI Satellite - Maintenance"; + name = "ai camera"; + network = list("minisat"); + start_active = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/aisat/atmos) +"eeO" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/large, +/area/station/hallway/primary/fore) +"eeX" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"eeY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/table/reinforced, +/turf/open/floor/engine, +/area/station/science/auxlab/firing_range) +"efa" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/obj/structure/sign/directions/engineering/directional/west{ + dir = 2; + pixel_y = -8 + }, +/obj/structure/sign/directions/medical/directional/west{ + dir = 2 + }, +/obj/structure/sign/directions/dorms/directional/west{ + dir = 2; + pixel_y = 8 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"efd" = ( +/obj/effect/turf_decal/trimline/dark_red/arrow_ccw, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"efi" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "Cell4Privacy"; + name = "curtain" + }, +/turf/open/floor/plating, +/area/station/security/prison) +"efl" = ( +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_edge, +/area/station/hallway/secondary/command) +"efn" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/exam_room) +"efo" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/hallway/secondary/command) +"efx" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/half, +/area/station/hallway/primary/central) +"efz" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 5 + }, +/turf/open/floor/iron/dark/textured, +/area/station/bitrunning/den) +"efH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 9 + }, +/turf/open/floor/iron/textured, +/area/station/cargo/drone_bay) +"efJ" = ( +/obj/structure/rack, +/obj/item/storage/box/lights/mixed, +/obj/item/clothing/gloves/botanic_leather, +/obj/item/clothing/gloves/color/blue, +/obj/item/clothing/suit/caution, +/obj/item/clothing/suit/caution, +/obj/item/clothing/suit/caution, +/obj/item/clothing/suit/caution, +/obj/item/reagent_containers/cup/bucket, +/obj/item/reagent_containers/cup/bucket, +/obj/item/mop, +/obj/item/mop, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/item/storage/bag/trash, +/obj/item/pushbroom, +/obj/machinery/computer/security/telescreen/entertainment/directional/south, +/obj/effect/turf_decal/bot, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/kitchen{ + dir = 1 + }, +/area/station/commons/dorms/laundry) +"efP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/iron/sepia, +/area/station/service/library) +"efQ" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/effect/landmark/start/station_engineer, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/lobby) +"egg" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/ai_monitored/command/storage/eva) +"egh" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark/fourcorners, +/turf/open/floor/noslip, +/area/station/service/janitor) +"egk" = ( +/turf/closed/wall/mineral/plastitanium, +/area/station/security/execution/transfer) +"egy" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/space, +/area/station/solars/starboard/fore) +"egE" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/wood/large, +/area/station/service/theater) +"egF" = ( +/obj/structure/chair/plastic{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/hallway/secondary/command) +"egH" = ( +/obj/item/wrench, +/obj/item/weldingtool, +/obj/item/clothing/head/utility/welding{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/structure/rack, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/supermatter/room) +"egJ" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Atmospherics - Entrance"; + name = "atmospherics camera"; + network = list("ss13","engine") + }, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/atmos) +"egK" = ( +/obj/machinery/growing/soil, +/obj/item/seeds/wheat, +/turf/open/floor/grass, +/area/station/service/chapel) +"egP" = ( +/obj/effect/spawner/random/trash/garbage, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/crew_quarters/bar) +"ehe" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical) +"ehk" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/parquet, +/area/station/common/night_club) +"ehl" = ( +/obj/structure/bed/roller, +/obj/effect/turf_decal/bot, +/obj/machinery/vending/wallmed/directional/east, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/command/gateway) +"ehn" = ( +/obj/machinery/light/directional/east, +/obj/machinery/newscaster/directional/east, +/obj/machinery/vending/wardrobe/chef_wardrobe, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"ehD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/security/prison) +"ehU" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/iron/dark/textured, +/area/station/security/range) +"eie" = ( +/obj/machinery/light/small/directional/east, +/obj/machinery/camera/directional/east{ + c_tag = "Chapel Starboard"; + network = list("ss13","monastery") + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"ein" = ( +/obj/structure/displaycase/forsale/kitchen{ + pixel_y = 8 + }, +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "Barshutters"; + name = "Bar Shutters" + }, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/large, +/area/station/service/bar) +"eip" = ( +/obj/effect/turf_decal/siding/dark_blue{ + dir = 8 + }, +/obj/item/kirbyplants/organic/plant21, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"eit" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"eiw" = ( +/obj/machinery/door/morgue{ + name = "Confession Booth" + }, +/turf/open/floor/iron/dark/textured, +/area/station/service/chapel/office) +"eiE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/aft) +"eiJ" = ( +/obj/machinery/growing/tray, +/obj/structure/cable, +/turf/open/floor/grass, +/area/station/security/prison/garden) +"eiS" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical/morgue) +"eiV" = ( +/obj/structure/table, +/obj/item/storage/medkit/brute{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/medkit/brute, +/obj/item/storage/medkit/regular{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/window/reinforced/spawner/directional/east{ + layer = 2.9 + }, +/obj/machinery/status_display/ai/directional/west, +/obj/effect/turf_decal/trimline/purple/filled, +/obj/effect/turf_decal/trimline/purple/filled/mid_joiner, +/obj/effect/turf_decal/trimline/purple/filled/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/filled/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/mid_joiner{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/storage) +"eiX" = ( +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/cargo/lobby) +"eju" = ( +/obj/structure/rack, +/obj/effect/spawner/random/clothing/costume, +/obj/effect/spawner/random/maintenance, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/fore) +"ejx" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/iron/herringbone, +/area/station/service/theater) +"ejQ" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/turf/open/space/basic, +/area/space/nearstation) +"ejU" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/machinery/airalarm/directional/east, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain/private) +"ejY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Emitter Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"ekf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/lobby) +"ekg" = ( +/obj/structure/flora/bush/flowers_pp/style_random, +/turf/open/floor/grass, +/area/station/service/chapel) +"eks" = ( +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "Barshutters"; + name = "Bar Shutters" + }, +/obj/structure/desk_bell{ + pixel_x = 7; + pixel_y = 10 + }, +/obj/item/reagent_containers/cup/glass/drinkingglass{ + pixel_x = -3 + }, +/turf/open/floor/iron/large, +/area/station/service/bar) +"ekt" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/dark_blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue/half{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"ekQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/textured_large, +/area/station/cargo/miningoffice) +"ekT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/station/service/lawoffice) +"ekX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/engineering/canister, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/science/ordnance_maint) +"elk" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Pure to Ports" + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"elm" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/structure/table/wood/fancy/green, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/sign/painting/library{ + pixel_x = -32 + }, +/obj/machinery/fax{ + fax_name = "Consultant's Office"; + name = "Consultant's Fax Machine"; + pixel_y = 3 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/nt_rep) +"elo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/chair/stool, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"elp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/filled/warning, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/science/robotics/lab) +"elt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/cable/layer3, +/turf/open/floor/circuit/green, +/area/station/ai_monitored/turret_protected/ai) +"elB" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/structure/chair/sofa/corp/left{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/mess) +"emc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/greater) +"emd" = ( +/obj/effect/spawner/random/structure/crate_abandoned, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"eme" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/textured, +/area/station/command/cc_dock) +"emh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "atmoshfr" + }, +/turf/open/floor/iron/stairs/left{ + dir = 4 + }, +/area/station/engineering/atmos/hfr_room) +"emq" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/stamp/denied{ + pixel_x = -7; + pixel_y = 9 + }, +/obj/item/stamp{ + pixel_x = -7; + pixel_y = 1 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/cargo/storage) +"emE" = ( +/obj/structure/table/wood/fancy/black, +/obj/item/reagent_containers/cup/glass/bottle/lizardwine{ + pixel_x = 6; + pixel_y = 12 + }, +/obj/item/reagent_containers/cup/glass/bottle/cognac{ + pixel_x = -8; + pixel_y = 9 + }, +/obj/item/reagent_containers/cup/glass/bottle/sake{ + pixel_y = 10 + }, +/obj/machinery/status_display/ai/directional/west, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, +/area/station/service/bar) +"emF" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"emI" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 8 + }, +/obj/structure/flora/bush/sparsegrass, +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 + }, +/turf/open/floor/grass, +/area/station/hallway/primary/central/fore) +"enl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/lobby) +"ens" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured_large, +/area/station/cargo/drone_bay) +"ent" = ( +/obj/structure/table/glass, +/obj/item/stack/medical/gauze, +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/structure/curtain, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron/freezer, +/area/station/medical/treatment_center) +"enw" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "mining" + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/iron/textured_large, +/area/station/cargo/miningdock) +"enC" = ( +/obj/structure/bed/double, +/obj/effect/spawner/random/bedsheet/any/double, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/carpet, +/area/station/commons/dorms) +"enJ" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/camera/directional/north{ + c_tag = "Security Hallway"; + name = "hallway camera" + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron/dark/textured_edge, +/area/station/hallway/primary/fore) +"enK" = ( +/obj/structure/chair/comfy/teal{ + dir = 4 + }, +/turf/open/floor/carpet/blue, +/area/station/command/bridge) +"enL" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 6 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/main) +"enT" = ( +/obj/machinery/porta_turret/ai, +/obj/effect/turf_decal/stripes/white/box, +/obj/structure/sign/departments/aisat/directional/west, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/aisat_interior) +"enW" = ( +/turf/closed/wall/r_wall, +/area/station/science/ordnance/storage) +"enY" = ( +/obj/machinery/modular_computer/preset/cargochat/engineering{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/brown/filled/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_large, +/area/station/engineering/lobby) +"eon" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/sink/directional/east, +/turf/open/floor/iron/dark/small, +/area/station/security/prison/garden) +"eoq" = ( +/obj/structure/reagent_dispensers/plumbed{ + dir = 1; + name = "science water reservoir" + }, +/obj/effect/turf_decal/tile/purple/opposingcorners, +/obj/effect/turf_decal/delivery/blue, +/turf/open/floor/iron/textured, +/area/station/commons/vacant_room) +"eou" = ( +/obj/structure/closet, +/obj/effect/turf_decal/delivery, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/fore) +"eoB" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 2; + name = "Research Junction" + }, +/obj/machinery/duct, +/obj/effect/mapping_helpers/mail_sorting/science/research, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/science/research) +"eoF" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/power_room) +"eoX" = ( +/obj/structure/table, +/obj/effect/turf_decal/bot, +/obj/item/stack/sheet/iron/fifty{ + pixel_x = 4 + }, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = -4 + }, +/obj/item/stack/sheet/plasteel/twenty{ + pixel_y = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/main) +"epk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 5 + }, +/obj/structure/drain, +/obj/machinery/shower/directional/north, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron/checker, +/area/station/engineering/power_room) +"epl" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/machinery/light/warm/directional/south, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/iron/grimy, +/area/station/security/detectives_office) +"epZ" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/bot, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 1 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_y = 4; + pixel_x = 9 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) +"eqi" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/turf/open/floor/iron/textured_large, +/area/station/engineering/main) +"eqA" = ( +/obj/machinery/computer/apc_control{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/button/door/directional/west{ + id = "engielock"; + name = "Engineering Lockdown Control"; + pixel_y = -8; + req_access = list("engineering") + }, +/obj/machinery/button/door/directional/west{ + id = "atmoslock"; + name = "Atmospherics Lockdown Control"; + pixel_y = 4; + req_access = list("atmospherics") + }, +/obj/machinery/button/door/directional/west{ + id = "engstorage"; + name = "Engineering Secure Storage Control"; + pixel_x = -36; + pixel_y = 4; + req_access = list("engine_equip") + }, +/obj/machinery/button/door/directional/west{ + id = "CEShutter"; + name = "Shutters Control"; + pixel_x = -36; + pixel_y = -8 + }, +/obj/machinery/camera/directional/west{ + c_tag = "Engineering - Chief Engineer's Office"; + name = "engineering camera" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/ce) +"eqR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/storage) +"eqX" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Holding Area" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/large, +/area/station/hallway/secondary/exit/departure_lounge) +"erh" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/aft) +"eri" = ( +/obj/effect/turf_decal/trimline/green/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/green{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/service/hydroponics) +"ern" = ( +/obj/effect/turf_decal/weather/snow, +/obj/structure/closet/secure_closet/freezer/meat, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/service/kitchen/coldroom) +"err" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/pen{ + pixel_y = 4 + }, +/turf/open/floor/iron/textured, +/area/station/science/research/abandoned) +"ers" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weldingtool/mini, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/security/greater) +"ert" = ( +/obj/effect/spawner/random/trash/mess, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"erF" = ( +/obj/machinery/firealarm/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet/blue, +/area/station/command/heads_quarters/cmo) +"erQ" = ( +/obj/structure/chair/pew/right, +/turf/open/floor/iron/chapel{ + dir = 5 + }, +/area/station/service/chapel) +"erR" = ( +/obj/structure/table/wood, +/turf/open/floor/carpet/black, +/area/station/service/chapel/office) +"erY" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_red/corner{ + dir = 1 + }, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"esi" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/item/storage/photo_album/bar, +/obj/item/storage/dice, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/wood/tile, +/area/station/service/bar) +"esu" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L4" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/large, +/area/station/hallway/primary/fore) +"esD" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 10 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/storage) +"esH" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "Mining Dock Airlock"; + space_dir = 4 + }, +/turf/open/floor/catwalk_floor, +/area/station/hallway/primary/aft) +"esP" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/turf_decal/tile/dark_blue/anticorner, +/obj/item/storage/secure/safe/caps_spare{ + base_icon_state = "floorsafe"; + icon_state = "floorsafe"; + pixel_y = 5 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"etd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera/directional/north{ + c_tag = "Prison - Hallway"; + dir = 6; + network = list("ss13","prison") + }, +/obj/effect/turf_decal/tile/dark_red/diagonal_centre, +/obj/effect/turf_decal/tile/neutral/diagonal_centre, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/execution/transfer) +"eti" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/line, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"ets" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/flowers_pp, +/obj/structure/window/fulltile, +/turf/open/floor/grass, +/area/station/commons/dorms) +"etw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/power_room) +"etW" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/iron/freezer, +/area/station/medical/treatment_center) +"eui" = ( +/obj/structure/table/glass, +/obj/machinery/airalarm/directional/west, +/obj/machinery/light/warm/directional/west, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/exit/departure_lounge) +"euk" = ( +/obj/item/soap/homemade, +/obj/machinery/shower/directional/west, +/turf/open/floor/pod/light, +/area/station/service/chapel) +"eut" = ( +/obj/structure/closet/wardrobe/white, +/obj/effect/landmark/start/hangover/closet, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/large, +/area/station/commons/fitness/recreation/entertainment) +"euw" = ( +/obj/effect/spawner/random/trash/mess, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"eux" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 9 + }, +/turf/open/floor/iron/dark/textured, +/area/station/medical/medbay/central) +"euG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/white/textured_large, +/area/station/hallway/primary/fore) +"euI" = ( +/obj/structure/table/wood/poker, +/obj/item/clothing/mask/cigarette/pipe, +/turf/open/floor/iron/grimy, +/area/station/commons/lounge) +"evd" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/iron/textured_large, +/area/station/cargo/storage) +"evm" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"evr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/science/xenobiology) +"evt" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Arrivals" + }, +/obj/machinery/door/firedoor, +/obj/effect/landmark/navigate_destination/dorms, +/turf/open/floor/iron/large, +/area/station/commons/dorms) +"evE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/grille_or_waste, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine) +"evL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/cyborg, +/obj/structure/cable, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/aisat_interior) +"evR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/hallway/secondary/command) +"ewh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/hallway/primary/aft) +"ewi" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/textured_large, +/area/station/security/checkpoint/customs) +"ewm" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/service/library) +"ewo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/visible{ + dir = 8 + }, +/turf/open/floor/pod, +/area/station/service/chapel/funeral) +"ewu" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/atmos) +"ewC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/dark_red{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/security/armory) +"ewI" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 10 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/textured, +/area/station/hallway/primary/aft) +"ewN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"ewT" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/maintenance/disposal/incinerator) +"exh" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/burgundy, +/turf/open/space/basic, +/area/station/solars/starboard/aft) +"exi" = ( +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/light_switch/directional/south{ + pixel_x = -9 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/wood/large, +/area/station/security/courtroom) +"exl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"exn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured_large, +/area/station/engineering/lobby) +"exx" = ( +/obj/structure/chair/comfy{ + color = "#596479"; + dir = 4 + }, +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/mess) +"exy" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/sink/directional/west, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/science/genetics) +"exF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/turf/open/floor/iron/textured_large, +/area/station/engineering/power_room) +"exL" = ( +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"exP" = ( +/obj/structure/sink/directional/east, +/obj/structure/mirror/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet) +"exT" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/telecomms/bus/preset_four, +/turf/open/floor/circuit/telecomms/server, +/area/station/tcommsat/server) +"eyh" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"eyp" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 9 + }, +/obj/machinery/duct, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/science/research) +"eyq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/port/fore) +"eyr" = ( +/obj/structure/mirror/directional/west, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/sink/directional/east, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/wood/tile, +/area/station/service/bar) +"eyv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/blobstart, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/fore) +"eyy" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/department/science/ordnance_maint) +"eyH" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/spawner/random/vending/snackvend, +/obj/machinery/newscaster/directional/west, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured, +/area/station/medical/break_room) +"eyI" = ( +/obj/machinery/camera/directional/west{ + c_tag = "Atmospherics Tank - Air"; + name = "atmospherics camera"; + network = list("ss13","engine") + }, +/turf/open/floor/engine/air, +/area/station/engineering/atmos) +"eyQ" = ( +/obj/machinery/meter/monitored/distro_loop, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/atmos/pumproom) +"eyR" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/structure/bed/dogbed, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/science/xenobiology) +"eyW" = ( +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/cargo/storage) +"eza" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/bluespace_beacon, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/aisat/service) +"eze" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/large, +/area/station/commons/storage/primary) +"ezj" = ( +/obj/structure/window/spawner/directional/south, +/obj/structure/window/spawner/directional/west, +/obj/structure/flora/bush/sparsegrass, +/obj/structure/flora/bush/flowers_br/style_3, +/turf/open/floor/grass, +/area/station/hallway/secondary/exit/departure_lounge) +"ezu" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/science/explab) +"ezL" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/pod/dark, +/area/station/service/chapel/office) +"ezO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/sorting/mail{ + dir = 8; + name = "Xenobio Junction"; + sortType = 28 + }, +/obj/effect/mapping_helpers/mail_sorting/science/xenobiology, +/obj/machinery/duct, +/turf/open/floor/iron/white/textured_large, +/area/station/science/xenobiology) +"ezT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + id = "evashutter"; + name = "E.V.A. Storage Shutter" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/command/storage/eva) +"eAg" = ( +/turf/open/floor/iron/textured_large, +/area/station/engineering/storage_shared) +"eAG" = ( +/obj/effect/turf_decal/box, +/obj/machinery/portable_atmospherics/scrubber, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/engine, +/area/station/science/ordnance/storage) +"eAO" = ( +/obj/structure/table/reinforced, +/obj/item/folder/red, +/obj/item/storage/box/prisoner, +/obj/item/restraints/handcuffs, +/obj/effect/turf_decal/tile/dark_red/diagonal_centre, +/obj/effect/turf_decal/tile/neutral/diagonal_centre, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/execution/transfer) +"eBa" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 10 + }, +/turf/open/floor/iron/dark/textured, +/area/station/command/teleporter) +"eBf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/fore) +"eBi" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/item/radio/intercom/directional/south, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/science/research) +"eBk" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/structure/sign/warning/biohazard/directional/south, +/obj/effect/turf_decal/bot_red, +/obj/machinery/light/cold/directional/south, +/obj/machinery/plumbing/ooze_compressor, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/science/xenobiology) +"eBl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/greater) +"eBr" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/wood/large, +/area/station/security/courtroom) +"eBw" = ( +/obj/machinery/disposal/delivery_chute, +/obj/structure/sign/directions/dorms{ + pixel_y = 24 + }, +/obj/structure/disposalpipe/trunk, +/obj/structure/window/spawner/directional/east{ + pixel_x = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/textured_large, +/area/station/cargo/sorting) +"eBy" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"eBD" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/structure/table, +/obj/item/stack/wrapping_paper, +/obj/item/stack/package_wrap{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/storage/photo_album, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/commons/fitness/recreation) +"eBR" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/crew_quarters/bar) +"eBT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 1 + }, +/area/station/hallway/secondary/command) +"eCc" = ( +/turf/closed/wall, +/area/station/security/lockers) +"eCd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/line, +/turf/open/floor/iron/dark/textured, +/area/station/security/execution/education) +"eCj" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"eCx" = ( +/obj/structure/closet/firecloset/wall{ + pixel_y = 32 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/white/end, +/turf/open/floor/iron/dark/textured_edge, +/area/station/ai_monitored/command/storage/eva) +"eCy" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"eCK" = ( +/obj/machinery/power/shuttle_engine/propulsion, +/obj/structure/window/reinforced/spawner/directional/west{ + layer = 2.9 + }, +/turf/open/floor/plating, +/area/space/nearstation) +"eCM" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/atmos) +"eCP" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/power_room) +"eCV" = ( +/obj/structure/sink/kitchen/directional/west, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"eDh" = ( +/obj/structure/rack, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/head/utility/hardhat/orange{ + name = "protective hat" + }, +/obj/item/clothing/head/utility/hardhat/orange{ + name = "protective hat" + }, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/effect/turf_decal/bot, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/gateway) +"eDl" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/north{ + pixel_y = 1 + }, +/obj/item/kirbyplants/photosynthetic, +/turf/open/floor/circuit/red, +/area/station/ai_monitored/turret_protected/ai_upload) +"eDt" = ( +/turf/closed/wall/r_wall, +/area/station/science/research) +"eDF" = ( +/obj/structure/chair/stool/directional/west, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/machinery/mineral/stacking_unit_console{ + pixel_x = -32; + pixel_y = -32 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/disposal) +"eDH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/white/diagonal, +/area/station/medical/medbay/central) +"eDJ" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/turf/open/floor/iron/textured, +/area/station/medical/medbay/central) +"eDN" = ( +/obj/structure/chair/sofa/bench/right, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/entry) +"eDQ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos/pumproom) +"eDY" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/turf_decal/tile/dark_red/diagonal_centre, +/obj/effect/turf_decal/tile/neutral/diagonal_centre, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/execution/transfer) +"eEi" = ( +/obj/effect/turf_decal/tile/dark_red/anticorner, +/obj/structure/sign/poster/official/twelve_gauge/directional/east, +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/armory_kiboko, +/turf/open/floor/iron/dark/textured_corner{ + dir = 1 + }, +/area/station/ai_monitored/security/armory) +"eEp" = ( +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/structure/table/reinforced/rglass, +/turf/open/floor/glass/reinforced, +/area/station/security/office) +"eEq" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/station/medical/pharmacy) +"eEr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_large, +/area/station/cargo/storage) +"eEu" = ( +/turf/closed/wall, +/area/station/engineering/storage) +"eEz" = ( +/obj/structure/table, +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/item/storage/medkit/regular{ + pixel_y = 3 + }, +/obj/item/multitool{ + pixel_y = 3 + }, +/obj/item/pen/blue{ + pixel_y = -4 + }, +/obj/item/pen/red, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/cargo/office) +"eEF" = ( +/obj/structure/window/spawner/directional/east{ + pixel_x = 4 + }, +/obj/effect/turf_decal/tile/purple/half, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/window/right/directional/south{ + name = "Science Deliveries"; + req_access = list("cargo") + }, +/obj/effect/turf_decal/trimline/neutral/line, +/obj/effect/turf_decal/trimline/neutral/line, +/obj/effect/turf_decal/trimline/neutral/line, +/obj/effect/turf_decal/trimline/neutral/line, +/obj/effect/turf_decal/trimline/neutral/line, +/obj/effect/turf_decal/trimline/neutral/mid_joiner, +/obj/effect/turf_decal/trimline/neutral/mid_joiner, +/obj/effect/turf_decal/trimline/neutral/mid_joiner, +/obj/effect/turf_decal/trimline/neutral/mid_joiner, +/obj/effect/turf_decal/trimline/neutral/mid_joiner, +/turf/open/floor/iron/textured_large, +/area/station/cargo/sorting) +"eEH" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/effect/turf_decal/trimline/blue/filled/warning, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/atmos) +"eEJ" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/turf_decal/delivery, +/turf/open/floor/engine, +/area/station/engineering/atmos/storage/gas) +"eEM" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/machinery/light/small/directional/west, +/turf/open/floor/iron/textured, +/area/station/science/research/abandoned) +"eEN" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/desk_bell{ + pixel_y = 5 + }, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "commissaryshutters"; + name = "Vacant Commissary Shutters" + }, +/turf/open/floor/iron/large, +/area/station/commons/vacant_room) +"eEU" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 1 + }, +/area/station/hallway/secondary/command) +"eFd" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Blueshield's Equipment Room" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/command/captain, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "Bridge Blast Door" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/blueshield) +"eFg" = ( +/obj/structure/chair/comfy/beige{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/wood/large, +/area/station/medical/psychology) +"eFk" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/solars/port/aft) +"eFm" = ( +/obj/effect/turf_decal/trimline/dark_red/warning{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"eFp" = ( +/obj/machinery/airalarm/directional/east, +/obj/machinery/light/small/directional/east, +/obj/structure/bedsheetbin, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/station/commons/dorms) +"eFq" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/textured_large, +/area/station/hallway/secondary/entry) +"eFE" = ( +/obj/machinery/newscaster/directional/west, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/construction/mining/aux_base) +"eFF" = ( +/turf/closed/wall, +/area/station/service/lawoffice) +"eFN" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/medical/medbay/central) +"eFQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/science/ordnance_maint) +"eFV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/white/side{ + dir = 10 + }, +/area/station/science/lab) +"eGb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall15"; + location = "hall14" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/primary/fore) +"eGd" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/fore) +"eGi" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/atmos) +"eGj" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/lesser) +"eGk" = ( +/obj/structure/sign/warning/explosives/alt/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/light/small/directional/west, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/science/ordnance_maint) +"eGo" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"eGs" = ( +/obj/effect/turf_decal/siding/thinplating/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"eGw" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + dir = 4; + location = "QM #2" + }, +/turf/open/floor/iron/textured_edge, +/area/station/cargo/storage) +"eGZ" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/trimline/green/arrow_cw{ + dir = 1 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Dormitories - Starboard"; + name = "dormitories camera" + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/small, +/area/station/commons/dorms) +"eHj" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/binary/tank_compressor{ + dir = 8 + }, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/textured_edge, +/area/station/science/ordnance/testlab) +"eHu" = ( +/obj/machinery/air_sensor/air_tank, +/turf/open/floor/engine/air, +/area/station/engineering/atmos) +"eHA" = ( +/obj/item/radio/intercom/directional/west, +/obj/structure/tank_dispenser, +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/science/ordnance) +"eHP" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/iron/large, +/area/station/hallway/primary/fore) +"eHS" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/structure/sign/departments/chemistry/directional/west, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/primary/central/aft) +"eIa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/station/commons/vacant_room/office) +"eId" = ( +/turf/closed/wall, +/area/station/hallway/primary/central/fore) +"eIn" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/ears/earmuffs{ + pixel_y = 7 + }, +/obj/item/gun/energy/laser/practice, +/obj/item/clothing/glasses/sunglasses{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/engine, +/area/station/security/range) +"eIx" = ( +/obj/structure/table, +/obj/item/rcl/pre_loaded, +/obj/item/stack/pipe_cleaner_coil/random, +/obj/item/stack/pipe_cleaner_coil/random, +/obj/item/stack/pipe_cleaner_coil/random, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/commons/storage/art) +"eID" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"eIP" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/atmos) +"eIY" = ( +/obj/structure/railing, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/brown/filled/line, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"eJc" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/mob/living/basic/bot/medbot, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/aisat_interior) +"eJd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/aft) +"eJf" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge, +/area/station/maintenance/disposal/incinerator) +"eJk" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/primary/central/aft) +"eJm" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/chair{ + dir = 4 + }, +/obj/structure/sign/warning/pods/directional/north, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/secondary/command) +"eJx" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"eJL" = ( +/obj/machinery/iv_drip, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"eJO" = ( +/obj/machinery/porta_turret/ai, +/obj/effect/turf_decal/stripes/white/box, +/obj/structure/sign/nanotrasen{ + pixel_x = 32 + }, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/ai) +"eJY" = ( +/obj/structure/flora/ocean/coral, +/obj/structure/flora/ocean/glowweed, +/obj/effect/spawner/liquids_spawner{ + reagent_list = list(/datum/reagent/water=600) + }, +/turf/open/misc/asteroid, +/area/station/commons/dorms) +"eKj" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 5 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron, +/area/station/service/hydroponics) +"eKr" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/maintenance/disposal/incinerator) +"eKs" = ( +/obj/structure/filingcabinet/medical, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/medical/office) +"eKx" = ( +/turf/open/floor/wood, +/area/station/service/hydroponics/upper) +"eKU" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/flora/bush/lavendergrass, +/turf/open/floor/grass, +/area/station/science/genetics) +"eLe" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"eLf" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/storage) +"eLz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/aft) +"eLC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/main) +"eLH" = ( +/obj/machinery/door/airlock/research{ + name = "Research Division Access" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "rnd-enterance" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/general, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/science/lab) +"eLM" = ( +/turf/closed/wall/r_wall, +/area/station/science/lab) +"eLP" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/station/commons/dorms) +"eLS" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/obj/structure/bed/dogbed{ + anchored = 1; + name = "Markus's bed" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/obj/machinery/firealarm/directional/east, +/obj/structure/bed/dogbed{ + anchored = 1; + name = "Markus's bed" + }, +/mob/living/basic/pet/dog/markus, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/cargo/office) +"eLW" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/fore) +"eMb" = ( +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/science/ordnance_maint) +"eMd" = ( +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"eMe" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 8 + }, +/turf/open/floor/iron/small, +/area/station/commons/dorms) +"eMf" = ( +/obj/machinery/door/window/left/directional/west{ + req_access = list("morgue") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"eMr" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/upper) +"eMx" = ( +/obj/effect/spawner/random/trash/garbage, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/power/port_gen/pacman/pre_loaded, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/greater) +"eMG" = ( +/obj/structure/chair/sofa/bench/right, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"eMN" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/siding/red, +/obj/machinery/firealarm/directional/north{ + pixel_x = -16 + }, +/obj/structure/reagent_dispensers/wall/peppertank/directional/north, +/turf/open/floor/iron/dark/textured_edge, +/area/station/security/office) +"eMV" = ( +/obj/structure/table/wood, +/obj/effect/spawner/random/bureaucracy/folder, +/obj/effect/spawner/random/bureaucracy/pen{ + pixel_y = 4 + }, +/turf/open/floor/iron/grimy, +/area/station/commons/vacant_room/office) +"eNq" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/effect/turf_decal/trimline/blue/filled/warning, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 9 + }, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/atmos/storage) +"eNr" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/fake_stairs/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"eNs" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central) +"eNt" = ( +/turf/closed/wall/mineral/plastitanium, +/area/station/maintenance/starboard/upper) +"eNE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_red/half{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/ai_monitored/security/armory) +"eNJ" = ( +/obj/machinery/airalarm/directional/north, +/obj/machinery/camera/directional/north{ + c_tag = "Service - Service Hall"; + dir = 9; + name = "service camera" + }, +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/effect/turf_decal/trimline/brown/filled/mid_joiner, +/obj/machinery/modular_computer/preset/cargochat/service, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_large, +/area/station/hallway/secondary/service) +"eNR" = ( +/obj/effect/turf_decal/trimline/green/filled/warning, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/hallway/primary/central) +"eOo" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/obj/machinery/status_display/evac/directional/north, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/textured, +/area/station/engineering/break_room) +"eOp" = ( +/obj/structure/table/reinforced, +/obj/item/stack/package_wrap{ + pixel_y = 3 + }, +/obj/item/hand_labeler{ + pixel_y = 3 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/trimline/green/filled/line, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/commons/storage/primary) +"eOF" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 5 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/space/basic, +/area/space/nearstation) +"eON" = ( +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"ePd" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/obj/structure/railing{ + dir = 10 + }, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"ePm" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/box, +/obj/machinery/duct, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"ePt" = ( +/obj/structure/table/wood, +/obj/structure/sign/painting/large/library{ + dir = 1 + }, +/obj/machinery/computer/libraryconsole/bookmanagement, +/turf/open/floor/carpet, +/area/station/service/library) +"ePC" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/door/airlock/service, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/wood/parquet, +/area/station/common/night_club) +"ePH" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/service/kitchen/abandoned) +"ePJ" = ( +/obj/effect/turf_decal/trimline/dark_red/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/corner{ + dir = 1 + }, +/area/station/hallway/primary/central/aft) +"ePK" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health{ + pixel_y = 3 + }, +/obj/item/clothing/glasses/hud/health{ + pixel_y = 6 + }, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/white/textured_edge, +/area/station/medical/medbay/central) +"ePL" = ( +/obj/machinery/light_switch/directional/west, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 10 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/textured, +/area/station/engineering/break_room) +"eQb" = ( +/obj/effect/turf_decal/siding/thinplating, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/exit/departure_lounge) +"eQf" = ( +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/machinery/door/airlock/maintenance_hatch, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/aft) +"eQi" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/electrical, +/obj/item/clothing/gloves/color/fyellow, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/science/research/abandoned) +"eQj" = ( +/obj/machinery/light/cold/directional/south, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/white/end{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"eQu" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/power_room) +"eQw" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/grass, +/area/station/service/hydroponics/upper) +"eQx" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/textured_corner{ + dir = 4 + }, +/area/station/medical/surgery) +"eQQ" = ( +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ + dir = 9 + }, +/turf/open/floor/iron/textured, +/area/station/hallway/secondary/construction) +"eRr" = ( +/obj/structure/table/wood/fancy/green, +/obj/item/statuebust/hippocratic{ + pixel_y = 8 + }, +/obj/machinery/digital_clock/directional/west, +/turf/open/floor/carpet/green, +/area/station/command/heads_quarters/nt_rep) +"eRt" = ( +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 9 + }, +/turf/open/floor/iron/textured, +/area/station/maintenance/disposal/incinerator) +"eRz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain/private) +"eRP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate, +/obj/effect/spawner/random/maintenance/four, +/obj/effect/spawner/random/medical/minor_healing, +/obj/item/storage/box, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine) +"eRV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/nt_rep) +"eSb" = ( +/obj/machinery/conveyor/inverted{ + dir = 10; + id = "garbage" + }, +/obj/machinery/door/window/right/directional/east{ + name = "Danger: Conveyor Access"; + req_access = list("maint_tunnels") + }, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/disposal) +"eSk" = ( +/obj/machinery/light/neon_lining{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"eSl" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/large, +/area/station/commons/vacant_room) +"eSv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/dark_blue{ + dir = 9 + }, +/obj/effect/turf_decal/tile/blue/anticorner{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"eSD" = ( +/obj/effect/spawner/random/structure/crate, +/obj/effect/spawner/random/engineering/vending_restock, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/fore) +"eSE" = ( +/obj/effect/spawner/random/trash/graffiti, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/lesser) +"eSI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/small/directional/north, +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"eTa" = ( +/turf/open/floor/wood, +/area/station/security/prison/garden) +"eTo" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"eTD" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 6 + }, +/obj/structure/flora/bush/jungle, +/turf/open/floor/grass, +/area/station/hallway/primary/central/fore) +"eTW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/solars/starboard/fore) +"eTZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/machinery/duct, +/turf/open/floor/iron/white/textured_large, +/area/station/science/xenobiology) +"eUl" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Blueshield's Equipment Room" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/command/captain, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/blueshield) +"eUm" = ( +/obj/structure/bed, +/obj/item/bedsheet/yellow, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/iron/grimy, +/area/station/service/chapel) +"eUp" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/engine) +"eUq" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Central Hallway" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/directions/command/directional/east{ + dir = 1; + pixel_y = 8 + }, +/obj/structure/sign/directions/security/directional/east{ + dir = 1 + }, +/obj/structure/sign/directions/evac/directional/east{ + dir = 8; + pixel_y = -8 + }, +/turf/open/floor/iron/textured_large, +/area/station/hallway/primary/aft) +"eUu" = ( +/obj/docking_port/stationary/public_mining_dock{ + dir = 2 + }, +/turf/open/floor/plating, +/area/station/construction/mining/aux_base) +"eUw" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/random/directional/east, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/aft) +"eUy" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod"; + space_dir = 2 + }, +/obj/effect/landmark/navigate_destination/dockescpod3, +/turf/open/floor/catwalk_floor, +/area/station/security/execution/transfer) +"eUE" = ( +/obj/structure/table/reinforced, +/obj/item/folder/white{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/structure/desk_bell{ + pixel_x = 7; + pixel_y = 6 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistry_shutters"; + name = "Pharmacy Shutters" + }, +/obj/machinery/door/window/left/directional/north{ + name = "Pharmacy Desk"; + req_access = list("pharmacy") + }, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/pharmacy) +"eUH" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/storage/tcomms) +"eUT" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line, +/obj/effect/turf_decal/trimline/neutral/filled/line, +/obj/effect/turf_decal/trimline/neutral/filled/line, +/obj/item/storage/secure/safe/directional/south, +/obj/structure/extinguisher_cabinet/directional/south{ + pixel_x = 16 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/commons/vacant_room) +"eVk" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/burgundy, +/turf/open/space/basic, +/area/station/solars/starboard/fore) +"eVm" = ( +/obj/effect/turf_decal/trimline/dark_red/arrow_cw{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"eVo" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/command) +"eVq" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue/full, +/obj/structure/window/spawner/directional/west, +/obj/item/stack/sticky_tape/surgical, +/obj/item/stack/medical/bone_gel, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/freezer, +/area/station/medical/surgery) +"eVs" = ( +/obj/machinery/chem_dispenser/drinks/beer{ + dir = 4 + }, +/obj/structure/table/wood/fancy/black, +/obj/machinery/status_display/evac/directional/west, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, +/area/station/service/bar) +"eVt" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/textured_corner{ + dir = 8 + }, +/area/station/maintenance/disposal/incinerator) +"eVu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/greater) +"eVE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/hallway/primary/aft) +"eVM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/dark/visible{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"eVW" = ( +/obj/effect/spawner/random/trash/garbage, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/port) +"eWc" = ( +/obj/effect/turf_decal/trimline/dark/filled/line{ + dir = 10 + }, +/obj/item/radio/intercom/directional/west, +/obj/structure/table, +/obj/item/storage/box/bodybags{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/bodybags, +/obj/item/pushbroom, +/turf/open/floor/iron/dark/textured, +/area/station/security/office) +"eWh" = ( +/obj/effect/spawner/liquids_spawner, +/turf/open/floor/lowered/iron/pool, +/area/station/common/pool) +"eWi" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/machinery/computer/security/telescreen/ordnance{ + dir = 4; + pixel_x = -32 + }, +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/effect/turf_decal/stripes/red/corner, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/science/ordnance/testlab) +"eWs" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/aft/lesser) +"eWu" = ( +/turf/open/floor/iron/textured, +/area/station/maintenance/department/crew_quarters/bar) +"eWw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/moisture_trap, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/aft) +"eWG" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge, +/area/station/science/ordnance/testlab) +"eXd" = ( +/obj/effect/turf_decal/trimline/green/filled/warning, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/commons/fitness/recreation) +"eXg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/black, +/area/station/service/chapel/office) +"eXi" = ( +/obj/machinery/power/tracker, +/obj/structure/cable, +/turf/open/floor/iron/solarpanel/airless, +/area/station/solars/starboard/fore) +"eXn" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 8 + }, +/area/station/security/office) +"eXK" = ( +/obj/structure/closet/toolcloset, +/obj/item/clothing/gloves/color/yellow, +/obj/item/storage/belt/utility, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/machinery/light_switch/directional/north, +/obj/machinery/camera/directional/north, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/storage_shared) +"eXN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/engine, +/area/station/security/range) +"eXP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/holopad/secure, +/obj/effect/turf_decal/bot, +/turf/open/floor/circuit/green, +/area/station/ai_monitored/turret_protected/aisat/atmos) +"eXR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/gravity_generator) +"eYa" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine/atmos/lesser) +"eYe" = ( +/obj/structure/sign/poster/contraband/busty_backdoor_xeno_babes_6/directional/east, +/obj/structure/chair/comfy{ + dir = 1 + }, +/obj/item/clothing/head/fedora, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/fore) +"eYh" = ( +/obj/effect/landmark/start/chemist, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"eYi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/food_packaging, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/aft/greater) +"eYu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"eYw" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"eYF" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "AI Upload Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/ai_upload) +"eYK" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Entertainment Maintenance" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/lesser) +"eYM" = ( +/obj/structure/fluff/paper/stack{ + dir = 9 + }, +/obj/item/poster/random_contraband, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/mob/living/basic/cockroach, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/wood, +/area/station/maintenance/department/engine/atmos) +"eYY" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/box, +/obj/machinery/computer/security/telescreen/entertainment/directional/south, +/turf/open/floor/iron, +/area/station/commons/vacant_room) +"eZa" = ( +/turf/open/floor/iron/textured, +/area/station/commons/vacant_room) +"faf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/railing/wood{ + dir = 8 + }, +/obj/structure/railing/wood, +/obj/machinery/electroplater, +/turf/open/floor/wood/large, +/area/station/service/barber) +"fal" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/science/ordnance_maint) +"faq" = ( +/turf/open/floor/iron/textured_large, +/area/station/maintenance/disposal/incinerator) +"faR" = ( +/obj/effect/turf_decal/box, +/obj/machinery/light/small/directional/east, +/turf/open/floor/iron/textured, +/area/station/science/research/abandoned) +"fba" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/primary/fore) +"fbc" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/station/solars/starboard/fore) +"fbg" = ( +/obj/effect/turf_decal/bot, +/obj/structure/frame/machine, +/obj/item/stack/cable_coil/five, +/obj/item/multitool{ + pixel_x = 5; + pixel_y = -5 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/supermatter/room) +"fbi" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer2{ + dir = 9 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/atmos/storage) +"fbk" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/basic/spider/giant/tarantula/scrawny, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/electrical) +"fbl" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/auxlab/firing_range) +"fbs" = ( +/obj/structure/cable, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/vg_decals/numbers/three, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/command) +"fbx" = ( +/obj/item/kirbyplants/random, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/turf/open/floor/iron/white/diagonal, +/area/station/medical/medbay/central) +"fbD" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 9 + }, +/obj/machinery/meter, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"fbF" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "brigwindows"; + name = "Brig Front Blast Door" + }, +/turf/open/floor/plating, +/area/station/security/holding_cell) +"fbO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/chair/stool/directional/west, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/storage) +"fbP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/circuit/green, +/area/station/ai_monitored/command/nuke_storage) +"fbY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine/atmos) +"fcc" = ( +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres, +/obj/machinery/door/airlock/maintenance{ + name = "Aft Primary Hallway Maintenance" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/aft) +"fcd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/obj/effect/turf_decal/tile/purple/diagonal_centre, +/turf/open/floor/iron/white/diagonal, +/area/station/science/research) +"fch" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/structure/chair/office/light{ + dir = 4 + }, +/turf/open/floor/iron/freezer, +/area/station/security/checkpoint/medical) +"fci" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/chair/sofa/corner/brown{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/break_room) +"fcx" = ( +/obj/structure/closet/radiation, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/obj/structure/sign/warning/radiation/directional/south, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/engineering/gravity_generator) +"fcy" = ( +/obj/effect/turf_decal/trimline/green/corner, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/green{ + dir = 8 + }, +/turf/open/floor/iron/large, +/area/station/service/hydroponics) +"fcz" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain/private) +"fcH" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/security/holding_cell) +"fdi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/bot, +/obj/effect/landmark/start/detective, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/iron/grimy, +/area/station/security/detectives_office) +"fdz" = ( +/obj/machinery/computer/operating{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 5 + }, +/obj/machinery/status_display/ai/directional/east, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white, +/area/station/medical/surgery) +"fdG" = ( +/turf/open/floor/iron/textured_large, +/area/station/engineering/lobby) +"fdN" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/tcommsat/computer) +"fdP" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/cargo/warehouse) +"fdW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/garbage, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine/atmos) +"fdZ" = ( +/obj/machinery/light/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured_large, +/area/station/cargo/miningdock) +"feh" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge, +/area/station/hallway/primary/aft) +"fei" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/machinery/light/warm/directional/west, +/obj/effect/landmark/start/hangover/closet, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/commons/fitness/recreation/entertainment) +"feo" = ( +/obj/machinery/light/cold/directional/south, +/obj/effect/turf_decal/bot, +/obj/machinery/telecomms/broadcaster/preset_right, +/turf/open/floor/circuit/telecomms/server, +/area/station/tcommsat/server) +"fer" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/closet_maintenance, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft) +"fey" = ( +/turf/open/floor/plating, +/area/station/engineering/supermatter/room) +"feC" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall11"; + location = "hall10" + }, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"ffe" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 4 + }, +/area/station/hallway/secondary/command) +"ffp" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/hallway/secondary/command) +"fft" = ( +/obj/effect/turf_decal/bot, +/obj/structure/fake_stairs/directional/north, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/freezer, +/area/station/medical/pharmacy) +"ffz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/clothing/head/costume/festive{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/structure/sign/poster/random/directional/north, +/obj/effect/spawner/random/entertainment/money, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/crew_quarters/bar) +"ffH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/red/diagonal_centre, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/office) +"ffN" = ( +/obj/structure/chair/comfy/carp{ + dir = 4 + }, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain) +"fgd" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/nt_rep) +"fgh" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/washing_machine, +/obj/machinery/camera/directional/north{ + c_tag = "Dormitories - Washroom"; + name = "dormitories camera" + }, +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/kitchen{ + dir = 1 + }, +/area/station/commons/dorms/laundry) +"fgv" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/obj/effect/landmark/start/atmospheric_technician, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 5 + }, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/atmos) +"fgF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/storage) +"fgP" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/landmark/navigate_destination/incinerator, +/turf/open/floor/iron/stairs/medium{ + dir = 8 + }, +/area/station/maintenance/disposal/incinerator) +"fgR" = ( +/obj/effect/turf_decal/box, +/obj/machinery/portable_atmospherics/canister, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"fgT" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/ai_upload) +"fhi" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4; + name = "Air to Distro" + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos/pumproom) +"fhj" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/effect/landmark/start/station_engineer, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/chair/stool/directional/south{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/lobby) +"fho" = ( +/obj/item/tank/jetpack/carbondioxide, +/obj/item/tank/jetpack/carbondioxide{ + pixel_x = -4; + pixel_y = 1 + }, +/obj/item/tank/jetpack/carbondioxide{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/rack/shelf, +/obj/structure/window/reinforced/spawner/directional/east{ + layer = 2.9 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 6 + }, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/command/storage/eva) +"fhY" = ( +/obj/machinery/airalarm/directional/north, +/obj/structure/rack, +/obj/item/crowbar, +/obj/item/binoculars, +/obj/item/gps/engineering{ + gpstag = "CE0" + }, +/obj/machinery/camera/directional/north{ + c_tag = "AI Satellite - Transit Tube Entrance"; + name = "ai camera"; + network = list("minisat"); + start_active = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/diagonal, +/area/station/engineering/transit_tube) +"fia" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/random/maintenance/seven, +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 9 + }, +/obj/item/bear_armor, +/obj/machinery/light/small/directional/west, +/obj/machinery/requests_console/auto_name/directional/north, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/hallway/secondary/construction) +"fij" = ( +/obj/structure/flora/bush/fullgrass, +/obj/structure/flora/bush/ferny, +/obj/structure/window/fulltile, +/turf/open/floor/grass, +/area/station/commons/dorms) +"fiy" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/grimy, +/area/station/service/library) +"fiN" = ( +/turf/closed/wall/r_wall, +/area/station/medical/chemistry) +"fiT" = ( +/obj/effect/turf_decal/nova_decals/enclave/middle/left{ + color = "#52B4E9" + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 4 + }, +/obj/effect/landmark/start/paramedic, +/obj/effect/turf_decal/trimline/blue/mid_joiner{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/lobby) +"fiV" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/closet/firecloset/wall{ + pixel_y = -32 + }, +/obj/effect/turf_decal/trimline/white/end{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/aft) +"fjr" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/cable/layer3, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/ai) +"fjM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/lesser) +"fkn" = ( +/obj/structure/dresser, +/obj/structure/sign/picture_frame/portrait{ + pixel_y = 28 + }, +/turf/open/floor/iron/grimy, +/area/station/service/chapel) +"fkx" = ( +/obj/structure/cable, +/obj/effect/landmark/start/prisoner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/grass, +/area/station/security/prison/garden) +"fkF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/textured_edge, +/area/station/security/prison) +"fkI" = ( +/obj/structure/railing, +/obj/structure/table/glass, +/turf/open/floor/iron/white/small, +/area/station/common/pool) +"fkM" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall/r_wall, +/area/station/command/heads_quarters/cmo) +"fkP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/textured, +/area/station/command/cc_dock) +"fkX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/blue/filled/warning, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/medical/medbay/lobby) +"flb" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/poster/random/directional/west, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical) +"flc" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/power_room) +"flf" = ( +/obj/effect/turf_decal/siding/thinplating/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/floor/has_bulb, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"flj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/aft/upper) +"fll" = ( +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/prison) +"flm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/button/door/directional/north{ + id = "prisonbridge"; + name = "Bridge Shutters" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/security/greater) +"flo" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/treatment_center) +"flr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/maintenance_hatch, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/engine/atmos/lesser) +"flB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance/two, +/obj/machinery/duct, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/engine/atmos) +"flD" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/light/small/directional/south, +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/turf/open/floor/iron/dark/diagonal, +/area/station/hallway/primary/fore) +"flE" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/hallway/primary/fore) +"flH" = ( +/obj/effect/mapping_helpers/airlock/access/all/medical/surgery, +/obj/structure/cable, +/obj/machinery/door/airlock/freezer{ + critical_machine = 1; + name = "Medical Freezer" + }, +/obj/structure/fans/tiny, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/showroomfloor, +/area/station/medical/coldroom) +"flP" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/science/research) +"fmb" = ( +/obj/structure/sign/warning/secure_area, +/turf/closed/wall/r_wall, +/area/station/science/xenobiology) +"fmo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/telecomms/server/presets/service, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/station/tcommsat/server) +"fmp" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/hallway/primary/central) +"fmC" = ( +/obj/machinery/computer/shuttle/labor, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/turf_decal/tile/dark_red/half{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/cold/directional/north, +/obj/machinery/digital_clock/directional/north{ + pixel_y = 36 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"fmD" = ( +/obj/machinery/newscaster/directional/south, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/obj/structure/rack, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = 3 + }, +/turf/open/floor/iron/textured, +/area/station/security/checkpoint/engineering) +"fmM" = ( +/obj/structure/table/reinforced/rglass, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced/spawner/directional/south{ + pixel_y = -4 + }, +/obj/item/reagent_containers/cup/bottle/multiver{ + pixel_x = 6 + }, +/obj/item/reagent_containers/cup/bottle/epinephrine, +/obj/item/reagent_containers/syringe, +/obj/item/reagent_containers/hypospray/medipen{ + pixel_y = 16 + }, +/obj/machinery/door/window/right/directional/west{ + name = "Medbay Front Desk"; + req_access = list("medical") + }, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "paramed_dispatch_desk"; + name = "Desk Shutters"; + dir = 8 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/lobby) +"fmR" = ( +/obj/effect/turf_decal/bot, +/obj/structure/frame/computer{ + dir = 1 + }, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/fore) +"fmX" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/shower/directional/east, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/atmos) +"fnb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured_large, +/area/station/engineering/power_room) +"fnc" = ( +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 9 + }, +/turf/open/floor/iron/textured, +/area/station/cargo/lobby) +"fnt" = ( +/obj/structure/drain, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating/dark/end, +/obj/machinery/shower/directional/south, +/turf/open/floor/iron/checker, +/area/station/engineering/atmos) +"fnM" = ( +/obj/structure/table, +/obj/item/storage/fancy/egg_box, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/machinery/camera/directional/south{ + c_tag = "Prison - Kitchen"; + network = list("ss13","prison") + }, +/obj/machinery/reagentgrinder{ + pixel_y = 7 + }, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/kitchen, +/area/station/security/prison/mess) +"fnQ" = ( +/obj/structure/closet/firecloset/wall{ + pixel_y = 32 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/white/end, +/obj/structure/cable, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"fok" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/corner{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"fol" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured_large, +/area/station/engineering/lobby) +"fon" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"fop" = ( +/turf/open/floor/grass, +/area/station/service/hydroponics/upper) +"fos" = ( +/obj/structure/table/glass, +/obj/effect/spawner/random/trash/cigbutt, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/break_room) +"foC" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/pod/dark, +/area/station/service/chapel/funeral) +"foD" = ( +/obj/structure/table, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/right/directional/north{ + name = "Delivery Office Desk"; + req_access = list("cargo") + }, +/obj/structure/desk_bell{ + pixel_x = 7 + }, +/obj/item/folder/yellow{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_large, +/area/station/cargo/sorting) +"foE" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/atmos) +"foI" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"foS" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"foU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/trash_pile, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/crew_quarters/bar) +"fpd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"fpg" = ( +/obj/machinery/door/airlock/research{ + name = "Research Division Access" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "rnd-enterance" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/general, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/machinery/duct, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/white/textured_large, +/area/station/science/research) +"fpk" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/engine/atmos/lesser) +"fpl" = ( +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/obj/effect/mapping_helpers/airlock/unres, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + name = "Medical Maintenance" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical) +"fpt" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/effect/landmark/start/atmospheric_technician, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/atmos/storage/gas) +"fpE" = ( +/obj/structure/cable, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/plating, +/area/station/maintenance/department/security/brig) +"fpH" = ( +/turf/closed/wall/r_wall, +/area/station/engineering/atmos/storage) +"fpI" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/lockers) +"fpO" = ( +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/upper) +"fpR" = ( +/obj/effect/turf_decal/trimline/dark_red/arrow_ccw, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"fqs" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/station/science/ordnance/burnchamber) +"fqz" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/spawner/random/trash/food_packaging, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/aft) +"fqI" = ( +/obj/machinery/button/door/directional/south{ + id = "detectivewindows"; + name = "Privacy Shutters"; + req_access = list("detective") + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet, +/area/station/security/detectives_office) +"frc" = ( +/obj/effect/mapping_helpers/airlock/access/all/security/hos, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/hos{ + name = "Head Of Security's Quarters" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/siding/wood/end, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/textured_large, +/area/station/command/heads_quarters/hos) +"frl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine/atmos) +"frt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_corner, +/area/station/service/hydroponics/garden) +"fru" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/spawner/random/structure/steam_vent, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical/morgue) +"frH" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + name = "CE's Junction" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/effect/mapping_helpers/mail_sorting/engineering/ce_office, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/power_room) +"frR" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical/morgue) +"frV" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/greater) +"fsb" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/thinplating{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"fsd" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/aft) +"fsk" = ( +/obj/effect/spawner/random/bedsheet/any/double, +/obj/machinery/newscaster/directional/east, +/obj/structure/bed/double/pod, +/turf/open/floor/carpet/cyan, +/area/station/commons/dorms) +"fst" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/pod, +/area/station/service/chapel/office) +"fsv" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall22"; + location = "hall21" + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/hallway/secondary/command) +"fsy" = ( +/obj/structure/window/reinforced/survival_pod/spawner/directional/south, +/obj/machinery/door/window/survival_pod/left/directional/east{ + name = "Fitness Ring" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/floor/has_bulb, +/turf/open/floor/iron/dark/textured_large, +/area/station/commons/fitness/recreation/entertainment) +"fsC" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/cargo/storage) +"fsM" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/gravity_generator) +"fsR" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/grass, +/area/station/medical/medbay/central) +"fsX" = ( +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"fsY" = ( +/obj/effect/spawner/random/trash/grille_or_waste, +/turf/open/floor/iron/textured, +/area/station/science/robotics/mechbay) +"fta" = ( +/obj/machinery/computer/turbine_computer{ + dir = 1; + mapping_id = "main_turbine" + }, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/turf/open/floor/iron/textured, +/area/station/maintenance/disposal/incinerator) +"fth" = ( +/obj/machinery/door/airlock/hydroponics/glass{ + name = "Petting Zoo Staff Entry" + }, +/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics, +/turf/open/floor/wood, +/area/station/service/hydroponics/upper) +"ftr" = ( +/obj/machinery/power/shuttle_engine/heater, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/obj/structure/window/reinforced/plasma/spawner/directional/east, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/lesser) +"ftA" = ( +/obj/machinery/status_display/evac/directional/south, +/obj/effect/turf_decal/siding/wood/end{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/bed/dogbed/lia, +/mob/living/basic/carp/pet/lia, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/textured_large, +/area/station/command/heads_quarters/hos) +"ful" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured, +/area/station/security/brig) +"fun" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/storage) +"fuK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/poster/random/directional/west, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/aft/greater) +"fuP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/green/corner, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/service/hydroponics) +"fuT" = ( +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/machinery/door/airlock/maintenance_hatch, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/crew_quarters/bar) +"fve" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/white/textured_corner{ + dir = 8 + }, +/area/station/medical/medbay/central) +"fvl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"fvn" = ( +/obj/machinery/camera/directional/north{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/red/box, +/obj/structure/sign/delam_procedure/directional/east, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"fvr" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/fore) +"fvs" = ( +/turf/open/floor/iron/white/textured_large, +/area/station/science/lab) +"fvW" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/bot, +/obj/item/toy/figure/chemist{ + pixel_y = 18 + }, +/obj/machinery/vending/wardrobe/chem_wardrobe, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"fvY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"fwc" = ( +/obj/structure/table, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/machinery/newscaster/directional/west, +/obj/machinery/fax{ + fax_name = "Medical Lobby"; + name = "Medical Fax Machine"; + pixel_y = 3 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"fwk" = ( +/obj/effect/mapping_helpers/airlock/access/all/science/robotics, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Robotics Maintenance" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/science/robotics/mechbay) +"fwy" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/chapel{ + dir = 6 + }, +/area/station/service/chapel) +"fwB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/engine/atmos) +"fwM" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/security/courtroom) +"fwV" = ( +/obj/structure/reagent_dispensers/wall/peppertank/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark_blue/end{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/full, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/blueshield) +"fwW" = ( +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_edge, +/area/station/cargo/lobby) +"fxa" = ( +/obj/structure/cable, +/obj/machinery/door/window/brigdoor/right/directional/south{ + name = "Command Chair"; + req_access = list("command") + }, +/obj/effect/turf_decal/tile/dark_blue/half, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"fxb" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/rd) +"fxg" = ( +/obj/machinery/power/shuttle_engine/heater{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/window/reinforced/plasma/spawner/directional/east, +/turf/open/floor/iron/textured, +/area/station/security/prison) +"fxi" = ( +/obj/structure/table/wood/fancy, +/obj/item/toy/cards/deck/tarot, +/turf/open/floor/iron/grimy, +/area/station/commons/lounge) +"fxD" = ( +/obj/structure/sign/warning/chem_diamond/directional/north, +/obj/structure/rack/shelf, +/obj/item/reagent_containers/cup/bottle/carbon{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/reagent_containers/cup/bottle/ethanol{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/reagent_containers/cup/bottle/chlorine{ + pixel_x = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) +"fxO" = ( +/obj/structure/displaycase/trophy, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/light/warm/directional/east, +/turf/open/floor/wood/large, +/area/station/service/library) +"fxR" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/textured, +/area/station/command/cc_dock) +"fxS" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/wood, +/area/station/commons/vacant_room/office) +"fxW" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/turf/open/floor/carpet/stellar, +/area/station/service/chapel/funeral) +"fys" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/white/side, +/area/station/science/lab) +"fyy" = ( +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/machinery/door/airlock/maintenance{ + name = "Fire Closet" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/aft/upper) +"fyB" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/pen{ + pixel_y = 4 + }, +/obj/machinery/light/warm/directional/west, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/station/commons/dorms) +"fyE" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"fyG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/aisat/atmos) +"fyP" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/fore) +"fyT" = ( +/obj/machinery/computer/cargo{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/qm) +"fyY" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/white/textured_edge, +/area/station/medical/medbay/lobby) +"fza" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_corner{ + dir = 1 + }, +/area/station/science/research) +"fzb" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central) +"fzg" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=1"; + dir = 1; + location = "Janitor" + }, +/obj/structure/plasticflaps/opaque{ + name = "Janitorial Deliveries" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/large, +/area/station/service/janitor) +"fzm" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/structure/table, +/obj/item/stack/sheet/iron/twenty{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/item/stack/sheet/plasteel/fifty{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/machinery/airalarm/directional/west, +/obj/effect/turf_decal/bot, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/power_room) +"fzp" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/gateway) +"fzr" = ( +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/herringbone, +/area/station/service/theater) +"fzP" = ( +/turf/closed/wall, +/area/station/medical/surgery) +"fAk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/hallway/secondary/command) +"fAu" = ( +/obj/structure/girder, +/obj/effect/spawner/random/trash/grille_or_waste, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/crew_quarters/bar) +"fAA" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrogen_output{ + dir = 4 + }, +/turf/open/floor/engine/n2, +/area/station/engineering/atmos) +"fAG" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, +/turf/open/floor/iron/textured_large, +/area/station/science/ordnance) +"fAJ" = ( +/turf/closed/wall, +/area/station/maintenance/starboard/aft) +"fAL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/fore) +"fAN" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/effect/turf_decal/box/red, +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 10 + }, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/iron/textured, +/area/station/science/ordnance) +"fAP" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/turf/open/floor/iron/textured_corner{ + dir = 8 + }, +/area/station/hallway/primary/aft) +"fAV" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 2; + height = 13; + name = "port bay 2"; + shuttle_id = "ferry_home"; + width = 5 + }, +/turf/open/floor/iron/textured_large, +/area/station/command/cc_dock) +"fAW" = ( +/obj/structure/dresser, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/carpet/cyan, +/area/station/commons/dorms) +"fBi" = ( +/obj/structure/table/wood/fancy, +/obj/item/flashlight/lantern, +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"fBB" = ( +/obj/structure/transit_tube/curved, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"fCb" = ( +/obj/machinery/light/floor/has_bulb, +/turf/open/floor/engine/n2o, +/area/station/engineering/atmos) +"fCd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/maintenance/external/glass{ + name = "Space Bridge Access" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/department/security/brig) +"fCe" = ( +/obj/structure/table, +/obj/machinery/firealarm/directional/north, +/obj/item/stack/package_wrap, +/obj/item/stack/wrapping_paper{ + pixel_y = 5 + }, +/obj/item/hand_labeler, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 9 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/textured, +/area/station/cargo/sorting) +"fCh" = ( +/obj/machinery/button/delam_scram, +/turf/closed/wall/r_wall, +/area/station/engineering/supermatter/room) +"fCo" = ( +/obj/machinery/status_display/ai/directional/north, +/obj/effect/turf_decal/tile/dark_red/diagonal_centre, +/obj/effect/turf_decal/tile/neutral/diagonal_centre, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/execution/transfer) +"fCx" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"fCy" = ( +/obj/structure/window/reinforced/spawner/directional/east{ + layer = 2.9 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 6 + }, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/secondary/exit/departure_lounge) +"fCM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/graffiti, +/obj/effect/spawner/random/trash/cigbutt, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft) +"fCY" = ( +/obj/item/stack/rods{ + amount = 23 + }, +/obj/item/stack/cable_coil, +/obj/effect/spawner/random/decoration/glowstick, +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/science/research/abandoned) +"fDb" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/ordnance_freezer_chamber_input{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + dir = 6; + name = "blue line" + }, +/turf/open/floor/engine/vacuum, +/area/station/science/ordnance/freezerchamber) +"fDd" = ( +/obj/effect/turf_decal/tile/dark_red/diagonal_centre, +/obj/effect/turf_decal/tile/neutral/diagonal_centre, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/execution/transfer) +"fDf" = ( +/obj/machinery/duct, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/storage) +"fDn" = ( +/turf/closed/wall, +/area/station/medical/pharmacy) +"fDu" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"fDz" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/security/old/glass{ + name = "Correction Officer Lounge" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/corrections_officer) +"fDA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical) +"fDJ" = ( +/obj/machinery/rnd/server, +/obj/effect/turf_decal/bot_red, +/turf/open/floor/circuit/telecomms/server, +/area/station/science/server) +"fDO" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_atmos{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/maintenance/disposal/incinerator) +"fDZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/turf/open/floor/iron/white/textured_large, +/area/station/science/genetics) +"fEo" = ( +/turf/closed/wall, +/area/station/engineering/atmos/storage) +"fEB" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/directions/security/directional/east{ + dir = 1 + }, +/obj/structure/sign/directions/command/directional/east{ + dir = 1; + pixel_y = 8 + }, +/obj/structure/sign/directions/evac/directional/east{ + pixel_y = -8 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/primary/central) +"fEC" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"fEL" = ( +/obj/structure/chair/sofa/bench/right, +/obj/effect/landmark/start/hangover, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"fEM" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair/stool/directional/south, +/turf/open/floor/wood/large, +/area/station/commons/fitness/recreation/entertainment) +"fEX" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/obj/structure/window/reinforced/plasma/spawner/directional/west, +/obj/effect/turf_decal/tile/purple/full, +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, +/obj/machinery/atmospherics/components/binary/pump/off/yellow/visible{ + dir = 4; + name = "Plasma to Pure" + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"fFe" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/textured_large, +/area/station/command/cc_dock) +"fFg" = ( +/obj/item/crowbar/large, +/obj/structure/rack, +/obj/item/flashlight, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/supermatter/room) +"fFi" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/iron/grimy, +/area/station/hallway/primary/central/fore) +"fFn" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/iron/textured_edge, +/area/station/construction/mining/aux_base) +"fGb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/central) +"fGh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/security/greater) +"fGl" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/textured_corner{ + dir = 1 + }, +/area/station/engineering/main) +"fGy" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/shutters/window{ + dir = 8; + id = "armory"; + name = "Armory Shutter" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/ai_monitored/security/armory) +"fGB" = ( +/turf/closed/wall/r_wall, +/area/station/science/ordnance/bomb) +"fGC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/commons/vacant_room/office) +"fHb" = ( +/turf/closed/wall/r_wall, +/area/station/command/bridge) +"fHc" = ( +/obj/effect/turf_decal/siding/thinplating/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"fHg" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"fHk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/rack, +/obj/item/storage/toolbox/electrical{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/toolbox/mechanical, +/obj/item/multitool, +/obj/effect/turf_decal/bot, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/aisat/atmos) +"fHl" = ( +/obj/structure/table/wood/fancy, +/obj/item/food/pie/cream, +/obj/machinery/computer/security/telescreen/entertainment/directional/north, +/obj/item/paper/crumpled{ + default_raw_text = "Knock them dead out there, sport!"; + name = "note from mom" + }, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_red/opposingcorners, +/turf/open/floor/iron, +/area/station/service/theater) +"fHx" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/dark/end{ + dir = 1 + }, +/obj/structure/drain, +/obj/machinery/shower/directional/north, +/turf/open/floor/iron/checker, +/area/station/engineering/main) +"fHI" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"fHY" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"fIK" = ( +/obj/machinery/photocopier, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/effect/turf_decal/bot, +/obj/item/paper/monitorkey, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/ce) +"fIP" = ( +/obj/structure/weightmachine, +/obj/effect/turf_decal/tile/yellow/full, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white/textured_large, +/area/station/commons/fitness/recreation/entertainment) +"fIQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/engineering/atmos) +"fIW" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plating, +/area/station/service/kitchen/abandoned) +"fIZ" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/atmos/storage/gas) +"fJp" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/obj/effect/turf_decal/siding/green{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"fJz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/grunge{ + id_tag = "Cell3Privacy"; + name = "Cell 3" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/prison) +"fJT" = ( +/obj/structure/railing, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/flowers_yw, +/turf/open/floor/grass, +/area/station/hallway/secondary/exit/departure_lounge) +"fKb" = ( +/turf/open/floor/iron/textured, +/area/station/command/cc_dock) +"fKq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"fKt" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/atmos) +"fKv" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/external/glass{ + name = "Arrival Airlock"; + space_dir = 2 + }, +/turf/open/floor/catwalk_floor, +/area/station/hallway/secondary/entry) +"fKI" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/station/maintenance/disposal/incinerator) +"fKL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/large, +/area/station/commons/fitness/recreation/entertainment) +"fKN" = ( +/obj/machinery/atmospherics/components/unary/cryo_cell, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/turf/open/floor/iron/dark/textured, +/area/station/medical/medbay/central) +"fKU" = ( +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/warehouse) +"fLd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/textured_large, +/area/station/command/cc_dock) +"fLg" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/atmos) +"fLo" = ( +/obj/structure/closet/crate/trashcart/laundry, +/obj/item/reagent_containers/hypospray/medipen, +/obj/item/toy/crayon/spraycan, +/obj/effect/spawner/random/contraband/prison, +/obj/item/radio/intercom/prison/directional/north, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/kitchen{ + dir = 1 + }, +/area/station/security/prison/work) +"fLp" = ( +/turf/closed/wall, +/area/station/service/hydroponics) +"fLr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/main) +"fLB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/upper) +"fLC" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/freezer, +/area/station/medical/pharmacy) +"fLX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/maintenance_hatch, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/science/ordnance_maint) +"fMc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"fMg" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/machinery/button/door/directional/west{ + id = "warehouse_shutters"; + name = "warehouse shutters control" + }, +/obj/machinery/camera/directional/west{ + c_tag = "Cargo - Hallway"; + name = "cargo camera" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/cargo/storage) +"fMy" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos/storage) +"fMH" = ( +/obj/machinery/gulag_teleporter, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/dark_red/diagonal_centre, +/obj/effect/turf_decal/tile/neutral/diagonal_centre, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/execution/transfer) +"fMW" = ( +/obj/effect/landmark/start/janitor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"fNg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/cafeteria, +/area/station/service/cafeteria) +"fNt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/paper/crumpled/fluff{ + default_raw_text = "DON'T MOTH
OPEN INSIDE" + }, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/greater) +"fNC" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/hallway/primary/aft) +"fND" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/turf/open/floor/iron/diagonal, +/area/station/hallway/secondary/exit/departure_lounge) +"fNI" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/turf/open/floor/engine, +/area/station/science/explab) +"fNL" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/vending/hydroseeds, +/obj/effect/turf_decal/bot, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/hydroponics) +"fNQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/engineering/break_room) +"fNT" = ( +/obj/machinery/power/port_gen/pacman, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/item/stack/sheet/mineral/plasma{ + amount = 30 + }, +/obj/machinery/light_switch/directional/west, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/gravity_generator) +"fNW" = ( +/obj/structure/chair/pew/left, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/security/courtroom) +"fNY" = ( +/obj/effect/turf_decal/trimline/dark_green/filled/line{ + dir = 10 + }, +/turf/open/floor/iron/white, +/area/station/medical/virology) +"fOm" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_corner, +/area/station/cargo/storage) +"fOp" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable/layer3, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/aisat_interior) +"fOq" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/obj/machinery/door/airlock/external/glass{ + name = "External Access"; + space_dir = 2 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical/central) +"fOv" = ( +/obj/structure/trash_pile, +/turf/open/floor/iron/textured, +/area/station/medical/medbay/central) +"fOR" = ( +/obj/machinery/camera/directional/south{ + c_tag = "Bridge - Captain's Quarters"; + name = "command camera" + }, +/obj/machinery/door/window/brigdoor/left/directional/north{ + name = "Secure Captain Storage"; + req_access = list("captain") + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/captain/private) +"fOX" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 5 + }, +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/atmos/storage) +"fPi" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/effect/spawner/random/maintenance, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/fore) +"fPm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft) +"fPo" = ( +/obj/structure/table/reinforced, +/obj/item/stack/rods{ + amount = 25; + pixel_y = 3 + }, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 6 + }, +/obj/item/stack/cable_coil{ + pixel_y = 3 + }, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Primary Tool Storage" + }, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/edge, +/area/station/commons/storage/primary) +"fPz" = ( +/obj/structure/water_source/puddle, +/obj/item/reagent_containers/cup/bucket, +/obj/effect/landmark/event_spawn, +/turf/open/floor/grass, +/area/station/service/chapel) +"fPB" = ( +/obj/machinery/corral_corner{ + mapping_id = "2" + }, +/obj/machinery/slime_pen_controller{ + mapping_id = "2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/light/neon_lining{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"fPE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/grimy, +/area/station/commons/lounge) +"fPM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/bitrunning/den) +"fPT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/large, +/area/station/security/checkpoint/customs) +"fQa" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 8 + }, +/area/station/ai_monitored/command/storage/eva) +"fQz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/pod/dark, +/area/station/service/chapel/office) +"fQH" = ( +/obj/item/clothing/mask/gas/syndicate, +/turf/open/floor/plating/foam{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"fQL" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/glass/reinforced, +/area/station/security/office) +"fQS" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"fRf" = ( +/turf/open/floor/carpet/blue, +/area/station/command/bridge) +"fRh" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/bitrunning/den) +"fRi" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/bathroom{ + name = "Primary Restroom" + }, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet) +"fRm" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light/warm/directional/east, +/obj/machinery/light_switch/directional/east, +/obj/effect/landmark/start/paramedic, +/obj/structure/chair/sofa/corp/right{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/medical/break_room) +"fRq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/circuit/green, +/area/station/ai_monitored/command/nuke_storage) +"fRw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/camera/directional/south, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"fRM" = ( +/obj/structure/table/wood/fancy, +/obj/item/book/bible, +/turf/open/floor/carpet/stellar, +/area/station/service/chapel/funeral) +"fRS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/circuit/green, +/area/station/ai_monitored/turret_protected/ai) +"fRZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) +"fSa" = ( +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/station/engineering/atmos) +"fSo" = ( +/obj/machinery/air_sensor/incinerator_tank, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/turf/open/floor/engine, +/area/station/maintenance/disposal/incinerator) +"fSD" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"fSS" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/department/medical) +"fTi" = ( +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/security/brig) +"fTl" = ( +/obj/structure/chair/sofa/left/brown, +/turf/open/floor/carpet/green, +/area/station/commons/dorms) +"fTs" = ( +/obj/effect/turf_decal/box, +/turf/open/floor/iron/textured, +/area/station/science/research/abandoned) +"fTA" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/machinery/computer/crew{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/security/warden) +"fTH" = ( +/obj/structure/sign/warning/secure_area, +/turf/closed/wall/r_wall, +/area/station/maintenance/port) +"fTJ" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/obj/structure/table, +/obj/item/stack/package_wrap{ + pixel_y = 4 + }, +/obj/item/hand_labeler{ + pixel_y = 4 + }, +/obj/machinery/firealarm/directional/east, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/large, +/area/station/commons/vacant_room/commissary) +"fTK" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/department/science/ordnance_maint) +"fTO" = ( +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 8 + }, +/obj/machinery/conveyor_switch/oneway{ + id = "cargodisposals"; + name = "disposals conveyor switch" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/cargo/sorting) +"fTR" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/effect/turf_decal/trimline/blue/filled/warning, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/atmos) +"fUb" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"fUc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/turf/open/floor/iron/dark/diagonal, +/area/station/hallway/primary/fore) +"fUk" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/closed/wall, +/area/station/maintenance/department/medical/central) +"fUo" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/landmark/start/librarian, +/turf/open/floor/carpet, +/area/station/service/library) +"fUu" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/textured_large, +/area/station/cargo/lobby) +"fUy" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/machinery/light_switch/directional/east, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/closet/crate/freezer/surplus_limbs, +/turf/open/floor/iron/showroomfloor, +/area/station/medical/coldroom) +"fUB" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/red{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/security/office) +"fUT" = ( +/turf/open/floor/iron/grimy, +/area/station/commons/lounge) +"fUU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/obj/effect/spawner/random/maintenance/four, +/obj/effect/spawner/random/engineering/vending_restock, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/iron/textured, +/area/station/commons/vacant_room) +"fVd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"fVg" = ( +/obj/structure/lattice, +/obj/machinery/camera/directional/east{ + c_tag = "AI Satellite - Port"; + name = "ai camera"; + network = list("minisat"); + start_active = 1 + }, +/turf/open/space/basic, +/area/space/nearstation) +"fVi" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/effect/turf_decal/tile/red/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/commons/lounge) +"fVn" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "brig-entrance-fore" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/security/glass{ + id_tag = "outerbrig"; + name = "Brig" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/security/entrance, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/office) +"fVz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/dark_green/filled/warning{ + dir = 9 + }, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/medical/virology) +"fVF" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/interrogation) +"fVM" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"fVT" = ( +/obj/effect/turf_decal/siding/thinplating/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/sorting/mail{ + dir = 1; + name = "HydroponicsJunction" + }, +/obj/effect/mapping_helpers/mail_sorting/service/hydroponics, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"fWc" = ( +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall25"; + location = "hall24" + }, +/turf/open/floor/iron/edge, +/area/station/hallway/primary/fore) +"fWu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/medical/central) +"fWA" = ( +/obj/structure/transit_tube/horizontal{ + dir = 1 + }, +/obj/effect/spawner/structure/window/hollow/reinforced/middle, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/upper) +"fWC" = ( +/obj/structure/lattice/catwalk, +/obj/item/clothing/under/rank/prisoner, +/turf/open/space/basic, +/area/space/nearstation) +"fWD" = ( +/obj/effect/turf_decal/trimline/red/filled/warning, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/security/brig) +"fWK" = ( +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/pod/dark, +/area/station/service/chapel/office) +"fWL" = ( +/obj/structure/chair/pew/right, +/turf/open/floor/iron/chapel{ + dir = 6 + }, +/area/station/service/chapel) +"fXl" = ( +/obj/docking_port/stationary/random{ + name = "lavaland"; + shuttle_id = "pod_lavaland" + }, +/turf/open/space, +/area/space/nearstation) +"fXm" = ( +/obj/item/restraints/legcuffs/beartrap, +/obj/item/restraints/legcuffs/beartrap, +/obj/effect/turf_decal/tile/dark/fourcorners, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 4 + }, +/turf/open/floor/noslip, +/area/station/service/janitor) +"fXr" = ( +/obj/effect/mapping_helpers/airlock/access/all/medical/virology, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/virology{ + autoclose = 0; + frequency = 1449; + id_tag = "virology_airlock_interior"; + name = "Virology Interior Airlock" + }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door_buttons/access_button{ + idDoor = "virology_airlock_interior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_x = 9; + pixel_y = -24; + req_access = list("pathology") + }, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/virology) +"fXv" = ( +/obj/effect/landmark/start/detective, +/turf/open/floor/carpet, +/area/station/security/detectives_office) +"fXG" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/effect/spawner/random/maintenance/two, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/greater) +"fXJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/security/brig) +"fXK" = ( +/obj/structure/table/wood/fancy/royalblue, +/obj/effect/turf_decal/siding/wood, +/obj/item/storage/photo_album, +/obj/item/camera{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/structure/sign/calendar/directional/south, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"fXP" = ( +/turf/closed/wall/r_wall, +/area/station/engineering/atmos/storage/gas) +"fXZ" = ( +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/office) +"fYi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/fans/tiny/forcefield{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters{ + dir = 8; + id = "bsa"; + name = "BSA Shutters" + }, +/turf/open/floor/iron/textured_large, +/area/station/hallway/secondary/construction) +"fYl" = ( +/obj/structure/marker_beacon/burgundy, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"fYn" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/biogenerator, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 1; + id = "hydroponics_counter"; + name = "Hydroponics Counter Shutters" + }, +/obj/machinery/door/firedoor, +/obj/structure/window/spawner/directional/east, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/large, +/area/station/service/hydroponics) +"fYs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/botanist, +/turf/open/floor/wood, +/area/station/service/hydroponics/upper) +"fYF" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 6 + }, +/obj/machinery/meter, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"fYK" = ( +/obj/structure/sign/warning/biohazard/directional/south, +/turf/open/space/basic, +/area/space) +"fYR" = ( +/obj/machinery/light/small/directional/east, +/obj/structure/flora/bush/sparsegrass/style_random, +/turf/open/floor/grass, +/area/station/service/chapel) +"fYT" = ( +/obj/structure/spider/stickyweb, +/obj/structure/cable, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/electrical) +"fZo" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"fZs" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/trimline/dark_green/filled/line{ + dir = 5 + }, +/obj/machinery/vending/wallmed/directional/east, +/obj/machinery/reagentgrinder{ + pixel_y = 7 + }, +/turf/open/floor/iron/white, +/area/station/medical/virology) +"fZt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/station/commons/dorms) +"fZv" = ( +/obj/effect/turf_decal/trimline/green/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/small, +/area/station/commons/dorms) +"fZy" = ( +/obj/item/radio/intercom/directional/west, +/obj/machinery/camera/directional/west{ + c_tag = "Engineering Emitter Room Port"; + network = list("ss13","engine") + }, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/supermatter/room) +"fZB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/gravity_generator) +"fZM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/pod/dark, +/area/station/engineering/storage/tech) +"fZT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/line, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/secondary/construction) +"gaf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 5 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"gai" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"gap" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/effect/mapping_helpers/damaged_window, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plating, +/area/station/service/kitchen/abandoned) +"gav" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Vacant Commissary Maintenance" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/lesser) +"gaB" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"gaE" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/station/security/brig) +"gaJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/fourcorners, +/turf/open/floor/iron/dark/textured, +/area/station/security/warden) +"gaQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/medical/glass{ + id_tag = "MedbayFoyer"; + name = "Medbay" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/machinery/duct, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/obj/effect/mapping_helpers/airlock/access/any/medical/morgue, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) +"gba" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/primary/central/aft) +"gbf" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/light/neon_lining{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/science/xenobiology) +"gbo" = ( +/obj/effect/turf_decal/trimline/green/filled/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/corner, +/area/station/commons/fitness/recreation/entertainment) +"gbC" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/box, +/obj/machinery/recharge_station, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/storage_shared) +"gbM" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/fore) +"gbO" = ( +/obj/effect/landmark/start/hangover, +/obj/structure/railing, +/turf/open/floor/iron/textured, +/area/station/command/cc_dock) +"gbQ" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/machinery/power/port_gen/pacman, +/obj/structure/cable, +/obj/machinery/light/small/directional/north, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/eva_shed/starboard) +"gcc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/random/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"gcg" = ( +/obj/structure/closet/crate/goldcrate, +/obj/item/stack/spacecash/c500, +/obj/item/stack/spacecash/c500, +/obj/item/stack/spacecash/c500, +/obj/item/stack/spacecash/c500, +/obj/machinery/airalarm/directional/north, +/obj/machinery/light_switch/directional/west, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/station/ai_monitored/command/nuke_storage) +"gcj" = ( +/obj/structure/chair/sofa/left/brown{ + dir = 4 + }, +/turf/open/floor/iron/grimy, +/area/station/commons/lounge) +"gcp" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/obj/machinery/light/cold/directional/east, +/obj/machinery/gibber, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/service/kitchen/coldroom) +"gcr" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/large, +/area/station/commons/vacant_room) +"gcy" = ( +/obj/structure/trash_pile, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/medical/morgue) +"gcY" = ( +/obj/structure/girder, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/supermatter/room) +"gdk" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/iron/stairs/right{ + dir = 8 + }, +/area/station/engineering/main) +"gdu" = ( +/obj/machinery/power/shuttle_engine/heater, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft) +"gdB" = ( +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/leavy/style_random, +/obj/structure/flora/bush/sparsegrass/style_random, +/turf/open/misc/asteroid, +/area/station/hallway/secondary/exit/departure_lounge) +"gdQ" = ( +/obj/effect/turf_decal/trimline/dark_green/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/medical/virology) +"gdS" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/science{ + name = "Xenobiology Lab External Access" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "sci-toxins-passthrough" + }, +/obj/effect/mapping_helpers/airlock/access/any/science/xenobio, +/turf/open/floor/iron/white/textured_large, +/area/station/science/xenobiology) +"gdV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/holosign/barrier, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/fore) +"geg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"gei" = ( +/turf/open/floor/iron/large, +/area/station/hallway/primary/central/aft) +"geo" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 6 + }, +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/machinery/computer/security/telescreen{ + dir = 8; + name = "Prisoner Telescreen"; + network = list("prison"); + pixel_x = 28 + }, +/obj/machinery/recharger{ + pixel_x = -7; + pixel_y = 3 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/warden) +"gep" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/telecomms/server/presets/common, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/station/tcommsat/server) +"geA" = ( +/obj/machinery/door/window/left/directional/east{ + name = "Animal Pen A"; + req_access = list("maint_tunnels") + }, +/turf/open/floor/grass, +/area/station/service/hydroponics/garden) +"geE" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/wood, +/area/station/commons/dorms) +"geK" = ( +/obj/machinery/mecha_part_fabricator, +/obj/machinery/light_switch/directional/north{ + pixel_x = 18 + }, +/obj/machinery/requests_console/directional/north{ + department = "Robotics"; + name = "Robotics Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/ore_update, +/obj/effect/turf_decal/tile/dark_red/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_edge, +/area/station/science/robotics/lab) +"geV" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/service/chapel) +"gfb" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/machinery/airalarm/directional/west, +/obj/effect/landmark/start/hangover, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/primary/central) +"gfe" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/large, +/area/station/commons/vacant_room/commissary) +"gfk" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 5 + }, +/obj/structure/reagent_dispensers/wall/peppertank/directional/east, +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured, +/area/station/security/lockers) +"gfr" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/telecomms/bus/preset_one, +/turf/open/floor/circuit/telecomms/server, +/area/station/tcommsat/server) +"gfv" = ( +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"gfw" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/lesser) +"gge" = ( +/turf/open/floor/carpet/stellar, +/area/station/service/chapel/office) +"ggf" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/gravity_generator) +"ggm" = ( +/turf/open/floor/glass/reinforced, +/area/station/maintenance/port/fore) +"ggB" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/cable/layer3, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"ggD" = ( +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "Barshutters"; + name = "Bar Shutters" + }, +/obj/structure/reagent_dispensers/beerkeg, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/large, +/area/station/service/bar) +"ggM" = ( +/obj/structure/cable, +/obj/structure/closet/firecloset/wall{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/white/end{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/hallway/secondary/command) +"ggQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/spawner/random/structure/steam_vent, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/science/ordnance_maint) +"ggR" = ( +/obj/machinery/status_display/evac/directional/east, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"ghh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/science/genetics) +"ght" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/public/glass{ + name = "Fore Central Primary Hallway" + }, +/turf/open/floor/iron/large, +/area/station/hallway/primary/central/fore) +"ghz" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"ghB" = ( +/obj/structure/table, +/obj/item/assembly/prox_sensor{ + pixel_x = -4; + pixel_y = 1 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = 5; + pixel_y = 7 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = 9; + pixel_y = -2 + }, +/turf/open/floor/iron/textured_large, +/area/station/science/ordnance/testlab) +"ghP" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/wood/parquet, +/area/station/common/night_club) +"ghU" = ( +/obj/structure/window/reinforced/spawner/directional/north{ + pixel_y = 1 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"ghY" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/machinery/power/energy_accumulator/tesla_coil/anchored, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"gil" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/ai) +"git" = ( +/obj/machinery/airalarm/directional/west, +/obj/structure/table, +/obj/item/clipboard{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/reagent_containers/cup/glass/mug/tea{ + pixel_x = -7; + pixel_y = 12 + }, +/obj/item/weldingtool{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 10 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) +"giv" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/exit/departure_lounge) +"giB" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/structure/bed/roller{ + dir = 8 + }, +/obj/machinery/newscaster/directional/west, +/obj/machinery/duct, +/obj/effect/turf_decal/box/blue, +/obj/item/bedsheet/medical{ + dir = 4 + }, +/turf/open/floor/iron/freezer, +/area/station/medical/treatment_center) +"giC" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/cargo/storage) +"giK" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Medbay Treatment"; + network = list("ss13","medbay") + }, +/obj/machinery/shower{ + pixel_y = 20 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"giM" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/aft/upper) +"giQ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"giR" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/security/brig) +"giT" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/aft) +"giU" = ( +/obj/machinery/holopad, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/wood/large, +/area/station/medical/psychology) +"giX" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/station/cargo/warehouse) +"giY" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/station/science/research) +"gjj" = ( +/obj/machinery/status_display/ai/directional/north, +/obj/machinery/modular_computer/preset/research, +/obj/effect/turf_decal/bot, +/turf/open/floor/carpet/purple, +/area/station/command/heads_quarters/rd) +"gjk" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 10 + }, +/obj/machinery/microwave, +/turf/open/floor/iron/textured, +/area/station/engineering/lobby) +"gjl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/science/robotics/mechbay) +"gjm" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/office) +"gjq" = ( +/obj/structure/table, +/obj/effect/spawner/random/food_or_drink/booze{ + pixel_y = 6; + spawn_loot_count = 2; + spawn_random_offset = 1 + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/miningoffice) +"gjs" = ( +/obj/structure/rack, +/obj/item/stack/sheet/iron/ten, +/obj/item/stack/rods/ten, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/glass{ + amount = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine/atmos) +"gjv" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 10 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/filingcabinet/filingcabinet, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/cargo/sorting) +"gjA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/firealarm/directional/west, +/obj/effect/landmark/start/hangover, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet) +"gjJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/herringbone, +/area/station/service/theater) +"gjM" = ( +/obj/structure/table, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/item/stack/cable_coil{ + pixel_y = 4 + }, +/obj/item/stock_parts/scanning_module{ + pixel_x = 4; + pixel_y = 7 + }, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/item/radio/headset/headset_sci{ + pixel_x = -13; + pixel_y = 3 + }, +/obj/item/stock_parts/capacitor, +/turf/open/floor/iron/white/textured_edge, +/area/station/science/lab) +"gjO" = ( +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Labor Camp Shuttle Airlock"; + space_dir = 8 + }, +/turf/open/floor/catwalk_floor, +/area/station/security/execution/transfer) +"gjP" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4; + name = "Output to Waste" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/supermatter/room) +"gjT" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/iron/showroomfloor, +/area/station/medical/coldroom) +"gkc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/button/door/directional/north{ + id = "sciencebridge"; + name = "Bridge Shutters" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/science/xenobiology) +"gkk" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 8 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"gkm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/rd) +"gkv" = ( +/obj/structure/table, +/obj/item/storage/box/drinkingglasses, +/obj/machinery/firealarm/directional/west, +/obj/structure/window/spawner/directional/north, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/exit/departure_lounge) +"gky" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/supermatter/room) +"gkA" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "brig-entrance-fore" + }, +/obj/machinery/door/airlock/security/glass{ + id_tag = "innerbrig"; + name = "Brig" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/security/entrance, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/office) +"gkI" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/textured_edge, +/area/station/hallway/secondary/entry) +"gkM" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "ordnance"; + name = "Ordnance Lab Shutters" + }, +/turf/open/floor/plating, +/area/station/science/ordnance) +"gkT" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 6 + }, +/obj/structure/cable, +/obj/item/toy/figure/secofficer{ + pixel_y = 16 + }, +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/iron/dark/textured, +/area/station/security/office) +"gld" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain/private) +"gle" = ( +/obj/machinery/atmospherics/components/trinary/mixer{ + dir = 1; + name = "plasma mixer" + }, +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/science/ordnance/storage) +"glj" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/tile/dark/fourcorners, +/obj/structure/disposalpipe/segment, +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/turf/open/floor/noslip, +/area/station/service/janitor) +"glp" = ( +/obj/machinery/digital_clock, +/turf/closed/wall/r_wall, +/area/station/command/heads_quarters/rd) +"glq" = ( +/obj/machinery/air_sensor/ordnance_burn_chamber, +/obj/effect/turf_decal/stripes/red/line{ + dir = 4 + }, +/turf/open/floor/engine/vacuum, +/area/station/science/ordnance/burnchamber) +"gls" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/machinery/door/airlock/external, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/department/engine/atmos) +"glD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/duct, +/obj/structure/disposalpipe/sorting/mail{ + dir = 2; + name = "Xenobio Junction" + }, +/obj/effect/turf_decal/tile/purple/diagonal_centre, +/obj/effect/mapping_helpers/mail_sorting/science/xenobiology, +/turf/open/floor/iron/white/diagonal, +/area/station/science/research) +"glS" = ( +/obj/structure/rack, +/obj/item/pipe_dispenser, +/obj/item/clothing/glasses/meson/engine, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"gmb" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate, +/obj/effect/spawner/random/maintenance/three, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/iron/textured_large, +/area/station/cargo/warehouse) +"gmd" = ( +/turf/closed/wall, +/area/station/science/lab) +"gms" = ( +/obj/structure/table/wood/fancy, +/obj/item/storage/box/matches{ + pixel_x = -3; + pixel_y = 8 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"gmz" = ( +/turf/closed/wall, +/area/station/service/hydroponics/garden/abandoned) +"gmD" = ( +/obj/effect/turf_decal/tile/dark/fourcorners, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "custodialshutters"; + name = "Custodial Closet Shutters" + }, +/turf/open/floor/noslip, +/area/station/service/janitor) +"gmE" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2, +/obj/effect/turf_decal/box/red, +/turf/open/floor/iron/textured, +/area/station/science/ordnance) +"gmJ" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"gmL" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/closet/secure_closet/cytology, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/science/xenobiology) +"gmU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/pod/dark, +/area/station/engineering/storage/tech) +"gna" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/engine, +/area/station/engineering/main) +"gnh" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/qm) +"gnw" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/obj/item/radio/intercom/directional/north, +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/turf/open/floor/iron/dark/textured, +/area/station/command/teleporter) +"gnM" = ( +/obj/structure/table/wood, +/obj/machinery/computer/security/telescreen/entertainment/directional/east, +/obj/item/papercutter{ + pixel_x = 4; + pixel_y = 2 + }, +/turf/open/floor/iron/grimy, +/area/station/service/library) +"gnQ" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/main) +"gnT" = ( +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/light/small/red/directional/south, +/turf/open/floor/iron/textured_large, +/area/station/hallway/secondary/exit/departure_lounge) +"goe" = ( +/obj/structure/closet/crate/solarpanel_small, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/solars/starboard/fore) +"got" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/eva_shed/port) +"gou" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical/morgue) +"goF" = ( +/obj/structure/sign/poster/official/wtf_is_co2, +/turf/closed/wall, +/area/station/engineering/atmos) +"goS" = ( +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"gpe" = ( +/turf/closed/wall/r_wall, +/area/station/engineering/gravity_generator) +"gpf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden/crude, +/obj/machinery/door/airlock/maintenance/external/glass, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/kitchen/abandoned) +"gpr" = ( +/obj/structure/sign/departments/restroom/directional/east, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 5 + }, +/obj/structure/closet/athletic_mixed, +/obj/machinery/light/warm/directional/east, +/obj/effect/landmark/start/hangover/closet, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation/entertainment) +"gpz" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/textured_large, +/area/station/hallway/secondary/construction) +"gpH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/turf/open/floor/iron/white/textured_large, +/area/station/science/lab) +"gpI" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/hallway/secondary/command) +"gpK" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/aft) +"gpO" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Prison - Shuttle Fore"; + dir = 6; + network = list("ss13","prison") + }, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/glass/reinforced, +/area/station/security/execution/transfer) +"gpR" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/storage) +"gpW" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/large, +/area/station/commons/storage/primary) +"gpY" = ( +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/atmos) +"gqc" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"gqB" = ( +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/white/diagonal, +/area/station/medical/medbay/central) +"gqC" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/spawner/random/maintenance, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/textured_large, +/area/station/cargo/storage) +"gqN" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/medical/medbay/central) +"gra" = ( +/obj/structure/rack/gunrack, +/obj/effect/turf_decal/tile/dark_red/half{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/spawner/armory_spawn/shotguns, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/ai_monitored/security/armory) +"grg" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_x = -7; + pixel_y = 4 + }, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = 5; + pixel_y = 3 + }, +/turf/open/floor/iron/large, +/area/station/security/checkpoint/customs) +"grk" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white/textured_large, +/area/station/hallway/primary/fore) +"grt" = ( +/obj/effect/spawner/liquids_spawner, +/turf/open/floor/lowered/iron/pool, +/area/station/security/prison) +"grA" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/textured_edge, +/area/station/security/checkpoint/science/research) +"grD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"grE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/engine) +"grQ" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/effect/turf_decal/trimline/green/line{ + dir = 1 + }, +/obj/structure/closet/firecloset/wall{ + pixel_y = -32 + }, +/obj/effect/turf_decal/trimline/white/end{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/service/hydroponics) +"grR" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/camera/directional/north{ + c_tag = "Medbay - Satellite"; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/obj/structure/sign/departments/psychology/directional/north, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/turf/open/floor/iron/white/diagonal, +/area/station/medical/medbay/central) +"grW" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_red/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"gsl" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/light_switch/directional/north{ + pixel_x = 14 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/service/hydroponics) +"gsL" = ( +/obj/structure/showcase/cyborg/old{ + dir = 8; + pixel_x = 9; + pixel_y = 2 + }, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "AI Core shutters"; + name = "AI Core Shutters" + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/ai) +"gsU" = ( +/turf/closed/wall, +/area/station/maintenance/disposal) +"gsZ" = ( +/turf/open/floor/iron/textured_large, +/area/station/cargo/miningdock) +"gta" = ( +/obj/structure/sign/poster/official/periodic_table/directional/north, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) +"gtd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light_switch/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"gtg" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/table, +/obj/machinery/status_display/evac/directional/west, +/obj/machinery/microwave, +/turf/open/floor/iron/dark/textured, +/area/station/medical/break_room) +"gtq" = ( +/obj/item/radio/intercom/directional/south{ + freerange = 1; + frequency = 1447; + listening = 0; + name = "Private Channel" + }, +/obj/structure/sign/nanotrasen{ + pixel_x = 32 + }, +/obj/structure/closet/emcloset, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"gtr" = ( +/obj/structure/chair/wood, +/turf/open/floor/iron/chapel{ + dir = 6 + }, +/area/station/service/chapel) +"gty" = ( +/obj/structure/table, +/obj/item/controller{ + pixel_y = 5 + }, +/obj/item/compact_remote{ + pixel_y = 5 + }, +/obj/item/compact_remote{ + pixel_y = 5 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/science/auxlab) +"gtE" = ( +/obj/structure/chair/sofa/bench/left, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/sign/logo{ + icon_state = "nanotrasen_sign4"; + pixel_y = 32 + }, +/turf/open/floor/iron/white/textured_edge, +/area/station/medical/medbay/lobby) +"gtG" = ( +/obj/effect/turf_decal/vg_decals/atmos/mix, +/turf/open/floor/engine/vacuum, +/area/station/engineering/atmos) +"gtH" = ( +/obj/effect/turf_decal/trimline/dark_red/arrow_ccw, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"gtM" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/machinery/status_display/evac/directional/south, +/obj/effect/turf_decal/bot, +/obj/machinery/slime_market_pad, +/turf/open/floor/iron/white, +/area/station/science/xenobiology) +"gtT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Interrogation" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/interrogation) +"gua" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 4 + }, +/area/station/security/prison) +"gug" = ( +/obj/effect/spawner/random/structure/girder, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine) +"gum" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/camera/directional/north{ + c_tag = "Solar - Fore Port"; + name = "solar camera" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/solars/port/fore) +"gut" = ( +/obj/item/book/manual/wiki/chemistry{ + pixel_x = -13; + pixel_y = 7 + }, +/obj/structure/table/reinforced/rglass, +/obj/item/book/manual/wiki/grenades{ + pixel_y = 3; + pixel_x = -7 + }, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade{ + pixel_x = -2 + }, +/obj/item/stack/cable_coil, +/obj/item/ph_meter{ + pixel_x = 12; + pixel_y = 6 + }, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/screwdriver, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/turf/open/floor/iron/freezer, +/area/station/medical/pharmacy) +"guE" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/white/textured_edge, +/area/station/medical/medbay/central) +"guX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/science/xenobiology) +"gvb" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_large, +/area/station/engineering/power_room) +"gvf" = ( +/obj/machinery/camera/directional/west{ + c_tag = "Atmospherics Tank - N2"; + name = "atmospherics camera"; + network = list("ss13","engine") + }, +/turf/open/floor/engine/n2, +/area/station/engineering/atmos) +"gvl" = ( +/obj/machinery/atmospherics/components/unary/passive_vent{ + name = "server vent" + }, +/turf/open/floor/circuit/telecomms/server, +/area/station/science/server) +"gvs" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/holopad/secure, +/obj/effect/landmark/start/cyborg, +/obj/effect/turf_decal/bot, +/obj/structure/cable/layer3, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/aisat_interior) +"gvt" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/exit/departure_lounge) +"gvA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/dark_green/filled/warning{ + dir = 8 + }, +/obj/effect/landmark/start/virologist, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/medical/virology) +"gvG" = ( +/turf/open/floor/engine, +/area/station/science/auxlab/firing_range) +"gvI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/storage) +"gvO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/dark, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"gwc" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"gwf" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/obj/effect/spawner/structure/window/reinforced/plasma, +/turf/open/floor/plating, +/area/station/engineering/atmos) +"gwk" = ( +/obj/structure/cable, +/obj/machinery/power/solar_control{ + dir = 8; + id = "starboardbow"; + name = "Starboard Bow Solar Control" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/solars/starboard/fore) +"gws" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"gwB" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/science/xenobiology) +"gwE" = ( +/obj/item/toy/beach_ball/branded, +/obj/effect/spawner/liquids_spawner, +/turf/open/floor/lowered/iron/pool, +/area/station/common/pool) +"gwF" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/item/radio/intercom/directional/south{ + broadcasting = 1; + frequency = 1423; + listening = 0; + name = "Interrogation Intercom" + }, +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/security/interrogation) +"gwJ" = ( +/obj/machinery/corral_corner{ + mapping_id = "4" + }, +/obj/machinery/light/neon_lining{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"gwM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/hallway/primary/aft) +"gwZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/engineering/canister, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/crew_quarters/bar) +"gxa" = ( +/obj/item/storage/toolbox/mechanical, +/obj/item/radio{ + pixel_x = -12; + pixel_y = 3 + }, +/obj/item/flashlight, +/obj/item/radio{ + pixel_x = -12; + pixel_y = 3 + }, +/obj/item/flashlight, +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/turf/open/floor/pod/dark, +/area/station/engineering/storage/tech) +"gxe" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/machinery/bluespace_vendor/directional/east, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/commons/fitness/recreation/entertainment) +"gxq" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/cigarettes{ + pixel_y = 2 + }, +/obj/item/lighter/greyscale{ + pixel_x = 4; + pixel_y = 2 + }, +/turf/open/floor/carpet, +/area/station/commons/dorms) +"gxA" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured_large, +/area/station/engineering/break_room) +"gxD" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/closet/radiation, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"gxI" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/east, +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"gxX" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"gxZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/station/security/courtroom) +"gyc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/wood, +/obj/effect/spawner/random/bureaucracy/briefcase{ + spawn_loot_count = 2; + spawn_random_offset = 1 + }, +/turf/open/floor/iron/grimy, +/area/station/commons/vacant_room/office) +"gyC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/upper) +"gyG" = ( +/obj/machinery/power/shuttle_engine/heater, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/obj/structure/window/reinforced/plasma/spawner/directional/east, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"gzn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/hallway/primary/fore) +"gzy" = ( +/obj/machinery/light/warm/directional/west, +/obj/machinery/airalarm/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet/blue, +/area/station/command/heads_quarters/cmo) +"gzC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Law Office" + }, +/obj/effect/mapping_helpers/airlock/access/all/service/lawyer, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/landmark/navigate_destination/lawyer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/service/lawoffice) +"gzE" = ( +/obj/structure/cable, +/turf/open/floor/iron/textured_large, +/area/station/engineering/lobby) +"gzU" = ( +/obj/structure/sign/poster/official/report_crimes/directional/south, +/turf/open/floor/iron/grimy, +/area/station/service/lawoffice) +"gzZ" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/central) +"gAd" = ( +/obj/machinery/power/shuttle_engine/heater, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/obj/structure/window/reinforced/plasma/spawner/directional/west, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine/atmos) +"gAe" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) +"gAh" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/sign/warning/biohazard/directional/south, +/obj/effect/turf_decal/tile/dark_green/diagonal_centre, +/obj/machinery/light/cold/directional/south, +/obj/machinery/computer/records/pathology{ + dir = 1 + }, +/turf/open/floor/iron/white/diagonal, +/area/station/medical/virology) +"gAm" = ( +/obj/machinery/disposal/bin, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/camera/directional/west{ + c_tag = "Atmospherics - Office"; + name = "atmospherics camera" + }, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos/storage/gas) +"gAn" = ( +/obj/structure/sign/warning/vacuum/external/directional/north, +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/pod, +/area/station/service/chapel/funeral) +"gAo" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/textured, +/area/station/engineering/power_room) +"gAC" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/visible{ + dir = 5 + }, +/obj/item/clothing/head/cone, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/medical/virology) +"gAG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/firecloset, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/crew_quarters/bar) +"gAQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/obj/effect/turf_decal/bot, +/obj/structure/table, +/obj/item/storage/box/lights/mixed, +/obj/item/grenade/chem_grenade/smart_metal_foam, +/obj/item/grenade/chem_grenade/smart_metal_foam, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"gAZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/corner{ + dir = 1 + }, +/area/station/commons/fitness/recreation/entertainment) +"gBd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/medical/medbay/central) +"gBB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/structure/cable/layer3, +/turf/open/floor/circuit/green, +/area/station/ai_monitored/turret_protected/ai) +"gCm" = ( +/obj/machinery/atmospherics/components/unary/passive_vent{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"gCn" = ( +/obj/effect/turf_decal/trimline/brown/filled/warning, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/cargo/lobby) +"gCp" = ( +/turf/open/floor/carpet/stellar, +/area/station/service/chapel/funeral) +"gCC" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/airalarm/directional/north, +/obj/structure/table/glass, +/obj/item/reagent_containers/chem_pack{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/reagent_containers/chem_pack{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/item/reagent_containers/chem_pack{ + pixel_y = 3 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/freezer, +/area/station/medical/treatment_center) +"gCD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"gCG" = ( +/obj/effect/turf_decal/vg_decals/atmos/plasma, +/turf/open/floor/engine/plasma, +/area/station/engineering/atmos) +"gCH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/random/structure/barricade, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port) +"gCI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/textured_large, +/area/station/engineering/storage_shared) +"gCJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Medbay Lobby" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/lobby) +"gDa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/commons/storage/primary) +"gDc" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/machinery/requests_console/directional/west{ + department = "Theater"; + name = "Theater Requests Console" + }, +/obj/machinery/light/warm/directional/west, +/obj/machinery/camera/directional/west{ + c_tag = "Service - Stage Backroom"; + name = "service camera" + }, +/turf/open/floor/iron/herringbone, +/area/station/service/theater) +"gDd" = ( +/obj/machinery/component_printer, +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/science/auxlab) +"gDf" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/effect/artifact_spawner, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/engine, +/area/station/science/explab) +"gDp" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/turf/open/floor/carpet, +/area/station/security/detectives_office) +"gDz" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/storage/briefcase/secure, +/obj/item/radio/headset/headset_com{ + pixel_x = -16 + }, +/turf/open/floor/carpet/blue, +/area/station/command/bridge) +"gDE" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/plasma_input{ + dir = 4 + }, +/turf/open/floor/engine/plasma, +/area/station/engineering/atmos) +"gDF" = ( +/obj/machinery/power/smes, +/obj/structure/cable, +/obj/structure/sign/warning/no_smoking/directional/north, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/fore) +"gDG" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/turf_decal/bot_red, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/execution/education) +"gDL" = ( +/obj/structure/railing/wood{ + dir = 8 + }, +/obj/structure/anvil, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/wood/large, +/area/station/service/barber) +"gDP" = ( +/obj/structure/sign/gym{ + pixel_y = 32 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"gDU" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 9 + }, +/obj/structure/sign/poster/official/jim_nortons/directional/north, +/obj/structure/closet/secure_closet/personal{ + name = "Commissary Locker" + }, +/obj/effect/spawner/random/trash/janitor_supplies, +/obj/effect/spawner/random/bureaucracy/briefcase, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/large, +/area/station/commons/vacant_room/commissary) +"gEe" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/dark/visible{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/science/ordnance) +"gEq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/aft) +"gEJ" = ( +/obj/structure/table/wood/fancy/red, +/obj/effect/spawner/random/aimodule/harmful, +/obj/machinery/door/window/brigdoor/left/directional/north{ + name = "High-Risk Modules"; + req_access = list("captain") + }, +/turf/open/floor/circuit/red, +/area/station/ai_monitored/turret_protected/ai_upload) +"gEO" = ( +/obj/structure/rack/gunrack, +/obj/effect/turf_decal/tile/dark_red/anticorner{ + dir = 4 + }, +/obj/structure/sign/poster/official/ion_rifle/directional/east, +/obj/effect/turf_decal/delivery, +/obj/effect/spawner/armory_spawn/smg, +/turf/open/floor/iron/dark/textured_corner{ + dir = 8 + }, +/area/station/ai_monitored/security/armory) +"gEV" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 9 + }, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/secondary/exit/departure_lounge) +"gEY" = ( +/obj/structure/closet/firecloset/wall{ + pixel_x = -32 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/white/end{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/secondary/command) +"gFm" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/north{ + pixel_y = 1 + }, +/obj/item/kirbyplants/photosynthetic, +/turf/open/floor/circuit/red, +/area/station/ai_monitored/turret_protected/ai_upload) +"gFp" = ( +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 6 + }, +/obj/structure/rack, +/obj/item/wrench, +/obj/item/screwdriver, +/obj/machinery/button/door/directional/east{ + id = "commissarydoor"; + name = "Commissary Door Lock"; + normaldoorcontrol = 1; + pixel_y = -6; + specialfunctions = 4 + }, +/obj/machinery/button/door/directional/east{ + id = "commissaryshutters2"; + name = "Commissary Shutters Control"; + pixel_y = 6 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/large, +/area/station/commons/vacant_room/commissary) +"gFD" = ( +/obj/machinery/power/emitter, +/turf/open/floor/engine, +/area/station/engineering/main) +"gFF" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/structure/window/spawner/directional/west, +/obj/structure/window/spawner/directional/south, +/turf/open/floor/carpet, +/area/station/service/library) +"gFW" = ( +/obj/effect/turf_decal/trimline/dark/filled/line{ + dir = 1 + }, +/obj/machinery/airalarm/directional/north, +/obj/machinery/camera/directional/north{ + c_tag = "Security - Morgue" + }, +/obj/structure/table, +/obj/item/clothing/gloves/latex, +/turf/open/floor/iron/dark/textured_edge, +/area/station/security/office) +"gGg" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/security/courtroom) +"gGD" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/turf/open/floor/iron/textured_large, +/area/station/hallway/primary/aft) +"gGF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/nova_decals/enclave/top/left{ + color = "#52B4E9" + }, +/obj/effect/turf_decal/trimline/blue/corner, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/command) +"gGT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/crew_quarters/bar) +"gGW" = ( +/obj/structure/sign/poster/random/directional/east, +/obj/structure/trash_pile, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/fore) +"gHl" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_edge, +/area/station/hallway/secondary/command) +"gHy" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/greater) +"gHB" = ( +/obj/structure/table/wood/fancy/cyan, +/obj/item/reagent_containers/cup/glass/trophy{ + desc = "You did good in the worst way possible."; + name = "Redshield 1st prize"; + pixel_x = 10; + pixel_y = 11 + }, +/obj/item/reagent_containers/cup/glass/trophy/bronze_cup{ + name = "Foam force security team competition 3rd place"; + pixel_x = -9; + pixel_y = 11 + }, +/obj/item/reagent_containers/cup/glass/trophy/silver_cup{ + name = "Head of shitcurity competition 2nd place"; + pixel_y = 8 + }, +/obj/machinery/light/warm/directional/south, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/sign/calendar/directional/south, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/blueshield) +"gHG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron/textured_large, +/area/station/command/cc_dock) +"gHH" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/machinery/artifact_xray, +/turf/open/floor/engine, +/area/station/science/explab) +"gHL" = ( +/obj/structure/chair/stool/directional/north, +/obj/effect/landmark/start/roboticist, +/turf/open/floor/wood/large, +/area/station/science/research) +"gHM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/hidden, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical/central) +"gHS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/weather/snow, +/obj/machinery/light_switch/directional/west{ + pixel_x = -24 + }, +/obj/structure/cable, +/obj/structure/closet/secure_closet/freezer/kitchen, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/service/kitchen/coldroom) +"gHW" = ( +/obj/structure/table/optable{ + desc = "A cold, hard place for your final rest."; + name = "Morgue Slab" + }, +/obj/effect/turf_decal/box/blue, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"gHX" = ( +/obj/effect/turf_decal/vg_decals/department/sci, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/white/textured_large, +/area/station/hallway/primary/fore) +"gIa" = ( +/obj/machinery/vending/donksofttoyvendor, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/iron/large, +/area/station/commons/toilet) +"gIj" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/landmark/start/research_director, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/purple, +/turf/open/floor/iron/white/textured_large, +/area/station/command/heads_quarters/rd) +"gIo" = ( +/obj/item/binoculars, +/obj/structure/table/reinforced/plastitaniumglass, +/obj/effect/turf_decal/tile/dark_blue/half{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"gIr" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/machinery/computer/scan_consolenew{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/science/genetics) +"gIu" = ( +/obj/effect/turf_decal/box, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"gIB" = ( +/obj/structure/rack, +/obj/item/reagent_containers/cup/bucket{ + pixel_x = -4 + }, +/obj/item/reagent_containers/cup/bucket{ + pixel_x = 4 + }, +/obj/item/reagent_containers/cup/bucket, +/obj/item/wirecutters, +/obj/item/shovel/spade, +/obj/item/shovel/spade, +/obj/item/cultivator, +/obj/item/cultivator, +/obj/item/storage/bag/plants, +/obj/item/storage/bag/plants, +/obj/item/secateurs, +/obj/item/secateurs, +/obj/item/plant_analyzer, +/obj/item/plant_analyzer, +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/small, +/area/station/security/prison/garden) +"gIJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/engine, +/area/station/security/range) +"gIK" = ( +/obj/effect/landmark/start/security_officer, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/brig) +"gIT" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/barman_recipes, +/obj/machinery/pollution_scrubber{ + pixel_x = -15 + }, +/turf/open/floor/carpet/purple, +/area/station/common/night_club) +"gIW" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/table{ + name = "Jim Norton's Quebecois Coffee table" + }, +/obj/machinery/microwave{ + pixel_x = 1; + pixel_y = 6 + }, +/turf/open/floor/wood, +/area/station/hallway/secondary/entry) +"gJm" = ( +/obj/structure/table, +/obj/item/storage/medkit/fire{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/medkit/fire, +/obj/item/storage/medkit/regular{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/machinery/computer/security/telescreen/entertainment/directional/west, +/obj/machinery/door/window/right/directional/east{ + name = "Medkit Storage"; + req_access = list("medical") + }, +/obj/effect/turf_decal/trimline/yellow/filled, +/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner, +/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner{ + dir = 8 + }, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/storage) +"gJs" = ( +/obj/structure/chair/office, +/turf/open/floor/iron/textured_large, +/area/station/cargo/drone_bay) +"gJt" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/effect/artifact_spawner, +/turf/open/floor/engine, +/area/station/science/explab) +"gJw" = ( +/obj/structure/chair/stool/directional/west, +/turf/open/floor/wood/large, +/area/station/commons/fitness/recreation/entertainment) +"gJC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/robotics/lab) +"gJE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/exit/departure_lounge) +"gJH" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/large, +/area/station/commons/fitness/recreation) +"gJL" = ( +/obj/machinery/growing/soil, +/obj/item/seeds/carrot, +/turf/open/floor/grass, +/area/station/service/chapel) +"gJQ" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/atmos) +"gJS" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 1 + }, +/obj/effect/landmark/start/medical_doctor, +/obj/effect/turf_decal/trimline/blue/mid_joiner{ + dir = 1 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/storage) +"gJU" = ( +/obj/effect/turf_decal/bot, +/obj/effect/landmark/start/atmospheric_technician, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos/hfr_room) +"gKa" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/cafeteria, +/area/station/service/cafeteria) +"gKl" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/turf/open/floor/carpet/black, +/area/station/service/chapel/office) +"gKO" = ( +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/hallway/primary/aft) +"gKY" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/item/clothing/gloves/latex, +/obj/item/clothing/suit/apron/surgical, +/obj/item/clothing/mask/surgical, +/obj/effect/turf_decal/tile/dark_red/anticorner/contrasted, +/turf/open/floor/iron/dark/textured, +/area/station/science/robotics/lab) +"gKZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/kirbyplants/random, +/obj/machinery/status_display/evac/directional/south, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/secondary/entry) +"gLb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/tank_holder, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/lesser) +"gLi" = ( +/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Ordnance Lab Maintenance" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/science/ordnance_maint) +"gLx" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/iron/textured_corner{ + dir = 8 + }, +/area/station/engineering/atmos) +"gLJ" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"gLN" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/window/fulltile, +/turf/open/floor/grass, +/area/station/medical/medbay/lobby) +"gLO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/edge, +/area/station/commons/vacant_room) +"gLP" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/turf/open/floor/iron/textured_large, +/area/station/engineering/main) +"gLX" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/aisat_interior) +"gLY" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/cup/glass/bottle/wine{ + pixel_y = 8 + }, +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"gMl" = ( +/obj/effect/turf_decal/trimline/dark_red/filled/line, +/obj/item/radio/intercom/directional/south, +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/secondary/construction) +"gMx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate, +/obj/effect/spawner/random/maintenance/four, +/obj/effect/spawner/random/engineering/flashlight, +/obj/item/clothing/head/cone, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/medical/central) +"gMy" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/status_display/ai/directional/south, +/obj/machinery/duct, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/science/lab) +"gMA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/large, +/area/station/commons/dorms/laundry) +"gMB" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/machinery/computer/atmos_control/nocontrol/master, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/lobby) +"gME" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/airalarm/directional/north{ + pixel_y = 21 + }, +/obj/structure/rack, +/obj/item/stack/sheet/iron/fifty, +/obj/item/analyzer, +/obj/item/pipe_dispenser, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"gMQ" = ( +/obj/docking_port/stationary/random{ + name = "lavaland"; + shuttle_id = "pod_4_lavaland" + }, +/turf/open/space, +/area/space/nearstation) +"gMV" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/item/radio/intercom/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/edge, +/area/station/security/checkpoint/customs) +"gMY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/poster/official/nanotrasen_logo/directional/south, +/obj/machinery/camera/directional/south{ + c_tag = "Command Hallway - Aft Port"; + name = "hallway camera" + }, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/hallway/secondary/command) +"gNe" = ( +/turf/open/floor/iron/textured_large, +/area/station/hallway/secondary/entry) +"gNh" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/stone, +/area/station/service/barber) +"gNi" = ( +/obj/item/flashlight/lantern, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/pod/dark, +/area/station/service/chapel/funeral) +"gNo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/closed/wall/r_wall, +/area/station/engineering/supermatter) +"gNu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/upper) +"gNB" = ( +/obj/structure/sign/poster/random/directional/north, +/obj/effect/decal/cleanable/plastic, +/obj/effect/spawner/random/trash/hobo_squat, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine/atmos/lesser) +"gOd" = ( +/obj/machinery/requests_console/directional/north{ + department = "Captain's Desk"; + name = "Captain's Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/announcement, +/obj/effect/mapping_helpers/requests_console/information, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/structure/table/wood/fancy/royalblue, +/obj/effect/spawner/random/food_or_drink/three_course_meal, +/obj/item/kitchen/fork{ + pixel_x = -12; + pixel_y = 4 + }, +/obj/machinery/computer/security/telescreen/entertainment/directional/west, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain/private) +"gOf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/engine/atmos) +"gOn" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/station/hallway/secondary/entry) +"gOt" = ( +/obj/structure/table, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/iron/cafeteria, +/area/station/service/cafeteria) +"gPc" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark/small, +/area/station/security/prison/garden) +"gPd" = ( +/obj/structure/closet/firecloset, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/command/cc_dock) +"gPi" = ( +/obj/machinery/atmospherics/components/tank/air{ + dir = 8 + }, +/turf/open/floor/iron/textured, +/area/station/medical/virology) +"gPk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/security/prison) +"gPp" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "justicechamber"; + name = "Justice Chamber Blast Door" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/execution/education) +"gPv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/captain{ + id_tag = "Capoffice"; + name = "Captain's Office" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/all/command/captain, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/captain) +"gPC" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/table, +/obj/item/clothing/gloves/latex{ + pixel_y = 5 + }, +/obj/item/clothing/mask/gas{ + pixel_y = 5 + }, +/obj/item/clothing/glasses/science{ + pixel_y = 20 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/science/research) +"gPJ" = ( +/obj/structure/grille, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"gPQ" = ( +/obj/structure/table, +/obj/machinery/recharger, +/turf/open/floor/glass/reinforced, +/area/station/security/execution/transfer) +"gPS" = ( +/obj/structure/window/spawner/directional/south, +/obj/structure/table, +/obj/item/clothing/glasses/science{ + pixel_y = -3 + }, +/obj/effect/turf_decal/trimline/purple/filled/line, +/turf/open/floor/iron/white/side{ + dir = 1 + }, +/area/station/science/lab) +"gPZ" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L14" + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/large, +/area/station/hallway/primary/fore) +"gQg" = ( +/obj/machinery/power/solar{ + id = "aftport"; + name = "Aft-Port Solar Array" + }, +/obj/structure/cable, +/turf/open/floor/iron/solarpanel/airless, +/area/station/solars/starboard/aft) +"gQh" = ( +/turf/open/floor/iron/textured, +/area/station/maintenance/port/fore) +"gQi" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/greater) +"gQm" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/pharmacy) +"gQp" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "mining" + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/miningdock) +"gQq" = ( +/obj/machinery/power/turbine/core_rotor{ + mapping_id = "main_turbine" + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/maintenance/disposal/incinerator) +"gQv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 6 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/atmos) +"gQA" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/cargo/storage) +"gQD" = ( +/obj/structure/closet/emcloset/wall{ + pixel_y = 32 + }, +/obj/effect/turf_decal/trimline/white/end, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/white/mid_joiner, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/station/commons/dorms) +"gQK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Fore Primary Hallway" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/command) +"gQM" = ( +/obj/machinery/skill_station, +/obj/machinery/light/warm/directional/west, +/obj/machinery/camera/directional/west{ + c_tag = "Library - Game Room"; + name = "library camera" + }, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/grimy, +/area/station/service/library) +"gQO" = ( +/obj/structure/sink/directional/south, +/obj/structure/mirror/directional/north, +/turf/open/floor/iron/large, +/area/station/commons/dorms/laundry) +"gQP" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured_corner{ + dir = 4 + }, +/area/station/engineering/atmos) +"gQU" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/item/radio/intercom/directional/south{ + broadcasting = 1; + frequency = 1423; + listening = 0; + name = "Interrogation Intercom" + }, +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/security/interrogation) +"gRb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, +/area/station/service/bar) +"gRx" = ( +/obj/item/radio/intercom/directional/south, +/obj/structure/closet/secure_closet/hos, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/hos) +"gRC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/textured, +/area/station/maintenance/solars/port/aft) +"gRN" = ( +/turf/closed/wall/r_wall, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"gSd" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/green/filled/corner, +/turf/open/floor/iron/corner, +/area/station/hallway/primary/central) +"gSq" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "brigwindows"; + name = "Brig Front Blast Door" + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/brig) +"gSF" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/grass, +/area/station/service/hydroponics/upper) +"gSI" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/fore) +"gSK" = ( +/obj/effect/turf_decal/siding/dark_blue{ + dir = 4 + }, +/obj/structure/table/reinforced/rglass, +/obj/machinery/fax{ + fax_name = "Bridge"; + name = "Bridge Fax Machine"; + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/blue/half{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"gSO" = ( +/obj/machinery/camera/directional/east{ + c_tag = "Atmospherics - Ports"; + name = "atmospherics camera" + }, +/obj/item/radio/intercom/directional/east, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold/green/visible{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"gSS" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/station/solars/port/aft) +"gSW" = ( +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 5 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/textured, +/area/station/cargo/sorting) +"gSY" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine/atmos/lesser) +"gTb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/turf/open/floor/iron/white/diagonal, +/area/station/medical/medbay/central) +"gTg" = ( +/obj/machinery/digital_clock{ + pixel_y = 5 + }, +/turf/closed/wall/r_wall, +/area/station/command/heads_quarters/blueshield) +"gTk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/bar) +"gTJ" = ( +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Aft Primary Hallway Maintenance" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/hallway/primary/aft) +"gTL" = ( +/obj/item/radio/intercom/directional/east, +/obj/structure/cable, +/obj/structure/transit_tube/station/dispenser/reverse{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/transit_tube) +"gTW" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/port/aft) +"gTX" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"gUk" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/sign/departments/lawyer/directional/east, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"gUy" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/carpet/green, +/area/station/command/heads_quarters/nt_rep) +"gUA" = ( +/obj/machinery/power/shieldwallgen/xenobiologyaccess, +/obj/structure/window/reinforced/spawner/directional/west{ + layer = 2.9 + }, +/obj/structure/cable, +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"gUC" = ( +/obj/machinery/power/shuttle_engine/heater, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/obj/structure/window/reinforced/plasma/spawner/directional/west, +/turf/open/floor/iron/textured, +/area/station/commons/vacant_room/office) +"gUD" = ( +/obj/effect/turf_decal/stripes/full, +/obj/machinery/door/poddoor{ + id = "justiceblast"; + name = "Justice Blast Door" + }, +/turf/open/floor/engine, +/area/station/security/execution/education) +"gUU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/exit/departure_lounge) +"gUW" = ( +/obj/structure/table, +/obj/item/pai_card, +/turf/open/floor/wood/large, +/area/station/commons/fitness/recreation/entertainment) +"gVA" = ( +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/supermatter/room) +"gVD" = ( +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"gVG" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/station/engineering/atmos) +"gVR" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 10 + }, +/obj/machinery/airalarm/directional/south{ + pixel_x = -4 + }, +/obj/machinery/camera/directional/south{ + c_tag = "Security - Warden's Office" + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/machinery/button/door{ + desc = "Controls the blast doors in front of the prison wing."; + id = "brigprison"; + name = "Prison Wing Lockdown"; + pixel_x = -6; + pixel_y = -5; + req_access = list("brig") + }, +/obj/machinery/button/door{ + desc = "Controls the shutters over the cell windows."; + id = "brigwindows"; + name = "Cell Window Control"; + pixel_x = -6; + pixel_y = 7; + req_access = list("security"); + specialfunctions = 4 + }, +/obj/machinery/button/door{ + desc = "Controls the shutters over the brig windows."; + id = "briglockdown"; + name = "Brig Control Lockdown"; + pixel_x = 6; + pixel_y = 7; + req_access = list("security") + }, +/obj/item/binoculars{ + pixel_x = 11; + pixel_y = -4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/warden) +"gWa" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/structure/rack, +/obj/item/storage/box/disks{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/gloves{ + pixel_y = 1 + }, +/obj/item/storage/box/bodybags{ + pixel_x = -4; + pixel_y = -2 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/science/genetics) +"gWn" = ( +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hopqueue"; + name = "HoP Queue Shutters" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/blue/filled/arrow_cw{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/arrow_ccw{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/secondary/command) +"gWt" = ( +/obj/structure/bed/maint, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 10 + }, +/obj/item/bedsheet/grey, +/obj/machinery/flasher/directional/west{ + id = "brig1"; + pixel_x = -24; + pixel_y = -24 + }, +/obj/structure/sign/warning/electric_shock/directional/west, +/turf/open/floor/iron/dark/textured, +/area/station/security/brig) +"gWD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/machinery/duct, +/turf/open/floor/iron/freezer, +/area/station/medical/pharmacy) +"gWN" = ( +/obj/structure/chair/stool/directional/west, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/large, +/area/station/commons/fitness/recreation/entertainment) +"gWP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"gWV" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/atmos/hfr_room) +"gWZ" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/large, +/area/station/science/lab) +"gXa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/spider/stickyweb, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/electrical) +"gXc" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/textured_large, +/area/station/command/cc_dock) +"gXe" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plating, +/area/station/engineering/supermatter/room) +"gXp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/upper) +"gXB" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/machinery/airalarm/directional/north, +/obj/machinery/camera/directional/north{ + c_tag = "Cargo - Waiting Room"; + name = "cargo camera" + }, +/obj/machinery/piratepad/civilian, +/obj/effect/turf_decal/trimline/yellow, +/obj/effect/turf_decal/bot, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/textured_edge, +/area/station/cargo/lobby) +"gXD" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/power_room) +"gXL" = ( +/turf/open/floor/iron/textured_large, +/area/station/hallway/primary/aft) +"gXM" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Science - Experimentor"; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/station/science/explab) +"gXR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine) +"gXY" = ( +/obj/structure/bookcase/random/fiction, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/library) +"gYp" = ( +/obj/effect/turf_decal/weather/sand, +/obj/structure/flora/bush/sparsegrass{ + pixel_x = -6 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 5 + }, +/obj/structure/flora/bush/jungle/b, +/turf/open/floor/grass, +/area/station/hallway/primary/central/fore) +"gYq" = ( +/obj/structure/table, +/obj/item/reagent_containers/condiment/saltshaker{ + pixel_x = -3; + pixel_y = 9 + }, +/obj/item/reagent_containers/condiment/peppermill{ + dir = 1; + pixel_x = 3; + pixel_y = 9 + }, +/obj/item/storage/bag/tray, +/obj/item/kitchen/rollingpin, +/obj/item/clothing/suit/apron/chef, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/turf/open/floor/iron/kitchen, +/area/station/security/prison/mess) +"gYG" = ( +/obj/structure/table/reinforced/rglass, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 4 + }, +/obj/effect/turf_decal/tile/yellow/anticorner, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"gYI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Owl Office" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/engine/atmos) +"gYJ" = ( +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/maintenance{ + name = "Abandoned Room" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/crew_quarters/bar) +"gYN" = ( +/obj/effect/turf_decal/trimline/green/filled/corner, +/turf/open/floor/iron/corner, +/area/station/hallway/primary/fore) +"gYP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/greater) +"gZb" = ( +/obj/structure/lattice/catwalk, +/obj/structure/closet/crate, +/turf/open/space/basic, +/area/space/nearstation) +"gZi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock{ + id_tag = "Toilet3"; + name = "Toilet Unit 3" + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet) +"gZp" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/lesser) +"gZD" = ( +/obj/machinery/oven/range, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"gZV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/turf/open/floor/iron/diagonal, +/area/station/hallway/secondary/service) +"gZX" = ( +/obj/structure/trash_pile, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/lesser) +"hae" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/hallway/secondary/command) +"hag" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/west, +/obj/machinery/power/shuttle_engine/heater{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/window/reinforced/plasma/spawner/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/department/science/xenobiology) +"han" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/air_sensor/engine_chamber, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"haq" = ( +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/lobby) +"has" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron/textured_edge, +/area/station/construction/mining/aux_base) +"hau" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/oxygen_input{ + dir = 4 + }, +/turf/open/floor/engine/o2, +/area/station/engineering/atmos) +"haE" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hop"; + name = "Privacy Shutters" + }, +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/command/heads_quarters/hop) +"haU" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"hbb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/wood, +/obj/item/clothing/suit/toggle/owlwings, +/obj/item/clothing/under/costume/owl, +/obj/item/clothing/mask/gas/owl_mask, +/obj/machinery/newscaster/directional/north, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/station/maintenance/department/engine/atmos) +"hbf" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/effect/turf_decal/tile/red/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/commons/lounge) +"hbh" = ( +/obj/structure/closet/secure_closet/freezer/cream_pie, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/central) +"hbp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/greater) +"hbE" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/box/white{ + color = "#52B4E9" + }, +/obj/machinery/light/cold/directional/south, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/anesthetic_mix, +/turf/open/floor/iron/showroomfloor, +/area/station/medical/coldroom) +"hbJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) +"hbO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/commons/storage/primary) +"hbU" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical/morgue) +"hbX" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"hbY" = ( +/obj/effect/turf_decal/trimline/green/warning{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/small, +/area/station/commons/dorms) +"hbZ" = ( +/obj/machinery/corral_corner{ + mapping_id = "1" + }, +/obj/machinery/slime_pen_controller{ + mapping_id = "1" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/light/neon_lining{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"hca" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/hallway/secondary/command) +"hcg" = ( +/obj/structure/table/wood/fancy/black, +/obj/effect/turf_decal/siding/wood, +/obj/item/stack/package_wrap{ + pixel_x = -3; + pixel_y = 8 + }, +/obj/item/hand_labeler{ + pixel_y = 3 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/qm) +"hch" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/power_room) +"hcq" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/iron/white/textured_corner{ + dir = 1 + }, +/area/station/hallway/primary/fore) +"hcw" = ( +/obj/machinery/digital_clock{ + pixel_y = 5 + }, +/turf/closed/wall, +/area/station/engineering/main) +"hcD" = ( +/obj/effect/turf_decal/bot, +/obj/structure/sign/warning/electric_shock/directional/east, +/obj/effect/turf_decal/trimline/blue/filled/arrow_cw{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/arrow_ccw{ + dir = 4 + }, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/secondary/command) +"hcH" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + dir = 4; + location = "Atmospherics" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/poddoor/preopen{ + id = "atmoslock"; + name = "Atmospherics Lockdown Blast Door" + }, +/obj/machinery/door/window/left/directional/east{ + name = "Atmospherics Deliveries"; + req_access = list("atmospherics") + }, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/plasticflaps{ + name = "Atmospherics Deliveries" + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos/storage/gas) +"hcK" = ( +/obj/structure/table/wood/poker, +/turf/open/floor/iron/grimy, +/area/station/commons/lounge) +"hcL" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/iron/textured_edge, +/area/station/hallway/primary/aft) +"hcS" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/iron/textured_large, +/area/station/cargo/storage) +"hcU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/engineering{ + name = "Telecomms Storage" + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/engineering/tcoms, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/storage/tcomms) +"hdb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/crew_quarters/bar) +"hdd" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/glass/reinforced, +/area/station/security/office) +"hdk" = ( +/obj/machinery/atmospherics/components/trinary/mixer/airmix, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"hdn" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/chair, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_edge, +/area/station/medical/medbay/central) +"hdp" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/cardboard, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/upper) +"hds" = ( +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/iron/grimy, +/area/station/commons/lounge) +"hdF" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/space, +/area/station/solars/port/fore) +"hdJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/textured_large, +/area/station/hallway/primary/aft) +"hdK" = ( +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/old/glass{ + name = "Prison Wing" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/prison) +"hdS" = ( +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/box/red, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"hdZ" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/obj/machinery/requests_console/auto_name/directional/east, +/turf/open/floor/iron/textured, +/area/station/construction/mining/aux_base) +"hef" = ( +/obj/machinery/computer/teleporter{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/aisat/service) +"heq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/iron/dark/textured, +/area/station/science/robotics/lab) +"heH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/hallway/primary/central/aft) +"heM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/department/security/brig) +"hfk" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/fore) +"hfp" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/east, +/obj/structure/sink/directional/west, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/science/lab) +"hfq" = ( +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/grass/jungle/a/style_random, +/obj/structure/window/fulltile, +/turf/open/misc/asteroid, +/area/station/hallway/primary/aft) +"hfv" = ( +/obj/machinery/computer/security/hos, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"hfE" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/department/crew_quarters/bar) +"hfI" = ( +/obj/item/radio/intercom/directional/west, +/obj/machinery/computer/crew{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"hfT" = ( +/obj/structure/trash_pile, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/bar) +"hfU" = ( +/turf/closed/wall, +/area/station/service/kitchen/coldroom) +"hgk" = ( +/obj/machinery/door/airlock/grunge{ + name = "Chapel Garden" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/service/chapel_office, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/pod/dark, +/area/station/service/chapel/funeral) +"hgo" = ( +/obj/machinery/door/airlock/grunge{ + name = "Morgue" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/office) +"hgs" = ( +/obj/machinery/vending/tool, +/obj/machinery/status_display/ai/directional/south, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/storage_shared) +"hgW" = ( +/obj/structure/trash_pile, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/aft) +"hgZ" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 6 + }, +/obj/structure/closet/secure_closet/brig{ + id = "Cell 1"; + name = "Cell 1 Locker" + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/brig) +"hhh" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/table, +/obj/item/camera{ + pixel_y = 4 + }, +/turf/open/floor/wood/large, +/area/station/commons/fitness/recreation/entertainment) +"hhj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/spider/stickyweb, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/electrical) +"hhs" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"hhw" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/hallway/secondary/command) +"hhy" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"hhz" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/item/food/baguette, +/obj/item/toy/crayon/spraycan/mimecan, +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/checker, +/area/station/service/theater) +"hhB" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/hallway/primary/aft) +"hhJ" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/botanist, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/service/hydroponics) +"hhO" = ( +/obj/effect/turf_decal/trimline/dark_green/filled/line{ + dir = 10 + }, +/obj/machinery/disease2/diseaseanalyser, +/turf/open/floor/iron/white, +/area/station/medical/virology) +"hhP" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/edge, +/area/station/commons/fitness/recreation/entertainment) +"hhQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/aft) +"hhT" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/edge, +/area/station/commons/vacant_room) +"hih" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/iron/textured_large, +/area/station/cargo/storage) +"hio" = ( +/obj/effect/turf_decal/trimline/green/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/green{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/service/hydroponics) +"hix" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/atmos) +"hiA" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Customs Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/crew_quarters/bar) +"hiN" = ( +/obj/machinery/airalarm/directional/east, +/obj/machinery/suit_storage_unit/hos, +/obj/machinery/status_display/ai/directional/south, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/hos) +"hiQ" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/main) +"hiR" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/obj/structure/disposalpipe/segment, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/cargo/storage) +"hjb" = ( +/obj/structure/window/spawner/directional/south, +/obj/structure/window/spawner/directional/east, +/turf/open/misc/beach/sand, +/area/station/science/research) +"hji" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/security/brig) +"hjo" = ( +/obj/effect/mapping_helpers/airlock/access/all/engineering/tcoms, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/engineering/glass/critical{ + heat_proof = 1; + name = "Server Room" + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/tcommsat/computer) +"hjy" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/effect/turf_decal/tile/red/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/iron, +/area/station/commons/lounge) +"hjT" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/medical/medbay/lobby) +"hjU" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/medical/medbay/central) +"hjW" = ( +/turf/closed/wall, +/area/station/security/detectives_office) +"hke" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "AI Upload Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/landmark/navigate_destination/aiupload, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/ai_upload) +"hkh" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/engineering/supermatter/room) +"hkv" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 6 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/hallway/primary/aft) +"hkM" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical) +"hkN" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/structure/table, +/obj/item/storage/medkit/regular, +/obj/item/storage/backpack/satchel/explorer, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/cargo/miningdock) +"hkU" = ( +/obj/structure/table, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "kitchen_counter"; + name = "Kitchen Counter Shutters" + }, +/obj/item/plate, +/obj/item/holosign_creator/robot_seat/restaurant, +/turf/open/floor/iron/large, +/area/station/service/kitchen) +"hkX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/corner, +/obj/effect/turf_decal/siding/green{ + dir = 8 + }, +/turf/open/floor/iron/large, +/area/station/service/hydroponics) +"hlj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/security/greater) +"hlx" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white/textured_edge, +/area/station/science/genetics) +"hlD" = ( +/obj/machinery/vending/wardrobe/jani_wardrobe, +/obj/effect/turf_decal/tile/dark/fourcorners, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 5 + }, +/obj/machinery/newscaster/directional/north, +/obj/machinery/button/door/directional/east{ + id = "custodialshutters"; + name = "Custodial Closet Shutters"; + req_access = list("janitor") + }, +/obj/item/toy/figure/janitor{ + pixel_y = 18 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/directional/east, +/turf/open/floor/noslip, +/area/station/service/janitor) +"hlF" = ( +/obj/structure/cable, +/obj/structure/closet/secure_closet/brig, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/dark_red/diagonal_centre, +/obj/effect/turf_decal/tile/neutral/diagonal_centre, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/execution/transfer) +"hlZ" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/commons/fitness/recreation) +"hml" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/fore) +"hmN" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/security/brig) +"hmV" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4; + name = "O2 to Airmix" + }, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"hmY" = ( +/obj/effect/spawner/random/trash/hobo_squat, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/lesser) +"hne" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured_large, +/area/station/cargo/sorting) +"hnh" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/window/fulltile, +/turf/open/floor/grass, +/area/station/service/bar) +"hnk" = ( +/obj/effect/turf_decal/arrows/white{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos/hfr_room) +"hnn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/trash_pile, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"hns" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research/glass{ + name = "Pharmacy" + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/obj/effect/mapping_helpers/airlock/access/any/medical/pharmacy, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/pharmacy) +"hnt" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/station/security/prison/garden) +"hnJ" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/vending/wardrobe/hydro_wardrobe, +/obj/item/toy/figure/botanist{ + pixel_y = 18 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/hydroponics) +"hnU" = ( +/obj/effect/turf_decal/tile/dark/fourcorners, +/obj/structure/fluff/metalpole/anchor{ + dir = 8 + }, +/obj/structure/fluff/metalpole/anchor{ + dir = 4 + }, +/obj/vehicle/ridden/janicart, +/obj/item/key/janitor, +/turf/open/floor/noslip, +/area/station/service/janitor) +"hok" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access = list("command") + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "bridge-left" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "Bridge Blast Door" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"hoC" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external/glass{ + name = "Supply Door Airlock" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/turf/open/floor/catwalk_floor, +/area/station/cargo/storage) +"hoD" = ( +/obj/structure/table, +/obj/item/hand_labeler, +/obj/item/storage/box/shipping, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 5 + }, +/obj/item/radio/intercom/directional/east, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/iron, +/area/station/commons/storage/art) +"hpe" = ( +/turf/open/floor/iron/textured_large, +/area/station/security/checkpoint/engineering) +"hpp" = ( +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/crew_quarters/bar) +"hpq" = ( +/obj/effect/spawner/random/maintenance/two, +/obj/item/stack/sheet/iron/five, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"hpE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/engine_equipment, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Engineering Maintenance" + }, +/obj/machinery/door/poddoor/preopen{ + id = "engielock"; + name = "Engineering Lockdown Blast Door" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/aft) +"hqd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"hqf" = ( +/obj/machinery/digital_clock, +/turf/closed/wall/r_wall, +/area/station/security/warden) +"hqm" = ( +/obj/machinery/meter/monitored/distro_loop, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/visible, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/atmos/pumproom) +"hqu" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"hqJ" = ( +/obj/machinery/power/shuttle_engine/heater, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/turf/open/floor/iron/textured, +/area/station/common/night_club) +"hqK" = ( +/obj/effect/turf_decal/trimline/dark_red/arrow_cw{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"hqW" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"hqX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/command) +"hrf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/fore) +"hrq" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"hrQ" = ( +/obj/effect/turf_decal/trimline/dark_red/warning, +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central) +"hrR" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/fore) +"hrT" = ( +/obj/structure/noticeboard/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/port_gen/pacman, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/fore) +"hrU" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/incinerator_input{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/maintenance/disposal/incinerator) +"hrZ" = ( +/obj/structure/table, +/obj/effect/spawner/random/trash/botanical_waste, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/botanical_waste{ + pixel_x = -5; + pixel_y = 18 + }, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"hsp" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/crew_quarters/bar) +"hsq" = ( +/obj/structure/table, +/obj/item/training_toolbox{ + pixel_y = 10 + }, +/obj/item/training_toolbox{ + pixel_y = 1 + }, +/turf/open/floor/iron/large, +/area/station/commons/fitness/recreation/entertainment) +"hsr" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/landmark/start/psychologist, +/turf/open/floor/iron/dark/textured, +/area/station/medical/break_room) +"hsu" = ( +/obj/machinery/airalarm/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron/dark/textured, +/area/station/security/range) +"hsN" = ( +/obj/machinery/computer/teleporter{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/circuit, +/area/station/command/teleporter) +"htb" = ( +/obj/machinery/status_display/evac/directional/south, +/obj/structure/rack, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/box/white{ + color = "#52B4E9" + }, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/medical/medbay/lobby) +"hti" = ( +/obj/machinery/disposal/delivery_chute, +/obj/structure/sign/directions/security{ + pixel_y = 24 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/textured_large, +/area/station/cargo/sorting) +"htq" = ( +/obj/structure/table/wood, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = -7; + pixel_y = 3 + }, +/obj/item/flashlight/lamp/green{ + pixel_x = 6; + pixel_y = 3 + }, +/turf/open/floor/carpet/executive, +/area/station/command/heads_quarters/hop) +"htw" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 5 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"htz" = ( +/obj/structure/chair/stool/directional/south, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/storage) +"htB" = ( +/obj/structure/sign/warning/no_smoking, +/turf/closed/wall, +/area/station/engineering/atmos) +"htJ" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Arrivals" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/large, +/area/station/commons/dorms) +"htK" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/supermatter/room) +"htS" = ( +/obj/structure/closet/crate/bin, +/obj/effect/spawner/random/contraband/prison, +/obj/effect/turf_decal/bot, +/turf/open/floor/wood, +/area/station/security/prison/garden) +"htX" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/corner{ + dir = 1 + }, +/area/station/hallway/primary/fore) +"huc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_edge, +/area/station/hallway/primary/aft) +"huh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/transit_tube/station/dispenser/reverse/flipped{ + dir = 8 + }, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"hut" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"huv" = ( +/obj/machinery/airalarm/directional/west, +/obj/structure/filingcabinet/chestdrawer, +/obj/item/clothing/head/helmet/chaplain/cage{ + name = "Poly's cage"; + pixel_x = -1; + pixel_y = 13 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/carpet/orange, +/area/station/command/heads_quarters/ce) +"hux" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Auxiliary Construction Zone" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/aux_base, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/textured_large, +/area/station/construction/mining/aux_base) +"huN" = ( +/obj/machinery/electrolyzer, +/obj/effect/turf_decal/box, +/obj/machinery/status_display/ai/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/disposal/incinerator) +"huP" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/shutters/window{ + id = "gateshutter"; + name = "Gateway Access Shutter" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/gateway) +"huS" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner, +/turf/open/floor/iron/white/textured_corner, +/area/station/science/xenobiology) +"hvf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/machinery/meter, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/supermatter/room) +"hvo" = ( +/obj/structure/table/reinforced, +/obj/item/aicard{ + pixel_y = 3 + }, +/obj/item/circuitboard/aicore{ + pixel_y = 3 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/firealarm/directional/east{ + pixel_y = 5 + }, +/obj/machinery/keycard_auth/directional/east{ + pixel_y = -7 + }, +/obj/machinery/camera/directional/east{ + c_tag = "Science - Research Director's Office"; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/effect/turf_decal/siding/purple, +/turf/open/floor/iron/white/textured_large, +/area/station/command/heads_quarters/rd) +"hvC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/commons/storage/primary) +"hvD" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured_edge, +/area/station/hallway/primary/fore) +"hvK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/neutral/filled/line, +/obj/effect/turf_decal/trimline/neutral/filled/line, +/obj/effect/turf_decal/trimline/neutral/filled/line, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/hallway/secondary/command) +"hvV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"hvZ" = ( +/obj/effect/turf_decal/siding/thinplating_new/terracotta, +/obj/structure/reagent_dispensers/watertank, +/obj/effect/spawner/random/trash/grime, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"hwm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + name = "Cooling Loop Bypass" + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"hwA" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/structure/sign/departments/science/directional/north, +/turf/open/floor/iron/white/textured_edge, +/area/station/hallway/primary/fore) +"hwE" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/edge, +/area/station/service/hydroponics) +"hwG" = ( +/obj/structure/bed/double, +/obj/item/bedsheet/cmo/double, +/obj/item/storage/secure/safe/directional/north, +/turf/open/floor/carpet/blue, +/area/station/command/heads_quarters/cmo) +"hwL" = ( +/obj/structure/table, +/obj/item/storage/toolbox/emergency{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/toolbox/emergency, +/obj/item/shovel, +/obj/item/shovel, +/obj/item/pickaxe, +/obj/item/pickaxe, +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/machinery/airalarm/directional/south, +/obj/item/clipboard{ + pixel_x = -15 + }, +/obj/item/toy/figure/miner{ + pixel_x = -15 + }, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/cargo/miningdock) +"hwR" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/exodrone_launcher, +/obj/machinery/door/window/right/directional/south{ + name = "Drone Launchsite" + }, +/turf/open/floor/engine, +/area/station/cargo/drone_bay) +"hwW" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"hxg" = ( +/obj/structure/table, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/item/stock_parts/matter_bin{ + pixel_x = -10; + pixel_y = 4 + }, +/obj/item/stock_parts/matter_bin{ + pixel_x = 2; + pixel_y = 7 + }, +/obj/item/stock_parts/micro_laser{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/iron/white/textured_edge, +/area/station/science/lab) +"hxh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/navigate_destination/med, +/obj/machinery/door/airlock/public/glass{ + name = "Aft Central Primary Hallway" + }, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/lobby) +"hxv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/freezer, +/area/station/medical/treatment_center) +"hxy" = ( +/turf/closed/wall/r_wall, +/area/station/engineering/main) +"hxC" = ( +/obj/machinery/door/airlock/mining{ + name = "Drone Bay" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/drone_bay) +"hxF" = ( +/obj/structure/table/wood, +/obj/machinery/airalarm/directional/east, +/obj/item/folder{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/pen/blue{ + pixel_x = 7; + pixel_y = 8 + }, +/obj/item/pen/red{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/machinery/door/window/right/directional/south{ + name = "Library Desk"; + req_access = list("library") + }, +/obj/item/pai_card{ + pixel_x = -13; + pixel_y = 2 + }, +/turf/open/floor/carpet, +/area/station/service/library) +"hxP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/solars/starboard/fore) +"hxT" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/department/medical/central) +"hxU" = ( +/obj/machinery/door/airlock/security{ + name = "Evidence Storage" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/office) +"hyf" = ( +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/turf/open/floor/iron/diagonal, +/area/station/hallway/secondary/exit/departure_lounge) +"hyg" = ( +/obj/structure/closet/secure_closet/captains, +/obj/item/clothing/suit/armor/riot/knight/blue, +/obj/item/clothing/head/helmet/knight/blue, +/obj/machinery/light_switch/directional/south, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/captain/private) +"hyo" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/iron/textured_edge, +/area/station/hallway/primary/aft) +"hyt" = ( +/obj/structure/chair/comfy/brown{ + color = "#EFB341"; + dir = 8 + }, +/turf/open/floor/carpet/blue, +/area/station/command/bridge) +"hyw" = ( +/obj/structure/chair/stool/directional/west{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/effect/turf_decal/tile/red/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/commons/lounge) +"hyx" = ( +/obj/machinery/dna_scannernew, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/white/textured_large, +/area/station/science/genetics) +"hyK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/turf/open/floor/iron/white/textured_large, +/area/station/science/xenobiology) +"hyV" = ( +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/greater) +"hzk" = ( +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos/hfr_room) +"hzm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_red/arrow_ccw{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"hzu" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_edge, +/area/station/construction/mining/aux_base) +"hzx" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/fore) +"hzB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/station/engineering/supermatter) +"hzD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/textured_large, +/area/station/hallway/secondary/construction) +"hzL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/primary/fore) +"hzM" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/textured_corner{ + dir = 1 + }, +/area/station/engineering/atmos) +"hzR" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/aisat/service) +"hzT" = ( +/obj/effect/turf_decal/trimline/green/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/mid_joiner{ + dir = 1 + }, +/turf/open/floor/iron/large, +/area/station/service/hydroponics) +"hAf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/meter, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"hAi" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/window/spawner/directional/east, +/obj/machinery/door/window/right/directional/south{ + name = "Bar Deliveries"; + req_access = list("bar") + }, +/turf/open/floor/iron/large, +/area/station/service/bar) +"hAj" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/chair/stool/directional/south{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/lobby) +"hAk" = ( +/obj/structure/sign/warning/radiation/rad_area, +/turf/closed/wall/r_wall, +/area/station/maintenance/department/engine) +"hAm" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 10 + }, +/obj/machinery/disposal/bin, +/obj/machinery/airalarm/directional/west, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation/entertainment) +"hAn" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"hAp" = ( +/obj/structure/trash_pile, +/turf/open/floor/plating, +/area/station/maintenance/department/medical/central) +"hAu" = ( +/obj/structure/table/glass, +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/tile/blue/full, +/obj/item/clothing/gloves/latex, +/obj/item/clothing/suit/apron/surgical, +/obj/item/reagent_containers/spray/cleaner, +/turf/open/floor/iron/freezer, +/area/station/medical/surgery) +"hAA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/science/ordnance_maint) +"hAI" = ( +/obj/structure/table/glass, +/obj/item/clothing/gloves/latex, +/obj/item/healthanalyzer, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 5; + pixel_y = -1 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/structure/sign/poster/official/space_cops/directional/west, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/security/medical) +"hAR" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"hAU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen/small, +/area/station/service/kitchen/abandoned) +"hBa" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 6 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos/hfr_room) +"hBc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/station/science/auxlab/firing_range) +"hBl" = ( +/obj/structure/table/reinforced, +/obj/item/flashlight/lamp{ + pixel_x = 2; + pixel_y = 12 + }, +/obj/item/crowbar, +/turf/open/floor/carpet/orange, +/area/station/command/heads_quarters/ce) +"hBo" = ( +/obj/machinery/light_switch/directional/west, +/obj/machinery/camera/directional/west{ + c_tag = "Atmospherics - Fore Port"; + name = "atmospherics camera"; + network = list("ss13","engine") + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/maintenance/disposal/incinerator) +"hBp" = ( +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/prison) +"hBt" = ( +/obj/machinery/door/airlock{ + id_tag = "UnitS"; + name = "Unit S" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet) +"hBA" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"hBB" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/photocopier, +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_large, +/area/station/command/heads_quarters/hos) +"hBC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine/atmos/lesser) +"hBH" = ( +/obj/machinery/status_display/ai/directional/east, +/obj/structure/dresser, +/obj/item/toy/figure/ian{ + pixel_x = -7; + pixel_y = 13 + }, +/obj/item/toy/figure/hop{ + pixel_y = 13 + }, +/turf/open/floor/carpet/executive, +/area/station/command/heads_quarters/hop) +"hBQ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/space, +/area/station/solars/port/aft) +"hBV" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/trimline/dark_green/filled/line{ + dir = 10 + }, +/obj/item/clothing/gloves/latex, +/obj/item/clothing/neck/stethoscope, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/white, +/area/station/medical/virology) +"hBZ" = ( +/obj/machinery/pdapainter/research, +/obj/machinery/computer/security/telescreen/rd{ + pixel_y = 30 + }, +/obj/machinery/airalarm/directional/west, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white/textured_large, +/area/station/command/heads_quarters/rd) +"hCh" = ( +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 5 + }, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) +"hCp" = ( +/obj/machinery/suit_storage_unit/atmos, +/obj/effect/turf_decal/delivery, +/obj/machinery/camera/directional/north{ + c_tag = "Atmospherics - Storage Room"; + name = "atmospherics camera"; + network = list("ss13","engine") + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/atmos/storage) +"hCr" = ( +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge, +/area/station/science/ordnance/testlab) +"hCA" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/carpet, +/area/station/service/library/abandoned) +"hCH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"hCJ" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/service/general, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/service/glass{ + name = "Service Hall" + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/large, +/area/station/service/cafeteria) +"hCL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/closed/wall/r_wall, +/area/station/maintenance/port) +"hCS" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured_corner, +/area/station/maintenance/disposal/incinerator) +"hCV" = ( +/obj/machinery/disposal/delivery_chute, +/obj/structure/sign/directions/medical{ + pixel_y = 24 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/window/spawner/directional/east{ + pixel_x = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/textured_large, +/area/station/cargo/sorting) +"hDc" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/command/minisat, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Teleporter" + }, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/aisat/service) +"hDf" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/textured_edge, +/area/station/hallway/primary/aft) +"hDg" = ( +/obj/effect/turf_decal/caution{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 5 + }, +/obj/machinery/power/terminal, +/turf/open/floor/iron/textured, +/area/station/maintenance/disposal/incinerator) +"hDC" = ( +/obj/machinery/newscaster/directional/north, +/obj/structure/dresser, +/obj/item/storage/pill_bottle/psicodine{ + pixel_x = -5; + pixel_y = 15 + }, +/obj/item/toy/figure/rd{ + pixel_x = 7; + pixel_y = 14 + }, +/turf/open/floor/carpet/purple, +/area/station/command/heads_quarters/rd) +"hDF" = ( +/obj/effect/turf_decal/tile/neutral/diagonal_centre, +/turf/open/floor/iron/diagonal, +/area/station/commons/dorms) +"hDI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/medical/minor_healing, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"hDY" = ( +/obj/machinery/computer/atmos_control/mix_tank{ + dir = 4 + }, +/obj/structure/window/reinforced/plasma/spawner/directional/west, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/green/full, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"hEf" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/obj/machinery/camera/directional/south{ + c_tag = "Medbay - Satellite Access"; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/white/diagonal, +/area/station/medical/medbay/central) +"hEh" = ( +/obj/structure/hoop{ + density = 0; + pixel_y = 18 + }, +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + dir = 1; + name = "blue line" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/prison) +"hEo" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/hydroponics/glass{ + name = "Garden" + }, +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"hEu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/hallway/secondary/command) +"hEA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/command) +"hEE" = ( +/obj/structure/chair/sofa/left/brown{ + desc = "Made of very expensive furs, probably from an endangered animal."; + dir = 8; + name = "Luxurious sofa" + }, +/turf/open/floor/iron/grimy, +/area/station/commons/lounge) +"hEF" = ( +/turf/open/floor/iron/textured_large, +/area/station/engineering/power_room) +"hEG" = ( +/obj/structure/transit_tube/horizontal{ + dir = 1 + }, +/turf/open/floor/iron/airless{ + icon_state = "dark_large" + }, +/area/space/nearstation) +"hEJ" = ( +/obj/structure/table, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/secondary/command) +"hEL" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 10 + }, +/obj/structure/closet/firecloset/wall{ + pixel_x = -32 + }, +/obj/effect/turf_decal/trimline/white/end{ + dir = 4 + }, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron/dark/textured, +/area/station/security/brig) +"hEM" = ( +/obj/machinery/newscaster/directional/north, +/turf/closed/wall/r_wall, +/area/station/maintenance/starboard/aft) +"hER" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/hallway/secondary/command) +"hES" = ( +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"hEZ" = ( +/obj/effect/spawner/random/trash/mess, +/obj/structure/sign/poster/random/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"hFa" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/structure/chair, +/turf/open/floor/iron/textured_edge, +/area/station/security/checkpoint/engineering) +"hFi" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/corner{ + dir = 1 + }, +/area/station/hallway/primary/fore) +"hFt" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/glass/reinforced, +/area/station/hallway/secondary/exit/departure_lounge) +"hFA" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 10 + }, +/obj/machinery/meter, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"hFM" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/stairs/left, +/area/station/command/cc_dock) +"hFS" = ( +/obj/structure/disposaloutlet{ + dir = 1; + name = "Cargo Deliveries" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/sign/poster/official/random/directional/east, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/brig) +"hGa" = ( +/obj/effect/spawner/random/structure/steam_vent, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/aft) +"hGq" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/glass/reinforced, +/area/station/security/office) +"hGr" = ( +/obj/structure/grille, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/greater) +"hGw" = ( +/obj/structure/cable, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured_large, +/area/station/engineering/main) +"hGE" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/effect/landmark/start/chemist, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/pharmacy) +"hGP" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "garbage" + }, +/obj/structure/window/spawner/directional/south, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/disposal) +"hGX" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/window/left/directional/south{ + name = "Hydroponics Desk"; + req_access = list("hydroponics") + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 1; + id = "hydroponics_counter"; + name = "Hydroponics Counter Shutters" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/plantgenes{ + pixel_y = 4 + }, +/turf/open/floor/iron/large, +/area/station/service/hydroponics) +"hHg" = ( +/obj/structure/table, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/item/clothing/mask/gas{ + pixel_y = 3 + }, +/obj/item/clothing/mask/gas{ + pixel_y = 3 + }, +/obj/machinery/airalarm/directional/west, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/atmos/storage/gas) +"hHn" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/gateway) +"hHK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/hallway/primary/aft) +"hHT" = ( +/obj/effect/turf_decal/tile/red/anticorner{ + dir = 1 + }, +/obj/item/radio/intercom/directional/south, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/pod/dark, +/area/station/service/chapel/office) +"hIe" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/engine/atmos/lesser) +"hIh" = ( +/turf/closed/wall, +/area/station/medical/break_room) +"hIm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port) +"hIp" = ( +/obj/structure/safe, +/obj/item/storage/briefcase/secure/riches, +/obj/item/storage/backpack/duffelbag/syndie/hitman, +/obj/item/card/id/advanced/silver/reaper, +/obj/item/lazarus_injector, +/obj/item/gun/energy/disabler, +/obj/item/gun/ballistic/revolver/russian, +/obj/item/ammo_box/a357, +/obj/item/clothing/neck/stethoscope, +/obj/item/book{ + desc = "An undeniably handy book."; + icon_state = "bookknock"; + name = "\improper A Simpleton's Guide to Safe-cracking with Stethoscopes" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/station/ai_monitored/command/nuke_storage) +"hIu" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/iron/textured, +/area/station/science/ordnance/storage) +"hIw" = ( +/obj/machinery/firealarm/directional/east, +/obj/machinery/vending/dinnerware, +/obj/item/toy/figure/chef{ + pixel_y = 16 + }, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"hIA" = ( +/turf/closed/wall/r_wall, +/area/station/command/heads_quarters/captain) +"hII" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"hJx" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/ordnance_burn_chamber_input{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 10 + }, +/turf/open/floor/engine/vacuum, +/area/station/science/ordnance/burnchamber) +"hJR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/medical/break_room) +"hJY" = ( +/obj/structure/closet/secure_closet/hydroponics, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/station/service/hydroponics) +"hKe" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/plasma, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/engine, +/area/station/engineering/main) +"hKm" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/obj/item/stock_parts/cell/high, +/obj/item/integrated_circuit/chemical, +/obj/item/multitool, +/obj/structure/chemical_manufacturer, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"hKp" = ( +/obj/machinery/atmospherics/components/trinary/filter, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/maintenance/disposal/incinerator) +"hKr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/lobby) +"hKy" = ( +/obj/structure/grille, +/turf/open/space/basic, +/area/space/nearstation) +"hKF" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/iron/stairs/left{ + dir = 8 + }, +/area/station/engineering/atmos) +"hKP" = ( +/obj/item/reagent_containers/cup/bucket, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/station/security/execution/transfer) +"hLh" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/turf/open/floor/plating/airless, +/area/station/engineering/supermatter/room) +"hLk" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/open/floor/engine, +/area/station/engineering/atmos/storage/gas) +"hLm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/item/screwdriver, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/station/commons/vacant_room/office) +"hLD" = ( +/obj/machinery/door/airlock/captain{ + name = "Captain's Quarters" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/command/captain, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain/private) +"hLI" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/iron/textured_corner{ + dir = 1 + }, +/area/station/engineering/atmos) +"hMl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 10 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"hMy" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/parquet, +/area/station/common/night_club) +"hMD" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 5 + }, +/obj/machinery/status_display/evac/directional/north, +/obj/structure/table, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/machinery/recharger{ + pixel_x = -6; + pixel_y = 4 + }, +/turf/open/floor/iron/white, +/area/station/security/checkpoint/science/research) +"hMN" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/bot, +/obj/item/radio/headset/headset_eng{ + pixel_x = -4; + pixel_y = 3 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/lobby) +"hMQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/circuit/red, +/area/station/science/robotics/mechbay) +"hNb" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/bot, +/obj/item/pipe_dispenser, +/obj/item/clothing/glasses/meson/engine, +/obj/item/wrench, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/disposal/incinerator) +"hNm" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"hNn" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 10 + }, +/turf/open/floor/iron/textured, +/area/station/science/ordnance/office) +"hNu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/spider/stickyweb, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/electrical) +"hNw" = ( +/obj/machinery/camera/directional/west{ + c_tag = "Xenobiology - Secure Cell Interior"; + name = "xenobiology camera"; + network = list("ss13","xeno","rd") + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"hNy" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/theater) +"hNB" = ( +/obj/effect/turf_decal/weather/snow, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/service/kitchen/coldroom) +"hND" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/rack_parts, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/fore) +"hNF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/green/warning, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/small, +/area/station/commons/dorms) +"hNN" = ( +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/red/full, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/hallway/secondary/construction) +"hNZ" = ( +/obj/effect/turf_decal/trimline/dark_red/arrow_ccw, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central) +"hOj" = ( +/obj/effect/spawner/random/structure/crate, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/aft) +"hOr" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/science/xenobiology) +"hOM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/security/checkpoint/engineering) +"hPi" = ( +/turf/open/floor/iron/textured_large, +/area/station/command/cc_dock) +"hPs" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/small/directional/west, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"hPu" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/textured_corner{ + dir = 4 + }, +/area/station/engineering/main) +"hPv" = ( +/obj/structure/table, +/obj/item/storage/crayons, +/turf/open/floor/wood/large, +/area/station/commons/fitness/recreation/entertainment) +"hPB" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/half{ + dir = 8 + }, +/area/station/hallway/primary/central) +"hPC" = ( +/obj/effect/turf_decal/nova_decals/enclave/bottom/left{ + color = "#52B4E9" + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/lobby) +"hPR" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_containers/cup/soda_cans/monkey_energy, +/obj/item/reagent_containers/cup/soda_cans/monkey_energy, +/obj/item/reagent_containers/cup/soda_cans/monkey_energy, +/obj/structure/sign/poster/contraband/lusty_xenomorph/directional/west, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/fore) +"hPT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/iron/sepia, +/area/station/service/library) +"hQd" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/machinery/computer/records/security{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/security/checkpoint/customs) +"hQk" = ( +/obj/machinery/atmospherics/components/tank, +/obj/machinery/camera/directional/east{ + c_tag = "Science - Ordnance Storage"; + name = "science camera"; + network = list("ss13","rd") + }, +/turf/open/floor/engine, +/area/station/science/ordnance/storage) +"hQp" = ( +/obj/item/circuitboard/machine/mechfab, +/obj/structure/closet, +/obj/item/bodypart/arm/left/robot/surplus, +/obj/item/bodypart/arm/right/robot/surplus, +/obj/item/bodypart/arm/right/robot/surplus, +/obj/item/bodypart/arm/left/robot/surplus, +/obj/item/bodypart/leg/right/robot/surplus, +/obj/item/bodypart/leg/right/robot/surplus, +/obj/item/bodypart/leg/left/robot/surplus, +/obj/item/bodypart/leg/left/robot/surplus, +/obj/item/stack/cable_coil, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine/atmos) +"hQq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/textured, +/area/station/cargo/miningdock) +"hQx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Aft Central Primary Hallway" + }, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/lobby) +"hQF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/airalarm/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/dark_red/diagonal_centre, +/obj/effect/turf_decal/tile/neutral/diagonal_centre, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/execution/transfer) +"hQK" = ( +/obj/machinery/medical_kiosk, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/treatment_center) +"hQV" = ( +/obj/structure/table/wood/fancy/green, +/obj/machinery/airalarm/directional/north, +/obj/item/modular_computer/laptop/preset/civilian{ + pixel_y = 7 + }, +/turf/open/floor/carpet/green, +/area/station/command/heads_quarters/nt_rep) +"hQW" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/security/office) +"hRb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/aisat/atmos) +"hRe" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/edge, +/area/station/hallway/primary/central) +"hRg" = ( +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + name = "blue line" + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/mid_joiner{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/prison) +"hRi" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/structure/sign/poster/official/random/directional/south, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/aft) +"hRn" = ( +/obj/item/storage/secure/safe/directional/west, +/obj/structure/dresser, +/obj/item/toy/figure/ce{ + pixel_y = 14 + }, +/turf/open/floor/carpet/orange, +/area/station/command/heads_quarters/ce) +"hRo" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/service/chapel/office) +"hRp" = ( +/obj/structure/window/spawner/directional/north, +/turf/open/floor/grass, +/area/station/service/hydroponics/garden) +"hRr" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/dark/textured_edge, +/area/station/hallway/primary/fore) +"hRD" = ( +/obj/machinery/flasher/directional/west{ + id = "AI" + }, +/obj/structure/table/wood/fancy/green, +/obj/effect/spawner/random/aimodule/harmless, +/turf/open/floor/circuit/green, +/area/station/ai_monitored/turret_protected/ai_upload) +"hRJ" = ( +/obj/structure/flora/bush/ferny/style_random, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/flora/bush/sunny/style_random, +/obj/structure/window/fulltile, +/turf/open/floor/grass, +/area/station/hallway/secondary/exit/departure_lounge) +"hRM" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/qm) +"hRW" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 5 + }, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"hSn" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/hallway/primary/fore) +"hSo" = ( +/obj/machinery/camera/motion/directional/south{ + c_tag = "Minisat Main Airlock"; + name = "AI motion-sensitive security camera"; + network = list("minisat") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable/layer3, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"hSy" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/wood, +/area/station/hallway/secondary/entry) +"hSA" = ( +/obj/structure/chair/comfy/brown{ + buildstackamount = 0; + color = "#4169e1" + }, +/turf/open/floor/carpet/blue, +/area/station/command/bridge) +"hSD" = ( +/obj/effect/turf_decal/trimline/red/filled/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured_corner, +/area/station/security/office) +"hSK" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/poster/random/directional/east, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/lesser) +"hSN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/service/theater) +"hSX" = ( +/obj/machinery/keycard_auth/directional/south{ + pixel_x = -5 + }, +/obj/machinery/button/door/directional/south{ + id = "cmoshutter"; + name = "CMO Office Shutters"; + pixel_x = 8; + pixel_y = -26; + req_access = list("cmo") + }, +/obj/machinery/modular_computer/preset/id{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/west, +/obj/effect/turf_decal/bot, +/turf/open/floor/carpet/blue, +/area/station/command/heads_quarters/cmo) +"hSY" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external/glass{ + name = "Arrival Airlock"; + space_dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/department/science/ordnance_maint) +"hTe" = ( +/obj/structure/closet/crate/bin, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"hTi" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/blue/filled/warning, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/command/gateway) +"hTl" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/pod/dark, +/area/station/service/chapel/office) +"hTr" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 10 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"hTs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/space_heater, +/obj/effect/turf_decal/box, +/turf/open/floor/pod, +/area/station/service/chapel/office) +"hTu" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/turf_decal/tile/dark_red/anticorner, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"hTD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "warehouse_shutters"; + name = "Warehouse Shutters" + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/warehouse) +"hTG" = ( +/obj/item/folder/red{ + pixel_y = 4 + }, +/obj/item/pen{ + pixel_y = 4 + }, +/obj/structure/table/wood/fancy/red, +/obj/effect/turf_decal/siding/wood, +/obj/item/clipboard{ + pixel_x = 15; + pixel_y = 4 + }, +/turf/open/floor/wood/large, +/area/station/security/courtroom) +"hTI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/girder, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/upper) +"hTN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/closet/firecloset/wall{ + pixel_y = -32 + }, +/obj/effect/turf_decal/trimline/white/end{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/secondary/entry) +"hTP" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/lobby) +"hTW" = ( +/obj/structure/closet/secure_closet/atmospherics, +/obj/effect/turf_decal/delivery, +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos/storage) +"hUc" = ( +/turf/open/floor/iron/dark/textured, +/area/station/engineering/supermatter/room) +"hUf" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"hUm" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/closet/crate/hydroponics, +/obj/effect/spawner/random/food_or_drink/seed, +/obj/effect/spawner/random/food_or_drink/seed, +/obj/effect/spawner/random/food_or_drink/seed, +/obj/effect/spawner/random/maintenance, +/obj/machinery/light_switch/directional/east{ + pixel_y = 6 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/textured, +/area/station/service/hydroponics/garden/abandoned) +"hUo" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/structure/chair/sofa/bench, +/obj/item/radio/intercom/directional/north, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/dark/textured_edge, +/area/station/security/holding_cell) +"hUp" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/atmos) +"hUD" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/heater/on{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos/pumproom) +"hUF" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/public/glass{ + name = "Aft Central Primary Hallway" + }, +/turf/open/floor/iron/grimy, +/area/station/service/library) +"hUG" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/wood, +/area/station/commons/vacant_room/office) +"hUI" = ( +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/obj/structure/sign/poster/random/directional/south, +/turf/open/floor/iron/white/diagonal, +/area/station/medical/medbay/central) +"hUR" = ( +/obj/structure/tank_holder/extinguisher, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine/atmos) +"hUS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/primary/fore) +"hUZ" = ( +/obj/structure/bookcase/random/fiction, +/turf/open/floor/carpet/black, +/area/station/commons/dorms) +"hVk" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"hVA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/suit/costume/cyborg_suit, +/obj/item/clothing/mask/gas/cyborg, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/science/robotics/mechbay) +"hVH" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/supermatter/room) +"hVW" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"hWf" = ( +/obj/machinery/door/airlock/grunge{ + name = "Chapel" + }, +/obj/effect/mapping_helpers/airlock/access/all/service/chapel_office, +/obj/machinery/door/firedoor, +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"hWh" = ( +/obj/machinery/power/shuttle_engine/heater, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/north, +/turf/open/floor/plating, +/area/space/nearstation) +"hWl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/machinery/door/poddoor/preopen{ + id = "atmoslock"; + name = "Atmospherics Lockdown Blast Door" + }, +/obj/machinery/door/airlock/maintenance_hatch, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/department/engine/atmos/lesser) +"hWF" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_edge, +/area/station/security/prison) +"hXj" = ( +/obj/machinery/rnd/production/circuit_imprinter, +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/storage_shared) +"hXs" = ( +/obj/structure/table/wood/fancy, +/obj/item/folder{ + pixel_y = 4 + }, +/obj/item/pen{ + pixel_y = 4 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/pod/dark, +/area/station/service/chapel/office) +"hXt" = ( +/obj/structure/closet/crate/bin, +/obj/machinery/status_display/ai/directional/north, +/obj/machinery/requests_console/directional/west{ + department = "Chapel"; + name = "Chapel Requests console" + }, +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"hXI" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + piping_layer = 2 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_edge, +/area/station/science/ordnance) +"hXP" = ( +/obj/structure/table, +/obj/item/restraints/handcuffs/cable/red, +/obj/item/clothing/suit/apron/surgical, +/obj/item/weldingtool/mini, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/greater) +"hXQ" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/pipedispenser, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"hXV" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"hYg" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/engine, +/area/station/engineering/atmos/storage/gas) +"hYl" = ( +/obj/structure/table, +/obj/machinery/camera/directional/west{ + c_tag = "Science - Robotics Lab"; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/machinery/airalarm/directional/west, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/ecto_sniffer{ + pixel_x = 8; + pixel_y = 14 + }, +/obj/item/assembly/flash/handheld{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/assembly/flash/handheld{ + pixel_x = 1; + pixel_y = 7 + }, +/obj/item/assembly/flash/handheld{ + pixel_x = 8; + pixel_y = 7 + }, +/obj/item/assembly/flash/handheld{ + pixel_x = -8 + }, +/obj/item/assembly/flash/handheld{ + pixel_x = -1 + }, +/obj/item/assembly/flash/handheld{ + pixel_x = 6 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/science/robotics/lab) +"hYn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ + dir = 8 + }, +/obj/machinery/meter, +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/science/ordnance) +"hYq" = ( +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/textured_large, +/area/station/hallway/primary/aft) +"hYs" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/main) +"hYt" = ( +/obj/effect/turf_decal/siding/thinplating_new/terracotta{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"hYA" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/department/engine/atmos/lesser) +"hYJ" = ( +/obj/structure/bed, +/obj/structure/railing, +/obj/structure/fluff/beach_umbrella, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/iron/white/small, +/area/station/common/pool) +"hYR" = ( +/obj/machinery/computer/telecomms/server{ + dir = 4; + network = "tcommsat" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/station/tcommsat/computer) +"hZa" = ( +/obj/effect/turf_decal/trimline/dark_red/arrow_cw{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/table, +/obj/item/radio/intercom/directional/west, +/obj/item/crowbar{ + pixel_y = 5 + }, +/obj/item/radio{ + pixel_y = 7 + }, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"hZd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_large, +/area/station/cargo/warehouse) +"hZp" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"hZq" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"hZv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/nova_decals/enclave/middle/left{ + color = "#52B4E9" + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/mid_joiner{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/command) +"hZE" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/primary/central) +"hZK" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 5 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"hZN" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/command) +"iah" = ( +/obj/structure/window/spawner/directional/west, +/obj/structure/window/spawner/directional/south, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/turf_decal/bot, +/turf/open/floor/wood/large, +/area/station/science/research) +"iaq" = ( +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"iay" = ( +/turf/closed/wall, +/area/station/science/research/abandoned) +"iaC" = ( +/obj/structure/table/reinforced, +/obj/structure/window/spawner/directional/west, +/obj/item/reagent_containers/cup/glass/colocup{ + pixel_x = 6; + pixel_y = -6 + }, +/obj/item/reagent_containers/cup/glass/colocup{ + pixel_x = 6; + pixel_y = -2 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/kitchen/abandoned) +"ibh" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/poddoor/preopen{ + id = "rdoffice"; + name = "Research Director's Shutters" + }, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/station/command/heads_quarters/rd) +"ibj" = ( +/obj/machinery/computer/cargo{ + dir = 8 + }, +/obj/machinery/camera/directional/east{ + c_tag = "Cargo Bay - Starboard"; + name = "cargo camera" + }, +/obj/effect/turf_decal/bot, +/obj/machinery/button/door/directional/east{ + id = 68; + layer = 4; + name = "Unloading Doors"; + pixel_y = 6 + }, +/obj/machinery/button/door/directional/east{ + id = 69; + layer = 4; + name = "Loading Doors"; + pixel_y = -6 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/textured_large, +/area/station/cargo/storage) +"ibt" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/commons/fitness/recreation/entertainment) +"ibC" = ( +/obj/effect/turf_decal/trimline/blue/line, +/obj/effect/turf_decal/trimline/blue/mid_joiner, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/prison) +"ibI" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/newscaster/directional/north, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/computer/atmos_control/nocontrol/master, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/atmos/storage/gas) +"ibK" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"ibN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/grimy, +/area/station/service/library) +"ibR" = ( +/obj/machinery/corral_corner{ + mapping_id = "6" + }, +/obj/machinery/slime_pen_controller{ + mapping_id = "6" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/light/neon_lining{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"ibV" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/poster/random_official, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "commissaryshutters"; + name = "Vacant Commissary Shutters" + }, +/turf/open/floor/iron/large, +/area/station/commons/vacant_room) +"icf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/stack/sheet/cardboard, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/fore) +"ick" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/camera/directional/south{ + c_tag = "Aft Primary Hallway - Tech Storage"; + name = "hallway camera" + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/aft) +"icG" = ( +/obj/item/clothing/mask/gas/clown_hat, +/obj/item/clothing/shoes/clown_shoes, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/department/engine) +"icH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/light/cold/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/medical/exam_room) +"icI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"icP" = ( +/turf/open/floor/glass/reinforced, +/area/station/medical/medbay/central) +"idg" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/department/medical/central) +"idl" = ( +/obj/structure/chair/sofa/right/maroon{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"idu" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Science Hallway" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/white/textured_large, +/area/station/hallway/primary/fore) +"idx" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_large, +/area/station/hallway/primary/aft) +"idG" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/corner, +/turf/open/floor/iron/textured_corner, +/area/station/science/ordnance) +"idO" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 9 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/storage_shared) +"ieb" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/aft) +"iek" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/chair/sofa/bench, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/landmark/start/security_officer, +/turf/open/floor/iron/textured_large, +/area/station/security/brig) +"ieu" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"iew" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation/entertainment) +"ieO" = ( +/obj/structure/window/reinforced/survival_pod/spawner/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/station/commons/fitness/recreation/entertainment) +"ieQ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"ieX" = ( +/obj/structure/table/wood, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/machinery/microwave{ + desc = "Cooks and boils stuff, somehow."; + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/floor/wood, +/area/station/commons/dorms) +"ieZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/upper) +"ifq" = ( +/turf/closed/wall/r_wall, +/area/station/medical/pharmacy) +"ifS" = ( +/obj/machinery/atmospherics/components/unary/cryo_cell, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/turf/open/floor/iron/dark/textured, +/area/station/medical/medbay/central) +"igd" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/small, +/area/station/common/pool) +"ige" = ( +/obj/structure/table, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "kitchen_counter"; + name = "Kitchen Counter Shutters" + }, +/obj/structure/desk_bell{ + pixel_x = 7; + pixel_y = 10 + }, +/turf/open/floor/iron/cafeteria, +/area/station/service/kitchen) +"igk" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/landmark/start/chaplain, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/pod/dark, +/area/station/service/chapel/funeral) +"ign" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet, +/area/station/medical/psychology) +"igo" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Arrivals" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/large, +/area/station/commons/dorms) +"igv" = ( +/turf/closed/wall/r_wall, +/area/station/security/prison/work) +"igG" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 1 + }, +/obj/machinery/light/floor/has_bulb, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"ihg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/commons/fitness/recreation/entertainment) +"ihy" = ( +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, +/obj/structure/window/reinforced/plasma/spawner/directional/west, +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/obj/effect/turf_decal/tile/dark_blue/full, +/obj/effect/turf_decal/tile/dark_blue/full, +/obj/machinery/atmospherics/components/binary/pump/off/yellow/visible{ + dir = 4; + name = "O2 To Pure" + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"ihz" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/corner, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"ihA" = ( +/obj/machinery/door/airlock/virology/glass{ + name = "Isolation B" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/virology, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/herringbone, +/area/station/medical/virology) +"ihB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/dark_green/filled/line{ + dir = 8 + }, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/medical/virology) +"ihT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/science/xenobiology) +"iie" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/white/textured_large, +/area/station/hallway/primary/fore) +"iii" = ( +/obj/item/shard, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/mob/living/basic/cockroach, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/greater) +"iil" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/gravity_generator) +"iin" = ( +/obj/structure/rack, +/obj/item/melee/baton/security/loaded, +/obj/item/melee/baton/security/loaded, +/obj/item/melee/baton/security/loaded, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/effect/turf_decal/tile/dark_red/half, +/obj/structure/reagent_dispensers/wall/peppertank/directional/south, +/obj/effect/turf_decal/bot, +/obj/effect/spawner/random/armory/riot_shield, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/dark/textured_edge, +/area/station/ai_monitored/security/armory) +"iiB" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/cargo/storage) +"iiO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/crate_abandoned, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/lesser) +"iiU" = ( +/obj/structure/cable, +/obj/item/radio/intercom/directional/north, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/camera/directional/east{ + c_tag = "Security Post - Cargo" + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 5 + }, +/obj/structure/rack, +/obj/item/crowbar, +/obj/item/wrench, +/obj/item/radio, +/turf/open/floor/iron/textured, +/area/station/security/checkpoint/supply) +"ijj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/port) +"ijw" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/primary/central/aft) +"ijx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/atmos) +"ijy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/textured_large, +/area/station/hallway/primary/fore) +"ijR" = ( +/obj/structure/window/spawner/directional/west, +/obj/structure/window/spawner/directional/north, +/obj/structure/flora/bush/jungle/a/style_2, +/turf/open/floor/grass, +/area/station/science/research) +"ijY" = ( +/obj/structure/table/wood/fancy, +/obj/item/storage/fancy/candle_box, +/obj/machinery/light/small/directional/south, +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"ikc" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical/central) +"ike" = ( +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/xenobiology) +"ikh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple/diagonal_centre, +/turf/open/floor/iron/white/diagonal, +/area/station/science/research) +"iki" = ( +/obj/structure/grille, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/aft) +"ikj" = ( +/obj/structure/table/reinforced, +/obj/item/tank/internals/emergency_oxygen/engi{ + pixel_x = 5 + }, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/glasses/meson/engine, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"ikl" = ( +/obj/effect/turf_decal/siding/wood, +/obj/item/fish_feed{ + pixel_x = 1; + pixel_y = 19 + }, +/obj/structure/aquarium/prefilled, +/obj/machinery/digital_clock/directional/south, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"ikp" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"ikw" = ( +/obj/machinery/newscaster/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"iky" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/vending/medical, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white/textured_edge, +/area/station/medical/storage) +"ikN" = ( +/obj/structure/railing{ + pixel_y = -5 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/nestbox, +/turf/open/floor/grass, +/area/station/service/hydroponics/upper) +"ila" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"ilc" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/supply/visible, +/turf/open/floor/pod, +/area/station/service/chapel/funeral) +"ile" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/electrical) +"ilm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible, +/obj/machinery/meter, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"iln" = ( +/obj/structure/table, +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/pen{ + pixel_y = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/atmos/storage/gas) +"ilA" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/security/office) +"ilT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/carpet/cyan, +/area/station/command/heads_quarters/blueshield) +"ilY" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/item/radio/intercom/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/atmos) +"imb" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/computer/quantum_console{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/bitrunning/den) +"imc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port) +"imd" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/machinery/computer/security/telescreen/cmo{ + dir = 1; + pixel_y = -32 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/cmo) +"imh" = ( +/obj/structure/sign/departments/xenobio/directional/west, +/obj/item/kirbyplants/monkey, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/tile/purple/diagonal_centre, +/turf/open/floor/iron/white/diagonal, +/area/station/science/research) +"imt" = ( +/obj/effect/spawner/random/structure/girder, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/fore) +"imw" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 9 + }, +/turf/open/floor/engine/vacuum, +/area/station/science/ordnance/burnchamber) +"imy" = ( +/obj/machinery/light/cold/directional/north, +/turf/open/floor/engine, +/area/station/science/explab) +"imz" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 8 + }, +/obj/item/book/manual/wiki/robotics_cyborgs, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/science/robotics/lab) +"imR" = ( +/turf/closed/wall, +/area/station/commons/vacant_room) +"imS" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "Cell3Privacy"; + name = "curtain" + }, +/turf/open/floor/plating, +/area/station/security/prison) +"imV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/cyan, +/area/station/command/heads_quarters/blueshield) +"inc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/window/left/directional/west{ + name = "Desk Access"; + req_access = list("library") + }, +/turf/open/floor/carpet, +/area/station/service/library) +"ini" = ( +/obj/effect/turf_decal/trimline/green/corner, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/service/hydroponics) +"inm" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/commons/storage/primary) +"inn" = ( +/obj/structure/window/spawner/directional/south, +/obj/structure/window/spawner/directional/east, +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/wood/large, +/area/station/science/research) +"ino" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/cmo) +"inq" = ( +/obj/machinery/oven, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/kitchen, +/area/station/security/prison/mess) +"int" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/cargo/storage) +"inB" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/layer_manifold/purple/visible{ + dir = 8 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"inF" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/hallway/secondary/command) +"inQ" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/grimy, +/area/station/commons/vacant_room/office) +"iob" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Head of Personel's Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/hop, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/fore) +"iom" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/brig) +"ioy" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/closet/firecloset/wall{ + pixel_y = -32 + }, +/obj/effect/turf_decal/trimline/white/end{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/aft) +"ioE" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/security/office) +"ioI" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/crew_quarters/bar) +"ioM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/fore) +"ioO" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/grimy, +/area/station/service/library) +"ioP" = ( +/obj/structure/window/spawner/directional/east{ + pixel_x = 4 + }, +/obj/effect/turf_decal/tile/blue/half, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/window/right/directional/south{ + name = "Medical Deliveries"; + req_access = list("cargo") + }, +/obj/effect/turf_decal/trimline/neutral/line, +/obj/effect/turf_decal/trimline/neutral/line, +/obj/effect/turf_decal/trimline/neutral/line, +/obj/effect/turf_decal/trimline/neutral/line, +/obj/effect/turf_decal/trimline/neutral/line, +/obj/effect/turf_decal/trimline/neutral/mid_joiner, +/obj/effect/turf_decal/trimline/neutral/mid_joiner, +/obj/effect/turf_decal/trimline/neutral/mid_joiner, +/obj/effect/turf_decal/trimline/neutral/mid_joiner, +/obj/effect/turf_decal/trimline/neutral/mid_joiner, +/turf/open/floor/iron/textured_large, +/area/station/cargo/sorting) +"ioX" = ( +/obj/machinery/camera/directional/south{ + c_tag = "Service - Cafeteria Aft"; + name = "service camera" + }, +/obj/structure/chair/sofa/corp/left{ + color = "#DE3A3A"; + dir = 8 + }, +/turf/open/floor/iron/cafeteria, +/area/station/service/cafeteria) +"ioZ" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"ipd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/textured_large, +/area/station/command/cc_dock) +"ipg" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"ipj" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/iron/textured_large, +/area/station/cargo/miningoffice) +"ipp" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/greater) +"ipH" = ( +/obj/structure/table/wood/fancy/royalblue, +/obj/machinery/recharger{ + pixel_x = 6 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/item/razor{ + pixel_x = -4; + pixel_y = 2 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain/private) +"ipJ" = ( +/obj/machinery/door/airlock/maintenance_hatch, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/aft) +"ipL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/science/xenobiology) +"ipM" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/table/wood/fancy/royalblack, +/obj/machinery/fax{ + fax_name = "Head of Security's Office"; + name = "Head of Security's Fax Machine"; + pixel_y = 3 + }, +/turf/open/floor/iron/textured_large, +/area/station/command/heads_quarters/hos) +"ipW" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/science/research) +"iqc" = ( +/obj/structure/table/wood, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/machinery/door/window/brigdoor/right/directional/east{ + name = "Captain's Desk"; + req_access = list("captain") + }, +/obj/machinery/fax{ + fax_name = "Captain's Office"; + name = "Captain's Fax Machine"; + pixel_x = -2; + pixel_y = 3 + }, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain) +"iqn" = ( +/obj/machinery/door/airlock/research{ + name = "Research and Development Lab" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/science/general, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/duct, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/science/lab) +"iqx" = ( +/obj/machinery/digital_clock, +/turf/closed/wall/r_wall, +/area/station/ai_monitored/security/armory) +"iqD" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/table, +/obj/item/toy/katana, +/obj/item/gun/ballistic/shotgun/toy/crossbow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/edge, +/area/station/commons/fitness/recreation) +"iqM" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/shutters/window{ + id = "gateshutter"; + name = "Gateway Access Shutter" + }, +/obj/machinery/button/door/directional/south{ + id = "gateshutter"; + name = "Gateway Shutter Control"; + pixel_x = -24; + pixel_y = 0; + req_access = list("command") + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/gateway) +"iqX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance_hatch, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port) +"irg" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "brigwindows"; + name = "Brig Front Blast Door" + }, +/turf/open/floor/plating/airless, +/area/station/security/brig) +"iri" = ( +/obj/structure/rack/shelf, +/obj/effect/spawner/random/techstorage/rnd_all, +/obj/effect/turf_decal/stripes/end, +/turf/open/floor/pod/dark, +/area/station/engineering/storage/tech) +"irk" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/central) +"irm" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/turf_decal/bot, +/obj/machinery/iv_drip, +/turf/open/floor/iron/freezer, +/area/station/medical/treatment_center) +"iru" = ( +/obj/structure/chair/sofa/bench{ + dir = 8 + }, +/turf/open/floor/glass/reinforced, +/area/station/security/execution/transfer) +"irB" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/fore) +"irC" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/window/fulltile, +/turf/open/floor/grass, +/area/station/service/theater) +"irO" = ( +/obj/machinery/corral_corner{ + mapping_id = "3" + }, +/obj/machinery/slime_pen_controller{ + mapping_id = "3" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/light/neon_lining{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"irQ" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/atmos) +"irU" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/exam_room) +"irZ" = ( +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"isc" = ( +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"ish" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"isk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/wood, +/obj/effect/spawner/random/decoration/ornament, +/turf/open/floor/iron/grimy, +/area/station/commons/vacant_room/office) +"isl" = ( +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + dir = 8; + name = "blue line" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/prison) +"isq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "kitchen_counter"; + name = "Kitchen Counter Shutters" + }, +/obj/machinery/pollution_scrubber{ + pixel_x = -7; + pixel_y = 1 + }, +/obj/structure/table, +/turf/open/floor/iron/large, +/area/station/service/kitchen) +"isr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/trash_pile, +/turf/open/floor/plating, +/area/station/maintenance/department/engine) +"iss" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/qm) +"isx" = ( +/obj/structure/rack, +/obj/item/storage/box/lights/mixed, +/obj/item/clothing/gloves/botanic_leather, +/obj/item/clothing/gloves/color/blue, +/obj/item/clothing/suit/caution, +/obj/item/clothing/suit/caution, +/obj/item/clothing/suit/caution, +/obj/item/clothing/suit/caution, +/obj/item/reagent_containers/cup/bucket, +/obj/item/reagent_containers/cup/bucket, +/obj/item/mop, +/obj/item/mop, +/obj/item/storage/bag/trash, +/obj/item/pushbroom, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/kitchen{ + dir = 1 + }, +/area/station/security/prison/work) +"isy" = ( +/obj/effect/decal/remains/human, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/security/execution/transfer) +"isB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/hallway/primary/fore) +"isF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/machinery/bluespace_vendor/directional/east, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/hallway/secondary/command) +"isS" = ( +/obj/effect/turf_decal/trimline/yellow/filled/end{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"iti" = ( +/obj/structure/table/wood, +/obj/machinery/fax{ + fax_name = "Detective's Office"; + name = "Detective's Fax Machine"; + pixel_y = 3 + }, +/turf/open/floor/carpet, +/area/station/security/detectives_office) +"itk" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/turf/open/floor/iron/white/textured_edge, +/area/station/science/lab) +"itr" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/machinery/firealarm/directional/west, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"itt" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/theater) +"itv" = ( +/obj/machinery/light/small/directional/east, +/turf/closed/wall/r_wall, +/area/station/maintenance/department/science/xenobiology) +"ity" = ( +/obj/structure/table, +/obj/item/clothing/mask/gas, +/obj/item/airlock_painter, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/power_room) +"itE" = ( +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/poddoor/shutters{ + id = "mechbay"; + name = "Mech Bay Shutters"; + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/robotics/mechbay) +"itH" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/textured_corner{ + dir = 8 + }, +/area/station/cargo/warehouse) +"itN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"itW" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 5 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"iud" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/tile/dark_red/diagonal_centre, +/obj/effect/turf_decal/tile/neutral/diagonal_centre, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/execution/transfer) +"iue" = ( +/obj/machinery/door/window/right/directional/west{ + name = "Ordnance Freezer Chamber Access"; + req_access = list("ordnance") + }, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible/layer2{ + dir = 5 + }, +/obj/structure/sign/warning/no_smoking/circle/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/science/ordnance) +"iui" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/station/medical/morgue) +"iun" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/station/science/ordnance/office) +"iuA" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 9 + }, +/obj/structure/closet/firecloset, +/obj/effect/landmark/start/hangover/closet, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) +"iuB" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "blueshield"; + name = "curtain" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/command/heads_quarters/blueshield) +"iuX" = ( +/obj/structure/sign/nanotrasen{ + pixel_x = 32 + }, +/turf/open/space/basic, +/area/space) +"iuZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_large, +/area/station/cargo/lobby) +"iva" = ( +/obj/machinery/netpod, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/bitrunning/den) +"ivb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/theater) +"ive" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 9 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/power_room) +"ivs" = ( +/obj/structure/fireaxecabinet{ + pixel_y = -32 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/carpet/blue, +/area/station/command/bridge) +"ivy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/warm/directional/west, +/obj/machinery/door/window/brigdoor/left/directional/south{ + name = "Captain's Desk"; + req_access = list("captain") + }, +/obj/machinery/status_display/ai/directional/west, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain) +"ivF" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/visible{ + dir = 6 + }, +/obj/effect/spawner/random/structure/tank_holder, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/medical/virology) +"ivQ" = ( +/obj/machinery/computer/order_console/cook, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/brown/filled/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/mid_joiner, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_large, +/area/station/hallway/secondary/service) +"ivR" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating/airless, +/area/station/security/checkpoint/medical) +"ivS" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain, +/turf/open/floor/plating, +/area/station/medical/virology) +"ivY" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/grassy, +/obj/structure/flora/bush/sunny, +/obj/structure/flora/bush/flowers_pp, +/obj/machinery/door/poddoor/preopen{ + id = "hoslockdown"; + name = "Head of Security Blast Door" + }, +/obj/structure/window/reinforced/fulltile, +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "hoscurtain"; + name = "curtain" + }, +/obj/structure/cable, +/turf/open/floor/grass, +/area/station/command/heads_quarters/hos) +"iwe" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/medical/psychology) +"iwk" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/item/reagent_containers/cup/glass/flask/gold{ + pixel_x = -5 + }, +/obj/structure/table/wood, +/obj/item/storage/secure/safe/directional/east, +/obj/item/lighter{ + color = "#d4af37"; + desc = "Cap's Lucky Lighter. Given to him by NT staff for being the most capable person to secure the disk."; + name = "The Captain's Lucky Lighter"; + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/clothing/mask/cigarette/cigar{ + pixel_x = 4 + }, +/obj/item/clothing/mask/cigarette/cigar{ + pixel_x = 7 + }, +/obj/item/clothing/mask/cigarette/cigar{ + pixel_x = 10 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"iwq" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/security/brig) +"iwz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"iwV" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/command) +"iwZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/turf/open/floor/iron/grimy, +/area/station/commons/vacant_room/office) +"ixg" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer2, +/turf/closed/wall/r_wall, +/area/station/engineering/atmos/storage) +"ixh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/item/radio/intercom/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/camera/directional/north, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"ixk" = ( +/obj/structure/tank_holder/extinguisher, +/obj/structure/sign/poster/random/directional/east, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/upper) +"ixm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/drain, +/obj/machinery/door/airlock/public/glass{ + name = "Aft Central Primary Hallway" + }, +/turf/open/floor/iron/large, +/area/station/common/pool) +"ixt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/green/arrow_ccw, +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/small, +/area/station/commons/dorms) +"ixv" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/atmos) +"ixB" = ( +/obj/effect/landmark/blobstart, +/obj/effect/landmark/event_spawn, +/obj/machinery/growing/soil, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/grass, +/area/station/service/hydroponics/garden/abandoned) +"ixE" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "garbage" + }, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/disposal) +"ixH" = ( +/obj/machinery/shieldgen, +/turf/open/floor/engine, +/area/station/engineering/main) +"ixT" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/science/ordnance_maint) +"ixX" = ( +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/central) +"iye" = ( +/obj/structure/closet, +/obj/effect/spawner/random/maintenance/two, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/aft) +"iyf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/hallway/secondary/entry) +"iyn" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_large, +/area/station/hallway/primary/aft) +"iyv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/corner{ + dir = 8 + }, +/area/station/hallway/primary/central) +"iyw" = ( +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/aft) +"iyx" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating/airless, +/area/station/medical/pharmacy) +"iyy" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"iyK" = ( +/obj/effect/mapping_helpers/iannewyear, +/turf/open/floor/carpet/executive, +/area/station/command/heads_quarters/hop) +"iyU" = ( +/turf/closed/wall, +/area/station/security/prison) +"izg" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/textured_corner{ + dir = 1 + }, +/area/station/maintenance/disposal/incinerator) +"izm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction{ + dir = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/greater) +"izt" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/treatment_center) +"izw" = ( +/turf/open/floor/iron/grimy, +/area/station/hallway/primary/central/fore) +"izx" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/security/brig) +"izF" = ( +/obj/item/radio/intercom/directional/west, +/turf/open/floor/light/colour_cycle/dancefloor_b, +/area/station/common/night_club) +"izG" = ( +/obj/item/lipstick/random{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/lipstick/random, +/obj/item/lipstick/random{ + pixel_y = 3 + }, +/obj/structure/table/wood/fancy/royalblack, +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/checker, +/area/station/service/theater) +"izJ" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/sign/nanotrasen{ + pixel_x = -32 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/security/checkpoint/science/research) +"izK" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/black, +/area/station/command/heads_quarters/qm) +"izY" = ( +/obj/machinery/door/airlock/grunge{ + name = "Chapel" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"iAb" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/item/radio/intercom/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain/private) +"iAj" = ( +/mob/living/basic/chicken{ + forced_gender = "female" + }, +/turf/open/floor/grass, +/area/station/service/hydroponics/upper) +"iAk" = ( +/obj/structure/table, +/obj/item/healthanalyzer, +/obj/item/healthanalyzer{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west{ + pixel_y = 1 + }, +/obj/machinery/button/door/directional/west{ + id = "paramed_dispatch_desk"; + name = "Desk Shutter Control"; + pixel_y = -8; + req_access = list("medical") + }, +/obj/item/radio/headset/headset_med{ + pixel_x = -4; + pixel_y = 14 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/medical/medbay/lobby) +"iAl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/effect/landmark/start/medical_doctor, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 10 + }, +/turf/open/floor/iron/dark/textured, +/area/station/medical/medbay/central) +"iAs" = ( +/obj/structure/table, +/obj/item/toy/cards/deck{ + pixel_y = 4 + }, +/turf/open/floor/wood/large, +/area/station/commons/fitness/recreation/entertainment) +"iAE" = ( +/obj/machinery/suit_storage_unit/security, +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/red/diagonal_centre, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/office) +"iAF" = ( +/obj/structure/grille, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/aft) +"iAM" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 1 + }, +/obj/effect/landmark/start/botanist, +/turf/open/floor/iron/edge, +/area/station/service/hydroponics) +"iBe" = ( +/obj/structure/table, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/item/experi_scanner{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/experi_scanner{ + pixel_x = -4; + pixel_y = 5 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/science/lab) +"iBp" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/engine/atmos/lesser) +"iBC" = ( +/obj/effect/turf_decal/tile/blue/full, +/turf/open/floor/iron/freezer, +/area/station/medical/surgery) +"iBF" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/aft) +"iBI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/airalarm/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet) +"iBJ" = ( +/turf/closed/wall/r_wall, +/area/station/hallway/secondary/command) +"iBQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/pod/dark, +/area/station/service/chapel/funeral) +"iCa" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/aft/upper) +"iCg" = ( +/obj/structure/table/wood, +/obj/item/stamp/denied{ + pixel_x = -7; + pixel_y = 9 + }, +/obj/item/stamp{ + pixel_x = -7; + pixel_y = 1 + }, +/obj/item/folder/red{ + pixel_x = 11; + pixel_y = 4 + }, +/obj/item/folder/blue{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stamp/centcom{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/green, +/area/station/command/heads_quarters/nt_rep) +"iCx" = ( +/obj/structure/chair/plastic{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/commons/fitness/recreation/entertainment) +"iCF" = ( +/obj/machinery/camera/directional/east{ + c_tag = "Engineering Emitter Room Starboard"; + network = list("ss13","engine") + }, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/supermatter/room) +"iCZ" = ( +/obj/machinery/computer/communications, +/obj/machinery/keycard_auth{ + pixel_x = 7; + pixel_y = 25 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain) +"iDa" = ( +/obj/effect/landmark/generic_maintenance_landmark, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/wood, +/area/station/maintenance/department/science/xenobiology) +"iDb" = ( +/obj/machinery/modular_computer/preset/curator, +/obj/structure/sign/painting/large/library{ + dir = 1 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Library - Curator's Study"; + dir = 9; + name = "library camera" + }, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/obj/structure/cassette_rack/prefilled{ + pixel_y = 19; + pixel_x = -5 + }, +/turf/open/floor/cult, +/area/station/service/library) +"iDe" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Interrogation Room Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/security/interrogation) +"iDu" = ( +/obj/effect/spawner/random/trash/garbage, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/department/engine/atmos) +"iDC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_red/arrow_ccw{ + dir = 6 + }, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"iDN" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/edge, +/area/station/hallway/primary/central) +"iEu" = ( +/turf/open/floor/glass/reinforced, +/area/station/hallway/secondary/exit/departure_lounge) +"iEv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/carpet/executive, +/area/station/command/heads_quarters/hop) +"iEB" = ( +/obj/effect/turf_decal/box/corners, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/xenobiology) +"iED" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/department/security/greater) +"iEH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured_large, +/area/station/hallway/secondary/entry) +"iEJ" = ( +/obj/effect/turf_decal/weather/snow, +/obj/machinery/camera/directional/west{ + c_tag = "Service - Kitchen Coldroom"; + dir = 5; + name = "service camera" + }, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/service/kitchen/coldroom) +"iEL" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external/glass{ + name = "Arrival Airlock"; + space_dir = 1 + }, +/turf/open/floor/catwalk_floor, +/area/station/hallway/secondary/entry) +"iEP" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/security/greater) +"iEY" = ( +/obj/machinery/status_display/ai, +/turf/closed/wall/mineral/iron, +/area/station/service/chapel) +"iFc" = ( +/mob/living/basic/cow{ + name = "Betsy"; + real_name = "Betsy" + }, +/turf/open/floor/grass, +/area/station/service/hydroponics/garden) +"iFo" = ( +/obj/structure/bed/maint, +/obj/effect/spawner/random/contraband/prison, +/turf/open/floor/iron/textured, +/area/station/security/prison/work) +"iFp" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/chair/sofa/middle/brown{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/break_room) +"iFA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/small, +/area/station/commons/dorms) +"iFG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/primary/fore) +"iFY" = ( +/obj/structure/cable, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/wood, +/area/station/security/prison/garden) +"iFZ" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "atmoshfr" + }, +/turf/open/floor/iron/stairs/medium{ + dir = 4 + }, +/area/station/engineering/atmos/hfr_room) +"iGa" = ( +/obj/effect/spawner/random/structure/crate, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/engineering/vending_restock, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/lesser) +"iGc" = ( +/obj/effect/landmark/start/roboticist, +/obj/structure/sink/directional/east, +/obj/effect/turf_decal/tile/dark_red{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 4 + }, +/area/station/science/robotics/lab) +"iGg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos/pumproom) +"iGu" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/command/captain, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/corporate{ + id_tag = "consultantdoor"; + name = "Consultant's Office" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/nt_rep) +"iGy" = ( +/obj/structure/sign/logo{ + icon_state = "nanotrasen_sign3"; + pixel_y = 32 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge, +/area/station/hallway/primary/aft) +"iGC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"iGD" = ( +/obj/structure/liquid_pump, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/crew_quarters/bar) +"iGH" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/ai_monitored/command/storage/eva) +"iGL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/auxlab/firing_range) +"iGO" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/maintenance/port) +"iGR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/science/xenobiology) +"iHh" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/requests_console/directional/north{ + department = "Medbay"; + name = "Medbay Requests Console" + }, +/obj/structure/table/glass, +/obj/item/stack/medical/gauze, +/obj/item/stack/medical/mesh, +/obj/item/stack/medical/suture, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/freezer, +/area/station/medical/treatment_center) +"iHi" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/dark_red/arrow_cw{ + dir = 8 + }, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"iHA" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/textured_corner{ + dir = 1 + }, +/area/station/medical/medbay/central) +"iHL" = ( +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/box, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/disposal/incinerator) +"iHM" = ( +/obj/structure/chair/sofa/middle/brown, +/obj/machinery/requests_console/auto_name/directional/north, +/turf/open/floor/carpet/green, +/area/station/commons/dorms) +"iHU" = ( +/obj/structure/table/glass, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/dark_green/filled/line{ + dir = 9 + }, +/obj/effect/spawner/random/food_or_drink/donkpockets{ + pixel_y = 5 + }, +/turf/open/floor/iron/white, +/area/station/medical/virology) +"iHX" = ( +/obj/effect/decal/cleanable/oil, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"iIn" = ( +/obj/machinery/light/neon_lining{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/science/xenobiology) +"iIq" = ( +/obj/structure/table, +/obj/effect/spawner/random/entertainment/money, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/crew_quarters/bar) +"iIv" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/floor/has_bulb, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"iIy" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"iID" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/brown/filled/warning, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/security/prison) +"iJg" = ( +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge, +/area/station/science/ordnance/office) +"iJi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/trash_pile, +/turf/open/floor/plating, +/area/station/maintenance/department/engine/atmos) +"iJn" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/duct, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/medical/medbay/central) +"iJo" = ( +/obj/structure/window/spawner/directional/west, +/turf/open/floor/grass, +/area/station/service/hydroponics/garden) +"iJq" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/atmos) +"iJB" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_edge, +/area/station/security/lockers) +"iJC" = ( +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/fore) +"iJR" = ( +/obj/effect/turf_decal/stripes/red/full, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/fans/tiny/forcefield{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters{ + dir = 8; + id = "bsa"; + name = "BSA Shutters" + }, +/turf/open/floor/iron/textured_large, +/area/station/hallway/secondary/construction) +"iJT" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/table/reinforced/rglass, +/obj/item/clipboard, +/obj/item/mining_voucher, +/obj/effect/turf_decal/tile/brown/anticorner{ + dir = 8 + }, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"iJX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/floor/has_bulb, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/theater) +"iKb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/storage) +"iKe" = ( +/obj/structure/sign/warning/vacuum/directional/north, +/obj/structure/closet/secure_closet/miner, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/textured_large, +/area/station/cargo/miningdock) +"iKs" = ( +/obj/structure/table, +/obj/item/stack/sheet/cardboard{ + amount = 14 + }, +/obj/item/stack/package_wrap, +/obj/item/stack/license_plates/empty/fifty, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/dark/small, +/area/station/security/prison/work) +"iKV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"iKW" = ( +/turf/closed/wall/r_wall, +/area/station/commons/dorms) +"iKZ" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/atmos/hfr_room) +"iLm" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/machinery/light/floor/has_bulb, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/atmos) +"iLH" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/science/lab) +"iLL" = ( +/obj/structure/railing{ + dir = 10 + }, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 10 + }, +/turf/open/floor/iron/corner{ + dir = 4 + }, +/area/station/hallway/primary/central) +"iLQ" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space/basic, +/area/space/nearstation) +"iLW" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain/cloth/fancy, +/turf/open/floor/plating, +/area/station/maintenance/department/science/xenobiology) +"iMd" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/table, +/turf/open/floor/iron/kitchen{ + dir = 1 + }, +/area/station/commons/dorms/laundry) +"iMf" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, +/obj/machinery/door/airlock/external/glass{ + name = "External Access"; + space_dir = 1 + }, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/department/security/greater) +"iMh" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/textured_corner{ + dir = 1 + }, +/area/station/cargo/lobby) +"iMn" = ( +/obj/structure/sign/picture_frame/portrait{ + pixel_y = 28 + }, +/obj/item/kirbyplants/organic/plant21{ + pixel_y = 3 + }, +/turf/open/floor/pod/dark, +/area/station/service/chapel/office) +"iMs" = ( +/turf/closed/wall/r_wall, +/area/station/security/holding_cell) +"iMv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/textured, +/area/station/hallway/secondary/entry) +"iMC" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 5 + }, +/obj/structure/closet/emcloset/wall{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/white/end{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner/directional/east{ + layer = 2.9; + pixel_x = 4 + }, +/turf/open/floor/iron/white, +/area/station/science/xenobiology) +"iMO" = ( +/obj/effect/turf_decal/trimline/dark_red/arrow_cw{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/recharge_station, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"iMZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/trimline/neutral/filled/line, +/obj/effect/turf_decal/trimline/neutral/filled/line, +/obj/effect/turf_decal/trimline/neutral/filled/line, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/hallway/secondary/command) +"iNb" = ( +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/diagonal, +/area/station/hallway/secondary/service) +"iNk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"iNu" = ( +/obj/effect/spawner/random/vending/snackvend, +/obj/effect/turf_decal/bot, +/obj/machinery/camera/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/power_room) +"iNL" = ( +/obj/structure/chair/comfy{ + color = "#596479" + }, +/obj/machinery/camera/directional/north{ + c_tag = "Prison - Library"; + network = list("ss13","prison") + }, +/obj/item/radio/intercom/directional/north, +/obj/effect/landmark/start/prisoner, +/turf/open/floor/wood, +/area/station/security/prison/garden) +"iNT" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/white/textured_edge, +/area/station/medical/medbay/lobby) +"iNU" = ( +/turf/open/floor/iron/airless{ + icon_state = "dark_large" + }, +/area/space/nearstation) +"iNV" = ( +/turf/closed/wall, +/area/station/maintenance/starboard/greater) +"iOb" = ( +/obj/structure/table, +/obj/effect/spawner/random/maintenance/two, +/obj/item/wirecutters, +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 6 + }, +/obj/machinery/light/small/directional/east, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/iron/textured, +/area/station/hallway/secondary/construction) +"iOx" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/dark_blue{ + dir = 9 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"iOB" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/table/wood/fancy, +/obj/item/statuebust{ + pixel_y = 12 + }, +/turf/open/floor/carpet, +/area/station/service/library/abandoned) +"iOR" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/iron/textured, +/area/station/engineering/power_room) +"iPh" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/machinery/door/airlock/external, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/aft) +"iPm" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/button/curtain{ + id = "theater_curtains"; + pixel_y = 24 + }, +/turf/open/floor/wood/large, +/area/station/service/theater) +"iPD" = ( +/obj/item/radio/intercom/directional/west{ + freerange = 1; + listening = 0; + name = "Common Channel"; + pixel_x = -32; + pixel_y = 4 + }, +/obj/item/radio/intercom/directional/south{ + freerange = 1; + frequency = 1447; + listening = 0; + name = "Private Channel"; + pixel_y = 22 + }, +/obj/item/radio/intercom/directional/east{ + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_x = 31; + pixel_y = 4 + }, +/obj/effect/landmark/start/ai, +/obj/machinery/turretid{ + icon_state = "control_stun"; + name = "AI Chamber turret control"; + pixel_x = 32; + pixel_y = 32 + }, +/obj/machinery/button/door/directional/north{ + id = "AI Chamber Entrance Shutters"; + name = "AI Chamber Entrance Shutters Control"; + pixel_x = -26; + req_access = list("ai_upload") + }, +/obj/machinery/button/door/directional/north{ + id = "AI Core shutters"; + name = "AI Core Shutters Control"; + pixel_x = -38; + req_access = list("ai_upload") + }, +/obj/structure/cable, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/ai) +"iPJ" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/main) +"iPZ" = ( +/turf/closed/wall, +/area/station/maintenance/department/electrical) +"iQd" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/white/textured_edge, +/area/station/medical/treatment_center) +"iQl" = ( +/obj/machinery/status_display/ai, +/turf/closed/wall, +/area/station/security/lockers) +"iQp" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/structure/table, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/capacitor, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/fore) +"iQy" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/lobby) +"iQz" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/open/floor/engine/n2o, +/area/station/engineering/atmos) +"iQV" = ( +/obj/machinery/light_switch/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ + dir = 10 + }, +/turf/open/floor/iron/textured, +/area/station/science/ordnance) +"iQX" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red/diagonal_centre, +/turf/open/floor/iron/dark/diagonal, +/area/station/hallway/secondary/exit/departure_lounge) +"iRb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/turf/open/floor/iron/textured_large, +/area/station/engineering/main) +"iRd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/open/floor/iron/textured_large, +/area/station/science/ordnance) +"iRi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/cook, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"iRn" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/commons/storage/art) +"iRo" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/turf_decal/siding/thinplating, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/exit/departure_lounge) +"iRs" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/directions/supply/directional/east{ + dir = 2; + pixel_y = -8 + }, +/obj/structure/sign/directions/lavaland/directional/east{ + dir = 2 + }, +/obj/structure/sign/directions/engineering/directional/east{ + dir = 2; + pixel_y = 8 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/primary/central) +"iRw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/spawner/random/structure/steam_vent, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/crew_quarters/bar) +"iRA" = ( +/obj/structure/table, +/obj/machinery/chem_dispenser/drinks, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/turf/open/floor/iron/kitchen, +/area/station/security/prison/mess) +"iRJ" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"iRU" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"iSa" = ( +/obj/machinery/airalarm/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable/multilayer/connected, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"iSl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/nova_decals/enclave/top/right{ + color = "#52B4E9" + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/lobby) +"iSr" = ( +/obj/structure/table, +/obj/item/clothing/head/utility/welding{ + pixel_x = -7; + pixel_y = -7 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/clothing/glasses/welding{ + pixel_x = -2; + pixel_y = 7 + }, +/obj/item/clothing/glasses/welding{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/clothing/head/utility/welding{ + pixel_x = -3; + pixel_y = -5 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/science/robotics/lab) +"iSE" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_edge, +/area/station/security/prison) +"iSI" = ( +/obj/machinery/suit_storage_unit/cmo, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/cmo) +"iSJ" = ( +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/security/armory) +"iSK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/greater) +"iTd" = ( +/turf/open/floor/iron/textured_large, +/area/station/engineering/main) +"iTs" = ( +/obj/structure/sign/poster/contraband/atmosia_independence/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 5 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"iTt" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/textured_large, +/area/station/engineering/main) +"iTu" = ( +/obj/structure/cable, +/obj/structure/chair/stool/directional/west{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured_large, +/area/station/engineering/break_room) +"iTx" = ( +/obj/structure/sign/poster/official/love_ian/directional/east, +/obj/machinery/status_display/evac/directional/south, +/obj/structure/filingcabinet/medical, +/obj/effect/turf_decal/bot, +/turf/open/floor/carpet/executive, +/area/station/command/heads_quarters/hop) +"iTA" = ( +/turf/closed/wall, +/area/station/hallway/secondary/entry) +"iTJ" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/white/textured_edge, +/area/station/security/checkpoint/science/research) +"iTS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/pod, +/area/station/service/chapel/office) +"iUc" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall2"; + location = "hall1" + }, +/turf/open/floor/iron/large, +/area/station/hallway/primary/fore) +"iUs" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Service - Bar Fore"; + name = "service camera" + }, +/obj/machinery/light_switch/directional/north{ + pixel_x = 7 + }, +/obj/machinery/firealarm/directional/north{ + pixel_x = -4 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/grimy, +/area/station/commons/lounge) +"iUz" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/wood, +/area/station/hallway/secondary/entry) +"iUI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine) +"iUK" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 9 + }, +/obj/structure/sign/calendar/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/security/warden) +"iUL" = ( +/obj/machinery/space_heater, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine/atmos) +"iUM" = ( +/obj/structure/chair/comfy/brown{ + color = "#A46106" + }, +/obj/effect/landmark/start/quartermaster, +/obj/machinery/computer/security/telescreen/vault{ + pixel_y = 30 + }, +/turf/open/floor/carpet/black, +/area/station/command/heads_quarters/qm) +"iVa" = ( +/turf/open/floor/engine, +/area/station/security/range) +"iVi" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Central Primary Hallway Maintenance" + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/central) +"iVj" = ( +/turf/closed/wall/r_wall, +/area/station/security/detectives_office) +"iVp" = ( +/obj/machinery/airalarm/directional/north, +/obj/effect/mapping_helpers/airalarm/tlv_no_checks, +/obj/effect/turf_decal/trimline/white/end, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"iVy" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/stone, +/area/station/service/barber) +"iVz" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/atmos) +"iVF" = ( +/obj/structure/filingcabinet/employment, +/obj/effect/turf_decal/bot, +/turf/open/floor/carpet/green, +/area/station/command/heads_quarters/nt_rep) +"iVS" = ( +/obj/machinery/corral_corner{ + mapping_id = "1" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/light/neon_lining{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"iVW" = ( +/obj/structure/table, +/obj/item/exodrone{ + pixel_y = 8 + }, +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/cargo/drone_bay) +"iVZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/maintenance/external/glass{ + name = "Space Bridge Access" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/department/security/greater) +"iWc" = ( +/obj/machinery/light/floor/has_bulb, +/turf/open/floor/engine/vacuum, +/area/station/engineering/atmos) +"iWi" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/light/small/directional/north, +/obj/effect/landmark/start/assistant, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/iron/freezer, +/area/station/commons/dorms/laundry) +"iWk" = ( +/obj/machinery/firealarm/directional/east, +/turf/open/floor/carpet, +/area/station/commons/dorms) +"iWn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/machinery/light/small/directional/west, +/obj/item/assembly/prox_sensor{ + desc = "Used for scanning and alerting when someone enters a certain proximity. This one is slightly shifted to the left."; + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/wallframe/camera, +/obj/item/screwdriver, +/obj/structure/spider/stickyweb, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/electrical) +"iWw" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central) +"iWA" = ( +/obj/structure/bookcase/random/adult, +/obj/structure/sign/painting/library{ + pixel_y = 32 + }, +/obj/effect/turf_decal/siding/wood/end{ + dir = 8 + }, +/turf/open/floor/wood/tile, +/area/station/service/library) +"iWB" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/aft) +"iWH" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/effect/turf_decal/tile/red/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/commons/lounge) +"iWJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/turf/open/floor/iron/white/diagonal, +/area/station/medical/medbay/central) +"iWQ" = ( +/obj/structure/chair/wood{ + dir = 1; + layer = 2.8 + }, +/turf/open/floor/carpet/black, +/area/station/command/heads_quarters/qm) +"iWZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_red/half{ + dir = 4 + }, +/obj/item/storage/secure/safe/directional/east, +/obj/effect/turf_decal/delivery, +/obj/machinery/ammo_workbench/unlocked, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/ai_monitored/security/armory) +"iXg" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "detectivewindows"; + name = "Detective Privacy Blast Door" + }, +/turf/open/floor/plating, +/area/station/security/detectives_office) +"iXi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured_large, +/area/station/science/ordnance) +"iXk" = ( +/obj/effect/spawner/random/structure/crate, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/upper) +"iXp" = ( +/obj/machinery/duct, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/white/textured_edge, +/area/station/medical/medbay/central) +"iXr" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/structure/sign/warning/radiation/rad_area/directional/west, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/atmos/hfr_room) +"iXs" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port) +"iXB" = ( +/obj/structure/chair/stool/bar, +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/mess) +"iXT" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "atmos-entrance" + }, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Desk" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/effect/landmark/navigate_destination/atmos, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/poddoor/preopen{ + id = "atmoslock"; + name = "Atmospherics Lockdown Blast Door" + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos/storage/gas) +"iXW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"iXY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_red/opposingcorners, +/turf/open/floor/iron, +/area/station/service/theater) +"iYe" = ( +/obj/effect/spawner/random/maintenance, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/brown/filled/warning, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/cargo/storage) +"iYf" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/item/radio/intercom/directional/east, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/primary/central/aft) +"iYy" = ( +/obj/structure/table/reinforced, +/obj/item/gun_maintenance_supplies{ + pixel_x = -4; + pixel_y = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/blueshield) +"iYz" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/science/robotics/mechbay) +"iYC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/large, +/area/station/commons/fitness/recreation/entertainment) +"iYH" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/mirror/directional/west, +/obj/structure/sink/directional/east, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 10 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"iYT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/machinery/status_display/ai/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/diagonal, +/area/station/hallway/secondary/service) +"iYV" = ( +/obj/structure/chair/comfy/brown{ + color = "#D381C9"; + dir = 4 + }, +/turf/open/floor/carpet/blue, +/area/station/command/bridge) +"iYZ" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/iron/textured_large, +/area/station/security/checkpoint/engineering) +"iZa" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/duct, +/turf/open/floor/iron/white/textured_large, +/area/station/science/xenobiology) +"iZl" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/power_room) +"iZr" = ( +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "blueshield"; + name = "curtain" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/command/heads_quarters/blueshield) +"iZs" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/station/tcommsat/computer) +"iZx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/closet/emcloset/wall{ + pixel_x = -32 + }, +/obj/effect/turf_decal/trimline/white/mid_joiner, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_red/diagonal_centre, +/obj/effect/turf_decal/trimline/white/end{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/diagonal_centre, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/execution/transfer) +"iZB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/trash_pile, +/obj/machinery/light/small/directional/east, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/crew_quarters/bar) +"iZJ" = ( +/obj/structure/table/wood, +/obj/machinery/computer/libraryconsole, +/obj/effect/turf_decal/siding/wood/end{ + dir = 8 + }, +/obj/machinery/light_switch/directional/west{ + pixel_x = -24 + }, +/turf/open/floor/wood/large, +/area/station/service/library) +"iZL" = ( +/obj/structure/chair/stool/directional/west, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/storage) +"iZQ" = ( +/obj/structure/closet/firecloset/wall{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/white/end, +/obj/effect/turf_decal/trimline/white/mid_joiner, +/turf/open/floor/iron/textured_edge, +/area/station/science/ordnance) +"iZS" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"iZW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/cargo/miningdock) +"jay" = ( +/obj/structure/chair/sofa/right/brown{ + dir = 8 + }, +/obj/effect/landmark/start/shaft_miner, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/textured_large, +/area/station/cargo/miningoffice) +"jaz" = ( +/obj/structure/table/reinforced, +/obj/item/hfr_box/body/fuel_input, +/obj/item/hfr_box/body/interface, +/obj/item/hfr_box/body/moderator_input, +/obj/item/hfr_box/body/waste_output, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos/hfr_room) +"jaG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/table, +/obj/item/reagent_containers/condiment/saltshaker{ + desc = "Salt. From space oceans, presumably. A staple of modern medicine."; + pixel_x = -8; + pixel_y = 12 + }, +/obj/item/reagent_containers/condiment/peppermill{ + desc = "Often used to flavor food or make people sneeze. Fashionably moved to the left side of the table."; + pixel_x = -8; + pixel_y = 2 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/item/storage/box/donkpockets/donkpocketpizza{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/item/storage/box/donkpockets/donkpocketteriyaki{ + pixel_x = 5; + pixel_y = 9 + }, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"jbe" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/machinery/computer/records/medical/laptop, +/obj/machinery/firealarm/directional/north, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/carpet/royalblack, +/area/station/command/heads_quarters/hos) +"jbf" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "AI Chamber" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "AI Chamber Entrance Shutters"; + name = "AI Chamber Entrance Shutters" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, +/obj/structure/cable, +/obj/machinery/flasher/directional/west{ + id = "AI"; + pixel_y = -8 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/layer3, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/ai) +"jbg" = ( +/obj/machinery/mass_driver/chapelgun, +/obj/machinery/door/window/left/directional/west{ + name = "Mass Driver"; + req_access = list("chapel_office") + }, +/turf/open/floor/pod/dark, +/area/station/service/chapel/funeral) +"jbi" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_corner{ + dir = 8 + }, +/area/station/science/robotics/lab) +"jbu" = ( +/obj/machinery/vending/boozeomat, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, +/area/station/service/bar) +"jbI" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/power_room) +"jbL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/storage/tcomms) +"jcd" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/west{ + pixel_y = -16 + }, +/obj/structure/sink/directional/east, +/obj/structure/extinguisher_cabinet/directional/west{ + pixel_y = 2; + pixel_x = -28 + }, +/turf/open/floor/iron/freezer, +/area/station/medical/pharmacy) +"jcf" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/structure/sign/warning/no_smoking/directional/east, +/obj/effect/turf_decal/box, +/obj/machinery/recharge_station, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/medical/medbay/central) +"jck" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hop) +"jcm" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/turf/open/floor/iron/textured_large, +/area/station/engineering/main) +"jcv" = ( +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 1 + }, +/obj/structure/table, +/obj/item/storage/briefcase, +/obj/item/cane, +/obj/item/clothing/head/hats/bowler{ + pixel_y = 8 + }, +/turf/open/floor/iron/corner{ + dir = 1 + }, +/area/station/commons/fitness/recreation) +"jcD" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/textured_edge, +/area/station/hallway/primary/aft) +"jcW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/light/neon_lining{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/science/xenobiology) +"jdb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge, +/area/station/hallway/primary/aft) +"jdc" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/machinery/door/airlock/external, +/turf/open/floor/catwalk_floor, +/area/station/engineering/main) +"jdN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/generic_maintenance_landmark, +/turf/open/floor/iron/textured, +/area/station/science/research/abandoned) +"jdS" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/fore) +"jef" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "cargoload" + }, +/obj/structure/plasticflaps, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured_large, +/area/station/cargo/storage) +"jeo" = ( +/obj/effect/mapping_helpers/airlock/access/all/service/chapel_office, +/obj/machinery/door/airlock/maintenance{ + name = "Chapel Maintenance" + }, +/turf/open/floor/pod, +/area/station/service/chapel/office) +"jep" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"jeR" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/freezer, +/area/station/security/checkpoint/medical) +"jfo" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/commons/fitness/recreation/entertainment) +"jfp" = ( +/obj/machinery/porta_turret/ai, +/obj/effect/turf_decal/stripes/white/box, +/obj/structure/sign/departments/aisat/directional/east, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/aisat_interior) +"jfq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine) +"jfs" = ( +/obj/item/radio/intercom/directional/north, +/obj/effect/landmark/secequipment, +/obj/machinery/button/door/directional/east{ + id = "brigprison"; + name = "Prison Lockdown"; + req_access = list("brig") + }, +/obj/effect/turf_decal/tile/red/diagonal_centre, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/office) +"jfw" = ( +/obj/machinery/computer/security/qm{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown/half{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"jfx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/cargo/miningdock) +"jfH" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L12" + }, +/turf/open/floor/iron/large, +/area/station/hallway/primary/fore) +"jfP" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera/directional/east{ + c_tag = "Aft Central Primary Hallway - Aft"; + name = "hallway camera" + }, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/primary/central/aft) +"jfS" = ( +/turf/closed/wall, +/area/station/security/medical) +"jfU" = ( +/obj/structure/chair/comfy/brown{ + color = "#52B4E9"; + dir = 4 + }, +/turf/open/floor/carpet/blue, +/area/station/command/bridge) +"jfX" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "chemistry_shutters"; + name = "Pharmacy Shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating/airless, +/area/station/medical/pharmacy) +"jfZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/stairs/medium{ + dir = 4 + }, +/area/station/science/research) +"jgd" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/aft) +"jgg" = ( +/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/obj/machinery/door/airlock/maintenance{ + name = "Hangar Maintenance" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/central) +"jgy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible/layer2{ + dir = 4 + }, +/obj/structure/sign/warning/gas_mask/directional/east, +/turf/open/floor/iron/textured, +/area/station/science/ordnance) +"jgz" = ( +/obj/machinery/atmospherics/components/unary/passive_vent/layer2{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"jgD" = ( +/turf/closed/wall/r_wall, +/area/station/science/server) +"jgI" = ( +/obj/structure/disposalpipe/junction/yjunction{ + dir = 1 + }, +/turf/open/floor/iron/textured_large, +/area/station/hallway/primary/aft) +"jgN" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/turf/open/floor/iron/textured_large, +/area/station/engineering/main) +"jgY" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/space_heater, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer2{ + dir = 6 + }, +/turf/open/floor/iron/textured, +/area/station/hallway/primary/aft) +"jhn" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Garden" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/prison/garden) +"jhw" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/structure/closet/emcloset/wall{ + pixel_x = -32 + }, +/obj/effect/turf_decal/trimline/white/end{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/hallway/primary/aft) +"jhz" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/gloves/color/fyellow{ + pixel_y = 6 + }, +/obj/item/storage/toolbox/electrical, +/obj/structure/spider/stickyweb, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/electrical) +"jhD" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/warning, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/cargo/sorting) +"jhG" = ( +/obj/effect/turf_decal/siding/thinplating/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/floor/has_bulb, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"jhM" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/obj/effect/landmark/start/bitrunner, +/obj/machinery/light/floor/has_bulb, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/bitrunning/den) +"jhR" = ( +/obj/structure/flora/bush/grassy, +/obj/structure/flora/bush/flowers_yw, +/obj/structure/window/fulltile, +/turf/open/floor/grass, +/area/station/security/prison/garden) +"jhT" = ( +/obj/structure/chair/sofa/corner/maroon{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"jhU" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/poddoor/shutters{ + id = "prisonbridge"; + name = "Gulag Shuttle Space Bridge" + }, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/department/security/greater) +"jib" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/textured_edge, +/area/station/hallway/primary/aft) +"jir" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 9 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"jiu" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/grassy, +/obj/structure/flora/bush/flowers_br, +/turf/open/floor/grass, +/area/station/hallway/primary/central) +"jiB" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/chapel{ + dir = 10 + }, +/area/station/service/chapel) +"jiJ" = ( +/obj/item/storage/box/syringes, +/obj/item/storage/box/beakers{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/gun/syringe, +/obj/structure/table, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/machinery/door/window/left/directional/west{ + name = "Supply Storage"; + red_alert_access = 1; + req_access = list("medical") + }, +/obj/effect/turf_decal/trimline/brown/filled, +/obj/effect/turf_decal/trimline/brown/filled/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/mid_joiner, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/storage) +"jiR" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 6 + }, +/obj/effect/landmark/start/atmospheric_technician, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/textured_corner{ + dir = 8 + }, +/area/station/engineering/atmos/storage) +"jjf" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating/airless, +/area/station/medical/chemistry) +"jji" = ( +/obj/structure/sign/poster/contraband/crocin_pool/directional/south, +/obj/effect/spawner/liquids_spawner, +/turf/open/floor/lowered/iron/pool, +/area/station/common/pool) +"jjw" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/candle_box{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/fancy/candle_box, +/obj/item/chisel{ + pixel_y = 7 + }, +/obj/item/storage/dice{ + pixel_x = 16; + pixel_y = 1 + }, +/turf/open/floor/iron/grimy, +/area/station/service/library) +"jjO" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/conveyor_switch/oneway{ + dir = 8; + id = "cargoload"; + name = "Loading Conveyor" + }, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 6 + }, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) +"jjS" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/obj/machinery/power/shuttle_engine/heater{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/window/reinforced/plasma/spawner/directional/east, +/turf/open/floor/iron/textured, +/area/station/security/prison) +"jjY" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/atmos/hfr_room) +"jkb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 6 + }, +/turf/open/floor/iron, +/area/station/commons/storage/primary) +"jki" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/table, +/obj/item/toy/foamblade, +/obj/item/toy/gun, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/edge, +/area/station/commons/fitness/recreation) +"jko" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/turf/open/floor/plating, +/area/station/engineering/supermatter) +"jkp" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/tile/red/anticorner{ + dir = 1 + }, +/turf/open/floor/pod/dark, +/area/station/service/chapel/office) +"jkH" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/o2, +/obj/structure/window/reinforced/plasma/spawner/directional/west, +/obj/structure/window/reinforced/plasma/spawner/directional/north, +/obj/effect/turf_decal/tile/dark_blue/full, +/obj/effect/turf_decal/tile/dark_blue/full, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"jkI" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/turf/closed/wall/r_wall, +/area/station/maintenance/disposal/incinerator) +"jkQ" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/effect/turf_decal/tile/red/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/commons/lounge) +"jkT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/grimy, +/area/station/commons/dorms) +"jkV" = ( +/obj/structure/table, +/obj/item/clipboard{ + pixel_y = 3 + }, +/obj/item/folder/yellow{ + pixel_y = 4 + }, +/obj/item/pipe_dispenser, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"jkW" = ( +/obj/machinery/camera/motion/directional/west{ + c_tag = "Armoury - Exterior" + }, +/turf/open/space/basic, +/area/space/nearstation) +"jkZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"jlf" = ( +/obj/structure/railing, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/flowers_yw, +/obj/structure/ore_container/gutlunch_trough, +/turf/open/floor/grass, +/area/station/hallway/secondary/exit/departure_lounge) +"jlp" = ( +/obj/structure/cable, +/obj/structure/chair/stool/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/gateway) +"jlB" = ( +/turf/closed/wall, +/area/station/command/heads_quarters/nt_rep) +"jlD" = ( +/obj/machinery/ore_silo, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/station/ai_monitored/command/nuke_storage) +"jlK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/spawner/random/engineering/tracking_beacon, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"jlN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/corner{ + dir = 4 + }, +/area/station/commons/fitness/recreation/entertainment) +"jmw" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/turf/open/floor/iron/diagonal, +/area/station/hallway/secondary/exit/departure_lounge) +"jmM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port) +"jmN" = ( +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/item/reagent_containers/cup/glass/coffee{ + pixel_x = -3; + pixel_y = 9 + }, +/obj/item/reagent_containers/cup/rag, +/turf/open/floor/wood, +/area/station/hallway/secondary/entry) +"jmT" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/components/binary/valve/digital{ + dir = 8; + name = "Waste Release" + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/structure/sign/warning/secure_area/directional/west, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"jnc" = ( +/obj/machinery/atmospherics/components/unary/passive_vent{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"jnu" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/pen{ + pixel_y = 4 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/cargo/drone_bay) +"jnF" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/siding/green{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"jnJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/department/security/greater) +"jnK" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/cardboard, +/obj/effect/spawner/random/maintenance/four, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/storage) +"jnL" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white, +/area/station/security/medical) +"jnP" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/chair/sofa/bench, +/obj/effect/turf_decal/siding/green{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"jnR" = ( +/obj/structure/chair/stool/directional/west, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/theater) +"jnT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/aft) +"jnZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft) +"jog" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/aft/upper) +"joj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/textured, +/area/station/science/research/abandoned) +"jom" = ( +/obj/item/circuitboard/computer/operating, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/greater) +"jos" = ( +/obj/machinery/vending/coffee{ + default_price = 0; + extra_price = 0; + fair_market_price = 0; + name = "\improper Jim Norton's Quebecois Coffee" + }, +/obj/structure/noticeboard/directional/south, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/wood, +/area/station/hallway/secondary/entry) +"joy" = ( +/obj/machinery/conveyor{ + dir = 10; + id = "shuttletodelivery" + }, +/obj/structure/railing, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/iron/textured_large, +/area/station/cargo/sorting) +"joM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/departments/aisat/directional/south, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 6 + }, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/secondary/command) +"joP" = ( +/turf/closed/wall, +/area/station/maintenance/department/security/greater) +"joV" = ( +/obj/effect/turf_decal/vg_decals/department/bar, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"joZ" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/machinery/computer/station_alert{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/security/checkpoint/engineering) +"jpg" = ( +/obj/machinery/air_sensor/nitrogen_tank, +/turf/open/floor/engine/n2, +/area/station/engineering/atmos) +"jpv" = ( +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/airalarm/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"jpF" = ( +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"jpG" = ( +/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Ordnance Storage Maintenance" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/science/ordnance/storage) +"jpH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 6 + }, +/obj/structure/window/reinforced/spawner/directional/east{ + layer = 2.9; + pixel_x = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"jpN" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, +/obj/machinery/light/warm/directional/south, +/obj/machinery/camera/directional/south{ + c_tag = "Atmospherics - Project Room Side Entrance"; + name = "atmospherics camera" + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"jpP" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/storage) +"jpR" = ( +/turf/closed/wall, +/area/station/service/hydroponics/upper) +"jpW" = ( +/obj/structure/toilet{ + pixel_y = 8 + }, +/turf/open/floor/pod/light, +/area/station/service/chapel) +"jqc" = ( +/obj/machinery/camera/directional/east{ + c_tag = "Technology Storage - Secure"; + name = "engineering camera" + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/circuit/green, +/area/station/engineering/storage/tech) +"jqi" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/chair/stool/directional/east, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/solars/port/fore) +"jqk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/white/textured_corner{ + dir = 1 + }, +/area/station/hallway/primary/fore) +"jqn" = ( +/turf/closed/wall, +/area/station/maintenance/port/upper) +"jqH" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/medical/office) +"jqL" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/nova_decals/enclave/middle/right{ + color = "#52B4E9" + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/mid_joiner{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/command) +"jqM" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4; + name = "Air to External Air Ports" + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos/storage) +"jqO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/orange, +/area/station/command/heads_quarters/ce) +"jrj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/turf/open/floor/plating, +/area/station/engineering/supermatter) +"jrm" = ( +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/lobby) +"jrn" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/carpet/cyan, +/area/station/commons/dorms) +"jrq" = ( +/obj/structure/window/reinforced/spawner/directional/west{ + layer = 2.9 + }, +/turf/open/floor/carpet, +/area/station/security/courtroom) +"jrs" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/cup/bottle/morphine{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/item/reagent_containers/cup/bottle/morphine{ + pixel_x = -7; + pixel_y = 7 + }, +/obj/item/reagent_containers/cup/bottle/chloralhydrate{ + pixel_x = -7 + }, +/obj/item/reagent_containers/cup/bottle/facid{ + pixel_x = 7 + }, +/obj/item/storage/backpack/duffelbag/sec/surgery{ + pixel_y = 5 + }, +/obj/machinery/button/door/directional/north{ + id = "justiceblast"; + name = "Justice Shutters Control"; + pixel_x = -6; + req_access = list("brig_entrance") + }, +/obj/machinery/button/door/directional/north{ + id = "justicechamber"; + name = "Justice Chamber Control"; + pixel_x = -6; + pixel_y = 36; + req_access = list("armory") + }, +/obj/machinery/button/ignition{ + id = "justicespark"; + pixel_x = 8; + pixel_y = 24; + req_access = list("brig_entrance") + }, +/obj/machinery/button/flasher{ + id = "justiceflash"; + pixel_x = 8; + pixel_y = 36; + req_access = list("brig_entrance") + }, +/obj/effect/turf_decal/tile/dark_red/fourcorners, +/turf/open/floor/iron/dark/textured, +/area/station/security/execution/education) +"jru" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/hydroponics) +"jrv" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/turf/open/floor/plating, +/area/station/maintenance/disposal/incinerator) +"jrF" = ( +/turf/closed/wall, +/area/station/command/gateway) +"jrP" = ( +/obj/effect/spawner/random/trash/grime, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/lesser) +"jrQ" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/security/holding_cell) +"jrV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/upper) +"jrX" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/textured_edge, +/area/station/hallway/primary/fore) +"jsb" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/textured_large, +/area/station/command/cc_dock) +"jsm" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/textured_edge, +/area/station/security/brig) +"jsn" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/right, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/machinery/camera/directional/north{ + c_tag = "Security - Holding Cell" + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/security/holding_cell) +"jss" = ( +/turf/closed/wall, +/area/station/hallway/secondary/command) +"jsz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/delivery, +/obj/item/airlock_painter/decal, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_large, +/area/station/cargo/warehouse) +"jsE" = ( +/obj/structure/holosign/barrier, +/obj/structure/sign/departments/vault/directional/east, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"jtc" = ( +/turf/open/floor/carpet, +/area/station/commons/dorms) +"jte" = ( +/turf/open/floor/plating, +/area/station/maintenance/department/engine/atmos) +"jtf" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/large, +/area/station/hallway/primary/central/aft) +"jtq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"jty" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/siding/red{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/security/office) +"jtE" = ( +/obj/effect/turf_decal/trimline/dark_red/filled/corner{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/textured_large, +/area/station/hallway/secondary/construction) +"jtG" = ( +/obj/structure/flora/ocean/glowweed, +/obj/effect/spawner/liquids_spawner{ + reagent_list = list(/datum/reagent/water=600) + }, +/turf/open/misc/asteroid, +/area/station/medical/medbay/lobby) +"jtH" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Morgue Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/morgue, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical/morgue) +"jtJ" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 9 + }, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/main) +"jtK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/cargo/storage) +"jtO" = ( +/obj/structure/rack, +/obj/item/storage/box, +/obj/effect/turf_decal/bot, +/obj/item/radio/off{ + pixel_x = 6 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/lobby) +"jtX" = ( +/obj/machinery/computer/station_alert, +/obj/structure/sign/nanotrasen{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/yellow/half{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"jtY" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 9; + height = 25; + name = "DeltaStation emergency evac bay"; + shuttle_id = "emergency_home"; + width = 29 + }, +/turf/open/space/basic, +/area/space/nearstation) +"jul" = ( +/obj/effect/landmark/start/security_officer, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/lockers) +"juw" = ( +/obj/effect/turf_decal/trimline/green/filled/warning, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/commons/fitness/recreation) +"juC" = ( +/obj/structure/dresser, +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/station/commons/dorms) +"juG" = ( +/obj/structure/rack, +/obj/item/circuitboard/machine/exoscanner{ + pixel_y = 3 + }, +/obj/item/circuitboard/machine/exoscanner, +/obj/item/circuitboard/machine/exoscanner{ + pixel_y = -3 + }, +/obj/machinery/requests_console/auto_name/directional/north, +/obj/structure/window/spawner/directional/west, +/obj/effect/turf_decal/trimline/brown/filled, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron/textured, +/area/station/cargo/drone_bay) +"juO" = ( +/obj/effect/spawner/random/maintenance/two, +/obj/item/clothing/head/cone, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine/atmos) +"juQ" = ( +/turf/open/floor/iron/stairs/medium{ + dir = 4 + }, +/area/station/science/research) +"juR" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/green/warning{ + dir = 1 + }, +/turf/open/floor/iron/white/side, +/area/station/science/research) +"jvd" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/main) +"jvf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/chair/sofa/corp/left{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/medical/break_room) +"jvg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/flasher/directional/east{ + id = "AI"; + pixel_x = 23; + pixel_y = 23 + }, +/obj/machinery/camera/motion/directional/east{ + c_tag = "AI - Upload"; + name = "motion-sensitive ai camera"; + network = list("aiupload") + }, +/obj/item/kirbyplants/photosynthetic, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/ai_upload) +"jvr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/spawner/random/entertainment/money, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/wood, +/area/station/maintenance/department/engine/atmos) +"jvs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/ore_box, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_large, +/area/station/hallway/primary/aft) +"jvu" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/primary/central/aft) +"jvv" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/station_map/engineering/directional/north, +/turf/open/floor/iron/edge, +/area/station/hallway/primary/central) +"jvx" = ( +/obj/structure/table/wood, +/obj/item/food/breadslice/plain, +/obj/item/food/breadslice/plain{ + pixel_y = 4 + }, +/obj/item/food/breadslice/plain{ + pixel_y = 8 + }, +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"jvB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/machinery/light/small/directional/west, +/obj/item/stack/cable_coil{ + pixel_y = 8 + }, +/obj/item/stack/rods/ten{ + pixel_y = 4 + }, +/obj/item/stack/sheet/mineral/plasma{ + amount = 10 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/fore) +"jvC" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/brown/filled/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/mid_joiner, +/obj/effect/turf_decal/bot, +/obj/machinery/computer/department_orders/service, +/turf/open/floor/iron/textured_large, +/area/station/hallway/secondary/service) +"jvJ" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/machinery/duct, +/obj/structure/closet/firecloset/wall{ + pixel_x = 32 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/white/end{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 8 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/science/research) +"jwq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/belt/utility, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/remains/human, +/obj/structure/cable, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/electrical) +"jwy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/turf/open/floor/plating, +/area/station/engineering/supermatter) +"jwC" = ( +/obj/machinery/power/shuttle_engine/heater, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/aft) +"jwE" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Toilets Maintenance" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/lesser) +"jwV" = ( +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/medical/central) +"jxb" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/textured_corner{ + dir = 4 + }, +/area/station/cargo/storage) +"jxh" = ( +/obj/structure/table/wood/fancy, +/obj/item/flashlight/flare/candle{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/item/flashlight/flare/candle{ + pixel_x = -8; + pixel_y = 6 + }, +/obj/item/storage/box/matches{ + pixel_x = -3; + pixel_y = 8 + }, +/obj/item/flashlight/flare/candle, +/turf/open/floor/carpet/stellar, +/area/station/service/chapel/funeral) +"jxp" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/textured_large, +/area/station/cargo/warehouse) +"jxu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/any/command/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Command Hallway Maintenance" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/upper) +"jxv" = ( +/obj/machinery/door/airlock/vault{ + name = "Vault Door" + }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/vault, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/landmark/navigate_destination/vault, +/turf/open/floor/engine, +/area/station/ai_monitored/command/nuke_storage) +"jya" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/greater) +"jyD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured_large, +/area/station/cargo/storage) +"jyF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/green/visible{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"jyL" = ( +/obj/machinery/conveyor/inverted{ + dir = 9; + id = "garbage" + }, +/obj/structure/window/spawner/directional/south, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/disposal) +"jyT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/greater) +"jzf" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, +/obj/effect/mapping_helpers/airlock/unres, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Research Maintenance" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/fore) +"jzh" = ( +/obj/structure/trash_pile, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/central) +"jzi" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/science/research) +"jzm" = ( +/obj/machinery/growing/tray, +/obj/machinery/camera/directional/north{ + c_tag = "Prison - Garden"; + network = list("ss13","prison") + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/grass, +/area/station/security/prison/garden) +"jzo" = ( +/turf/open/floor/iron/stairs/medium{ + dir = 8 + }, +/area/station/medical/medbay/central) +"jzH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"jzK" = ( +/obj/structure/table/wood, +/obj/machinery/light/warm/directional/west, +/obj/item/folder, +/obj/item/razor, +/turf/open/floor/carpet/cyan, +/area/station/commons/dorms) +"jzM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/moisture_trap, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/lesser) +"jzN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/kitchen{ + dir = 1 + }, +/area/station/security/prison/work) +"jzQ" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 6 + }, +/obj/machinery/newscaster/directional/east, +/obj/machinery/composters, +/turf/open/floor/iron, +/area/station/service/hydroponics) +"jzS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/commons/fitness/recreation/entertainment) +"jzV" = ( +/obj/structure/chair/sofa/left/brown{ + dir = 4 + }, +/obj/structure/sign/warning/yes_smoking/circle/directional/west, +/turf/open/floor/carpet, +/area/station/commons/dorms) +"jAe" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central) +"jAu" = ( +/obj/structure/table/reinforced, +/obj/structure/window/spawner/directional/west, +/obj/machinery/chem_dispenser/drinks{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/kitchen/abandoned) +"jAy" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/corner{ + dir = 4 + }, +/area/station/hallway/primary/central) +"jAD" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/turf_decal/bot, +/obj/machinery/biogenerator, +/obj/effect/turf_decal/siding/green, +/turf/open/floor/iron/textured, +/area/station/service/hydroponics/garden/abandoned) +"jAK" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/components/binary/pump, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/atmos) +"jAM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance/two, +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/aft) +"jBm" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/machinery/light_switch/directional/west, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/main) +"jBq" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/exodrone_launcher, +/obj/item/exodrone, +/obj/machinery/door/window/left/directional/south{ + name = "Drone Launchsite" + }, +/turf/open/floor/engine, +/area/station/cargo/drone_bay) +"jBA" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/airlock_painter/decal, +/obj/item/stack/cable_coil, +/obj/item/toner, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/iron/textured, +/area/station/engineering/main) +"jBF" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/vending/wardrobe/atmos_wardrobe, +/obj/item/toy/figure/atmos{ + pixel_y = 17 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos/storage) +"jBH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/trash_pile, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/upper) +"jBK" = ( +/obj/machinery/power/shuttle_engine/heater, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/obj/structure/window/reinforced/plasma/spawner/directional/west, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/lesser) +"jBM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/textured_large, +/area/station/cargo/miningdock) +"jBP" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/common/night_club) +"jBV" = ( +/obj/machinery/growing/tray, +/obj/structure/window/spawner/directional/west{ + pixel_x = -4 + }, +/obj/item/radio/intercom/directional/north, +/obj/machinery/camera/directional/north{ + c_tag = "Dormitories - Garden"; + name = "dormitories camera" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/hydroponics/garden) +"jBX" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/obj/machinery/button/door/directional/west{ + id = "Cabin3"; + name = "Dormitory Door Lock"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/carpet, +/area/station/commons/dorms) +"jBY" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/machinery/porta_turret/ai, +/obj/effect/turf_decal/stripes/white/box, +/obj/effect/turf_decal/bot_red, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/ai_upload) +"jCo" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos/hfr_room) +"jCq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"jCv" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8 + }, +/obj/machinery/airlock_sensor/incinerator_ordmix{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/mixingchamber_access, +/obj/effect/mapping_helpers/airalarm/link{ + chamber_id = "ordnanceburn" + }, +/obj/effect/mapping_helpers/airalarm/tlv_no_checks, +/turf/open/floor/engine, +/area/station/science/ordnance/burnchamber) +"jCA" = ( +/obj/structure/chair/wood, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/effect/landmark/start/mime, +/turf/open/floor/iron/herringbone, +/area/station/service/theater) +"jCE" = ( +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/wood, +/area/station/commons/dorms) +"jCH" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/effect/turf_decal/trimline/green/line{ + dir = 1 + }, +/obj/machinery/requests_console/directional/south{ + department = "Hydroponics"; + name = "Hydroponics Requests Console" + }, +/obj/effect/turf_decal/trimline/green/mid_joiner{ + dir = 1 + }, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/service/hydroponics) +"jCW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/airlock/security/glass{ + id_tag = "innerbrig"; + name = "Equipment Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/lockers) +"jDe" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/grassy, +/obj/structure/flora/bush/generic, +/obj/structure/flora/bush/flowers_pp, +/obj/structure/window/fulltile, +/turf/open/floor/grass, +/area/station/security/prison/garden) +"jDh" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/auxlab/firing_range) +"jDi" = ( +/obj/effect/spawner/random/engineering/atmospherics_portable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/lesser) +"jDm" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 9 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/obj/structure/closet/emcloset/wall{ + pixel_x = -32 + }, +/obj/effect/turf_decal/trimline/white/end{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"jDw" = ( +/obj/structure/sink/directional/east, +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/light/small/directional/east, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/iron/freezer, +/area/station/commons/dorms) +"jDy" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"jDA" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_corner{ + dir = 4 + }, +/area/station/science/research) +"jDE" = ( +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_x = 8 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_y = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/window/brigdoor/right/directional/east{ + name = "Command Storage"; + req_access = list("eva") + }, +/obj/structure/rack/shelf, +/obj/structure/sign/nanotrasen{ + pixel_x = -32 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/command/storage/eva) +"jDI" = ( +/obj/structure/chair/sofa/corp/left{ + color = "#DE3A3A"; + dir = 4 + }, +/turf/open/floor/iron/cafeteria, +/area/station/service/cafeteria) +"jDS" = ( +/obj/effect/spawner/random/trash/caution_sign, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/greater) +"jDY" = ( +/obj/item/radio/intercom/directional/north, +/obj/machinery/suit_storage_unit/ce, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/ce) +"jEb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/lesser) +"jEj" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/bot, +/obj/machinery/door/window/left/directional/west{ + name = "Engineering Deliveries"; + req_access = list("engineering") + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/main) +"jEk" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/holding_cell) +"jEy" = ( +/obj/structure/table/wood, +/obj/machinery/status_display/ai/directional/north, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/pen{ + pixel_y = 4 + }, +/obj/item/clothing/glasses/sunglasses/big{ + pixel_y = -11 + }, +/obj/item/clothing/glasses/sunglasses{ + pixel_y = -5 + }, +/turf/open/floor/iron/grimy, +/area/station/service/lawoffice) +"jEA" = ( +/obj/machinery/camera/directional/west{ + c_tag = "AI Chamber - Port"; + network = list("aicore") + }, +/obj/structure/showcase/cyborg/old{ + dir = 4; + pixel_x = -9; + pixel_y = 2 + }, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "AI Core shutters"; + name = "AI Core Shutters" + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/ai) +"jEG" = ( +/obj/machinery/power/shuttle_engine/propulsion, +/obj/structure/window/reinforced/spawner/directional/east{ + layer = 2.9 + }, +/turf/open/floor/plating, +/area/space/nearstation) +"jEK" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/bluespace_vendor/directional/south, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/aft) +"jEL" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/structure/closet/radiation, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"jEP" = ( +/obj/effect/turf_decal/weather/snow, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/service/kitchen/coldroom) +"jET" = ( +/obj/structure/table/reinforced, +/obj/machinery/camera/directional/west{ + c_tag = "Medbay - Morgue"; + dir = 2; + name = "medical camera"; + network = list("ss13","medical") + }, +/obj/item/storage/box/bodybags{ + pixel_y = 3 + }, +/obj/item/pen, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"jEV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/primary/central/aft) +"jFh" = ( +/obj/structure/chair/sofa/right/maroon{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"jFt" = ( +/obj/structure/railing/wood{ + dir = 8 + }, +/obj/structure/machine/assembly_bench, +/turf/open/floor/wood/large, +/area/station/service/barber) +"jFA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/engine, +/area/station/security/range) +"jFH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/chair, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/crew_quarters/bar) +"jFJ" = ( +/obj/structure/bookcase/random/reference, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/light/warm/directional/east, +/turf/open/floor/wood/large, +/area/station/medical/psychology) +"jFM" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/white/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/corner, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"jFN" = ( +/obj/structure/table/glass, +/obj/machinery/computer/records/medical/laptop{ + dir = 4; + pixel_y = 3 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/security/medical) +"jGc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/turf/open/floor/iron/white/textured_corner, +/area/station/medical/medbay/central) +"jGf" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/machinery/duct, +/obj/structure/disposalpipe/sorting/mail{ + name = "CMO's Junction" + }, +/obj/effect/landmark/event_spawn, +/obj/effect/mapping_helpers/mail_sorting/medbay/cmo_office, +/turf/open/floor/iron/white/textured_corner{ + dir = 4 + }, +/area/station/medical/medbay/central) +"jGl" = ( +/obj/effect/turf_decal/tile/dark/half, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/growing/tray, +/turf/open/floor/iron/half, +/area/station/service/hydroponics) +"jGF" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/wood/large, +/area/station/medical/psychology) +"jGI" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/science/auxlab) +"jGM" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/break_room) +"jGT" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/grimy, +/area/station/service/library) +"jGY" = ( +/obj/structure/rack, +/obj/item/reagent_containers/spray/plantbgone{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/reagent_containers/spray/plantbgone{ + pixel_x = -1 + }, +/obj/item/grenade/chem_grenade/antiweed{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/machinery/light_switch/directional/east, +/obj/effect/turf_decal/bot, +/obj/item/reagent_containers/spray/plantbgone{ + pixel_x = 7 + }, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/service/hydroponics) +"jHb" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/exit/departure_lounge) +"jHc" = ( +/obj/structure/weightmachine, +/obj/effect/turf_decal/tile/yellow/full, +/obj/effect/turf_decal/bot, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/white/textured_large, +/area/station/commons/fitness/recreation/entertainment) +"jHd" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/disposaloutlet{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/disposal) +"jHi" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/corner{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"jHs" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/nova_decals/enclave/bottom/left{ + color = "#52B4E9" + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/command) +"jHx" = ( +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured, +/area/station/hallway/primary/aft) +"jHI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/neutral/filled/line, +/obj/effect/turf_decal/trimline/neutral/filled/line, +/obj/effect/turf_decal/trimline/neutral/filled/line, +/obj/machinery/digital_clock/directional/south, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/hallway/secondary/command) +"jHT" = ( +/obj/machinery/smartfridge/extract/preloaded, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/white, +/area/station/science/xenobiology) +"jHV" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"jHZ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light/warm/directional/west, +/obj/effect/landmark/start/hangover, +/obj/machinery/station_map/engineering/directional/west, +/turf/open/floor/iron/stairs/medium, +/area/station/hallway/secondary/command) +"jIc" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/oil, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/blobstart, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/fore) +"jIe" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/aft) +"jIs" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L5" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/large, +/area/station/hallway/primary/fore) +"jIt" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"jIT" = ( +/obj/machinery/artifact_zapper{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/science/explab) +"jJk" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/engineering/storage/tech) +"jJr" = ( +/obj/machinery/suit_storage_unit/security, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/red/diagonal_centre, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/office) +"jJs" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/telecomms/processor/preset_four, +/turf/open/floor/circuit/telecomms/server, +/area/station/tcommsat/server) +"jJz" = ( +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/obj/structure/sign/warning/no_smoking/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/white/diagonal, +/area/station/medical/medbay/central) +"jJE" = ( +/obj/structure/chair/sofa/bench/left, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/entry) +"jJH" = ( +/obj/structure/cable, +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"jJZ" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Treatment Center Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/central) +"jKg" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/science/ordnance/testlab) +"jKi" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/station/service/library/abandoned) +"jKn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/spawner/random/structure/steam_vent, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/engine/atmos) +"jKp" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"jKr" = ( +/obj/machinery/firealarm/directional/south{ + pixel_x = -5 + }, +/turf/open/floor/carpet/neon/simple/pink, +/area/station/science/xenobiology) +"jKu" = ( +/obj/structure/trash_pile, +/turf/open/floor/plating, +/area/station/maintenance/department/engine/atmos/lesser) +"jKx" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/main) +"jKy" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 10 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/execution/education) +"jKG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/poster/official/random/directional/south, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/hallway/secondary/command) +"jKQ" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/power_room) +"jKT" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/closet/crate, +/obj/effect/spawner/random/maintenance/six, +/turf/open/floor/iron/textured_large, +/area/station/cargo/warehouse) +"jKW" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/station/commons/vacant_room/office) +"jLi" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/structure/bed/roller, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/medical/medbay/lobby) +"jLt" = ( +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/white/textured_large, +/area/station/science/research) +"jLL" = ( +/obj/structure/table, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/entry) +"jLQ" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 9 + }, +/obj/machinery/light_switch/directional/west, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/iron/textured, +/area/station/cargo/office) +"jLS" = ( +/obj/structure/trash_pile, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"jMc" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/cargo/storage) +"jMf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/newscaster/directional/west, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/wood, +/area/station/maintenance/department/science/xenobiology) +"jMh" = ( +/obj/structure/closet/crate, +/obj/item/stack/license_plates/empty/fifty, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/bot, +/obj/effect/spawner/random/contraband/prison, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/work) +"jMk" = ( +/obj/structure/spider/stickyweb, +/obj/structure/table, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/electrical) +"jMp" = ( +/obj/effect/turf_decal/siding/thinplating/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"jMB" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 9 + }, +/obj/structure/closet/secure_closet/personal, +/obj/structure/sign/gym{ + pixel_y = 32 + }, +/obj/machinery/firealarm/directional/west, +/obj/effect/landmark/start/hangover/closet, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation/entertainment) +"jMH" = ( +/obj/effect/landmark/start/scientist, +/turf/open/floor/iron/white/textured_large, +/area/station/science/xenobiology) +"jMI" = ( +/obj/structure/girder/displaced, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/science/xenobiology) +"jML" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/white/textured_corner{ + dir = 1 + }, +/area/station/medical/medbay/lobby) +"jMM" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"jMQ" = ( +/obj/structure/table, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/item/clothing/mask/gas, +/obj/item/stock_parts/cell/high, +/obj/item/radio/intercom/directional/south, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer2{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/aft) +"jMY" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/turf/open/floor/iron/textured_large, +/area/station/hallway/primary/aft) +"jMZ" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/closet/emcloset, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/pod/dark, +/area/station/service/chapel/funeral) +"jNa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/two, +/obj/effect/spawner/random/engineering/tool, +/obj/effect/spawner/random/engineering/flashlight, +/obj/item/stack/sheet/cardboard, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine) +"jNy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/carpet/blue, +/area/station/command/bridge) +"jNA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/hallway/secondary/construction) +"jOa" = ( +/obj/effect/turf_decal/trimline/dark_red/arrow_cw{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/table, +/obj/item/storage/medkit/emergency, +/obj/item/storage/dice, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"jOc" = ( +/obj/structure/sign/warning/electric_shock/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"jOd" = ( +/turf/open/floor/stone, +/area/station/service/barber) +"jOe" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/iron/textured_large, +/area/station/command/cc_dock) +"jOm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/iron/grimy, +/area/station/commons/vacant_room/office) +"jOs" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/hallway/secondary/command) +"jOv" = ( +/obj/structure/table, +/obj/item/radio{ + desc = "An old handheld radio. You could use it, if you really wanted to."; + icon_state = "radio"; + name = "old radio" + }, +/obj/machinery/light/warm/directional/south, +/turf/open/floor/iron/grimy, +/area/station/commons/lounge) +"jOF" = ( +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/mixingchamber_access, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airalarm/link{ + chamber_id = "ordnancefreezer" + }, +/obj/effect/mapping_helpers/airalarm/tlv_no_checks, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/science/ordnance) +"jOG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/grimy, +/area/station/service/chapel) +"jOJ" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/lights/mixed{ + pixel_y = 3 + }, +/obj/item/clothing/gloves/color/fyellow{ + pixel_y = 3 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/trimline/green/filled/line, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/commons/storage/primary) +"jOT" = ( +/obj/structure/sign/painting/library{ + pixel_y = 32 + }, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/box, +/turf/open/floor/wood/tile, +/area/station/service/library) +"jOZ" = ( +/obj/machinery/modular_computer/preset/engineering{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/engineering/power_room) +"jPc" = ( +/obj/structure/cable, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/disposal/incinerator) +"jPt" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/entry) +"jPD" = ( +/obj/machinery/air_sensor/carbon_tank, +/turf/open/floor/engine/co2, +/area/station/engineering/atmos) +"jPE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/dryer{ + dir = 4; + pixel_x = -6; + pixel_y = -6 + }, +/turf/open/floor/iron/freezer, +/area/station/command/heads_quarters/captain/private) +"jPN" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison/garden) +"jPU" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/textured_corner{ + dir = 8 + }, +/area/station/medical/medbay/lobby) +"jQm" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/white/textured_corner{ + dir = 4 + }, +/area/station/medical/medbay/lobby) +"jQq" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/effect/turf_decal/bot, +/obj/item/clothing/gloves/color/yellow, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/main) +"jQE" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 9 + }, +/turf/open/floor/iron/white, +/area/station/science/lab) +"jQL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/effect/turf_decal/stripes/line, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/structure/cable, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"jQM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/service/barber) +"jQR" = ( +/obj/machinery/door/window/left/directional/south{ + name = "Research Test Chamber"; + req_access = list("science") + }, +/turf/open/floor/engine, +/area/station/science/explab) +"jQS" = ( +/obj/item/radio/intercom/directional/south, +/obj/structure/chair/office{ + color = "#D381C9"; + dir = 1 + }, +/turf/open/floor/carpet/purple, +/area/station/command/heads_quarters/rd) +"jQV" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/west, +/obj/machinery/power/shuttle_engine/heater{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/department/science/xenobiology) +"jRc" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/stairs/medium, +/area/station/cargo/storage) +"jRj" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/grass, +/area/station/medical/treatment_center) +"jRN" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/white/textured_edge, +/area/station/science/xenobiology) +"jRP" = ( +/obj/machinery/light/cold/directional/north, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"jSl" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/trimline/brown/filled/mid_joiner, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/brown/filled/mid_joiner{ + dir = 8 + }, +/obj/machinery/computer/department_orders/science, +/turf/open/floor/iron/textured_large, +/area/station/science/auxlab) +"jSm" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/turf/open/space/basic, +/area/space/nearstation) +"jSr" = ( +/obj/machinery/corral_corner{ + mapping_id = "2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/light/neon_lining{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"jSx" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/break_room) +"jSB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/eva_shed/port) +"jSC" = ( +/turf/closed/wall, +/area/station/service/kitchen) +"jSP" = ( +/obj/structure/chair/stool/directional/west, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/commons/fitness/recreation) +"jSS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/wood, +/area/station/commons/dorms) +"jTg" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/arrows{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge, +/area/station/cargo/sorting) +"jTi" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"jTn" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"jTu" = ( +/obj/effect/turf_decal/stripes/red/line{ + dir = 6 + }, +/turf/open/floor/engine/vacuum, +/area/station/science/ordnance/burnchamber) +"jTv" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/closet/firecloset/wall{ + pixel_x = 32 + }, +/obj/effect/turf_decal/trimline/white/end{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 8 + }, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/primary/central/aft) +"jTI" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/chair/stool/directional/west, +/turf/open/floor/wood/large, +/area/station/commons/fitness/recreation) +"jTQ" = ( +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/cargo/storage) +"jUa" = ( +/mob/living/carbon/human/species/monkey/punpun, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, +/area/station/service/bar) +"jUs" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/command/gateway) +"jUZ" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/hallway/secondary/command) +"jVf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/machinery/airalarm/directional/west, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/mess) +"jVp" = ( +/turf/open/floor/iron/textured_large, +/area/station/science/ordnance/testlab) +"jVq" = ( +/obj/machinery/modular_computer/preset/command, +/obj/machinery/status_display/ai/directional/north, +/obj/effect/turf_decal/bot, +/turf/open/floor/carpet/cyan, +/area/station/command/heads_quarters/blueshield) +"jVx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 5 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/execution/education) +"jVD" = ( +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/central) +"jVE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/department/medical) +"jVG" = ( +/obj/machinery/computer/security/qm{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/sign/calendar/directional/west, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/qm) +"jVW" = ( +/obj/structure/table, +/turf/open/floor/iron/cafeteria, +/area/station/service/cafeteria) +"jWg" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 6 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"jWo" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 8 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"jWq" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/modular_computer/preset/engineering{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/security/checkpoint/engineering) +"jWK" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"jWQ" = ( +/obj/structure/window/reinforced/spawner/directional/east{ + layer = 2.9 + }, +/turf/open/floor/pod/dark, +/area/station/service/chapel/funeral) +"jWS" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/storage) +"jWW" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/bed/dogbed{ + anchored = 1; + name = "Walter's bed" + }, +/mob/living/basic/pet/dog/dobermann/walter, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/blueshield) +"jXc" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/chair/sofa/corp/left{ + dir = 8; + pixel_x = 7 + }, +/obj/structure/sign/poster/contraband/borg_fancy_2/directional/south, +/turf/open/floor/wood/parquet, +/area/station/common/night_club) +"jXo" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/science/auxlab/firing_range) +"jXw" = ( +/obj/item/wrench, +/obj/item/stack/sheet/glass{ + amount = 30 + }, +/obj/item/stack/sheet/iron{ + amount = 30 + }, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/structure/closet, +/obj/item/vending_refill/cigarette, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/bot, +/turf/open/floor/wood, +/area/station/service/bar) +"jXC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/light/floor/has_bulb, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_large, +/area/station/command/cc_dock) +"jXE" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/computer/security{ + dir = 4 + }, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/security/checkpoint/customs) +"jXN" = ( +/obj/machinery/computer/exodrone_control_console{ + dir = 1 + }, +/obj/machinery/newscaster/directional/south, +/obj/effect/turf_decal/trimline/brown/filled/line, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/cargo/drone_bay) +"jXS" = ( +/obj/effect/turf_decal/trimline/blue/line, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/mid_joiner, +/obj/effect/turf_decal/trimline/blue/mid_joiner{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/prison) +"jXW" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/station/maintenance/department/engine/atmos) +"jXZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet, +/area/station/security/courtroom) +"jYe" = ( +/obj/structure/girder/displaced, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/fore) +"jYk" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing, +/turf/open/floor/iron/textured, +/area/station/command/cc_dock) +"jYr" = ( +/obj/effect/turf_decal/siding/green/corner{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"jYs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light_switch/directional/west{ + pixel_x = -23 + }, +/obj/structure/chair/comfy/brown{ + buildstackamount = 0; + color = "#DE3A3A"; + dir = 1 + }, +/turf/open/floor/carpet/royalblack, +/area/station/command/heads_quarters/hos) +"jYv" = ( +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/prison) +"jYD" = ( +/obj/structure/cable, +/obj/machinery/power/terminal, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"jYI" = ( +/obj/structure/water_source/puddle{ + pixel_y = -16 + }, +/obj/structure/flora/bush/reed{ + pixel_y = -8 + }, +/mob/living/carbon/human/species/monkey, +/turf/open/floor/grass, +/area/station/science/genetics) +"jYQ" = ( +/obj/structure/railing, +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall12"; + location = "hall11" + }, +/turf/open/floor/iron/half, +/area/station/hallway/primary/central) +"jYS" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/item/defibrillator/loaded, +/obj/item/clothing/gloves/latex/nitrile, +/obj/item/clothing/gloves/latex/nitrile, +/obj/item/storage/belt/medical{ + pixel_y = 3 + }, +/obj/item/storage/belt/medical{ + pixel_y = 3 + }, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/medical/storage) +"jYT" = ( +/obj/effect/turf_decal/bot/left, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos/hfr_room) +"jZq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron/textured_large, +/area/station/cargo/miningdock) +"jZS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/green/arrow_ccw, +/obj/machinery/firealarm/directional/south, +/obj/item/kirbyplants/random, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/small, +/area/station/commons/dorms) +"kaf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 10 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/purple/filled/warning, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/science/ordnance/office) +"kam" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/storage) +"kaN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/central) +"kaU" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"kaX" = ( +/obj/structure/table, +/obj/item/reagent_containers/cup/glass/bottle/juice/orangejuice{ + desc = "An emerald flask, from the Keeper's soul. High in vitamins!"; + name = "estus flask"; + pixel_y = 4 + }, +/turf/open/floor/iron/grimy, +/area/station/commons/lounge) +"kaY" = ( +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ + dir = 4 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"kbb" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/ears/earmuffs{ + pixel_y = 7 + }, +/obj/item/gun/energy/laser/practice, +/obj/item/clothing/glasses/sunglasses{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/structure/window/reinforced/spawner/directional/east{ + layer = 2.9; + pixel_x = 4 + }, +/turf/open/floor/engine, +/area/station/security/range) +"kbc" = ( +/obj/effect/turf_decal/trimline/dark_red/warning, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central) +"kbf" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/turf/open/floor/iron/textured_corner{ + dir = 4 + }, +/area/station/engineering/storage) +"kbj" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/camera/directional/east{ + c_tag = "Atmospherics - Ports"; + name = "atmospherics camera" + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/atmos) +"kbv" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/status_display/evac/directional/south, +/obj/machinery/light/warm/directional/south, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/atmos/pumproom) +"kbw" = ( +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Cargo Bay Maintenance" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/cargo/storage) +"kbD" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/aft) +"kbK" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/space/basic, +/area/space/nearstation) +"kbU" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 10 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"kbV" = ( +/obj/structure/closet/toolcloset, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 1 + }, +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_edge, +/area/station/hallway/secondary/construction) +"kca" = ( +/obj/structure/dresser, +/obj/structure/mirror/directional/north, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/wood, +/area/station/maintenance/department/engine/atmos) +"kch" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/engine/atmos/lesser) +"kcD" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/medical/break_room) +"kcP" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/chemistry) +"kcW" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/turf/open/floor/wood, +/area/station/service/library/abandoned) +"kdd" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/firecloset, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/supermatter/room) +"kde" = ( +/obj/structure/window/reinforced/spawner/directional/east{ + layer = 2.9 + }, +/obj/machinery/modular_computer/preset/id{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/carpet/purple, +/area/station/command/heads_quarters/rd) +"kdk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 4 + }, +/obj/machinery/duct, +/obj/effect/turf_decal/trimline/blue/mid_joiner{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/medical/storage) +"kdn" = ( +/obj/item/stack/sheet/iron/five, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/lesser) +"kdF" = ( +/obj/machinery/newscaster/directional/north, +/turf/open/floor/carpet/purple, +/area/station/common/night_club) +"kdK" = ( +/obj/structure/railing, +/obj/effect/spawner/liquids_spawner, +/turf/open/floor/lowered/iron/pool, +/area/station/security/prison) +"kdN" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/computer/security{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/warden) +"kek" = ( +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/edge, +/area/station/hallway/primary/fore) +"keF" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/fore) +"keG" = ( +/obj/machinery/conveyor{ + dir = 5; + id = "garbage" + }, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/disposal) +"keN" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/textured, +/area/station/maintenance/solars/port/fore) +"keO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/poddoor/massdriver_ordnance, +/obj/structure/fans/tiny, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/station/science/ordnance/testlab) +"keP" = ( +/obj/machinery/status_display/evac, +/turf/closed/wall, +/area/station/cargo/lobby) +"kfd" = ( +/obj/effect/turf_decal/trimline/green/filled/warning, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/commons/storage/primary) +"kfu" = ( +/obj/structure/table/wood/poker, +/obj/item/storage/dice, +/turf/open/floor/iron/grimy, +/area/station/commons/lounge) +"kfx" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/teleporter) +"kfC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/security/prison) +"kfI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/hallway/secondary/command) +"kfJ" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Medical Storage Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/machinery/duct, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical) +"kgb" = ( +/obj/structure/window/reinforced/spawner/directional/west{ + layer = 2.9 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 10 + }, +/obj/machinery/biomass_recycler, +/obj/item/stack/biomass, +/obj/item/stack/biomass, +/obj/item/stack/biomass, +/obj/item/stack/biomass, +/obj/item/stack/biomass, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/science/xenobiology) +"kgj" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/medical/medbay/lobby) +"kgk" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/obj/structure/table/reinforced/rglass, +/obj/machinery/light/cold/directional/east, +/obj/item/clothing/gloves/latex, +/obj/item/clothing/gloves/latex, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science{ + pixel_y = 3 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/freezer, +/area/station/medical/pharmacy) +"kgl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/plasma_output{ + dir = 4 + }, +/turf/open/floor/engine/plasma, +/area/station/engineering/atmos) +"kgu" = ( +/obj/structure/showcase/cyborg/old{ + dir = 4; + pixel_x = -9; + pixel_y = 2 + }, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/ai) +"kgC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/fore) +"kgF" = ( +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/chair/comfy/black{ + dir = 8; + name = "Judge" + }, +/obj/machinery/camera/directional/east{ + c_tag = "Courtroom - Starboard" + }, +/turf/open/floor/wood/large, +/area/station/security/courtroom) +"kgN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/effect/decal/cleanable/oil, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/electrical) +"kgR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/carpet/blue, +/area/station/command/bridge) +"kgS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/requests_console/directional/north{ + name = "Ordnance Mixing Lab Requests Console" + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge, +/area/station/science/ordnance/testlab) +"kgY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/gateway) +"khf" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/firealarm/directional/south, +/obj/machinery/camera/directional/south{ + dir = 5 + }, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/power_room) +"khz" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/engineering/supermatter/room) +"khA" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation/entertainment) +"khZ" = ( +/obj/machinery/camera/directional/west{ + c_tag = "Monastery Cloister Port"; + network = list("ss13","monastery") + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/small/directional/west, +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"kic" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/poster/official/random/directional/west, +/obj/effect/turf_decal/tile/neutral/diagonal_centre, +/turf/open/floor/iron/diagonal, +/area/station/commons/dorms) +"kig" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/multitool, +/obj/item/clothing/glasses/meson, +/obj/machinery/light/warm/directional/east, +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/bot, +/turf/open/floor/pod/dark, +/area/station/engineering/storage/tech) +"kio" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/medical/medbay/central) +"kit" = ( +/obj/effect/turf_decal/siding/green{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/hydroponics/garden) +"kiK" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/machinery/firealarm/directional/east{ + pixel_x = 33 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/textured_large, +/area/station/command/heads_quarters/hos) +"kiL" = ( +/obj/effect/turf_decal/tile/green/anticorner{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 8 + }, +/area/station/service/hydroponics/garden) +"kiN" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/bot, +/obj/item/clothing/mask/gas, +/obj/item/clothing/glasses/meson/engine/tray, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"kiT" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Medbay Lobby" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/lobby) +"kiZ" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/security/brig) +"kjc" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/chair/sofa/middle/brown{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/break_room) +"kjf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 6 + }, +/obj/effect/landmark/start/security_officer, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/security/lockers) +"kji" = ( +/obj/effect/turf_decal/trimline/green/filled/warning, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/hallway/primary/fore) +"kjk" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/nt_rep) +"kjl" = ( +/obj/effect/landmark/start/hangover, +/obj/effect/spawner/random/engineering/tracking_beacon, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"kjt" = ( +/obj/effect/landmark/start/shaft_miner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured_large, +/area/station/cargo/miningdock) +"kjz" = ( +/obj/structure/table/reinforced, +/obj/item/hfr_box/corner, +/obj/item/hfr_box/corner, +/obj/item/hfr_box/corner, +/obj/item/hfr_box/corner, +/obj/item/hfr_box/core{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos/hfr_room) +"kjF" = ( +/obj/structure/table/wood/poker, +/obj/item/toy/cards/deck, +/turf/open/floor/iron/grimy, +/area/station/commons/lounge) +"kjG" = ( +/obj/structure/rack/gunrack, +/obj/effect/turf_decal/tile/dark_red/half{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/light/cold/directional/north, +/obj/machinery/digital_clock/directional/north{ + pixel_y = 37 + }, +/obj/effect/spawner/armory_spawn/mod_lasers_big, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/ai_monitored/security/armory) +"kjL" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/poddoor/shutters{ + id = "securitybridge"; + name = "Security Pod Space Bridge" + }, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/department/security/brig) +"kjN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"kjP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/light_switch/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"kjS" = ( +/obj/structure/sign/logo{ + pixel_y = 32 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"kkk" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/sorting/mail{ + dir = 1; + name = "Security Junction" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "brig-entrance-fore" + }, +/obj/machinery/door/airlock/security/glass{ + id_tag = "innerbrig"; + name = "Brig" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/mapping_helpers/mail_sorting/security/general, +/obj/effect/mapping_helpers/airlock/access/all/security/entrance, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/office) +"kkl" = ( +/obj/structure/table/wood, +/obj/machinery/light/small/directional/west, +/obj/item/storage/crayons, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/grimy, +/area/station/service/chapel) +"kkr" = ( +/obj/structure/rack, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/effect/turf_decal/bot, +/obj/machinery/status_display/ai/directional/west, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"kkv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/moisture, +/obj/effect/spawner/random/trash/caution_sign, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/crew_quarters/bar) +"kky" = ( +/obj/machinery/light/small/directional/east, +/obj/machinery/light_switch/directional/east, +/obj/machinery/door/window/right/directional/north{ + name = "Coffin Storage"; + req_access = list("chapel_office") + }, +/turf/open/floor/pod/dark, +/area/station/service/chapel/funeral) +"kkI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/carpet/executive, +/area/station/command/heads_quarters/hop) +"klx" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/public/glass, +/turf/open/floor/iron/large, +/area/station/commons/fitness/recreation/entertainment) +"klD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/aft/upper) +"klO" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Aft Central Primary Hallway" + }, +/turf/open/floor/iron/large, +/area/station/commons/dorms) +"kmg" = ( +/obj/machinery/door/window/brigdoor/security/holding/right/directional/west{ + name = "Court"; + req_access = list("security") + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/station/security/courtroom) +"kmj" = ( +/obj/machinery/status_display/ai/directional/north, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/circuit/green, +/area/station/ai_monitored/command/nuke_storage) +"kmm" = ( +/mob/living/basic/parrot/poly, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/orange, +/area/station/command/heads_quarters/ce) +"kms" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"kmI" = ( +/obj/effect/spawner/random/trash/grime, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"kmM" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/science/research) +"kmR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 6 + }, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"kmU" = ( +/obj/structure/flora/bush/sparsegrass, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/grass, +/area/station/medical/virology) +"kmZ" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/turf/open/space/basic, +/area/space/nearstation) +"kne" = ( +/obj/machinery/firealarm/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/landmark/start/research_director, +/turf/open/floor/carpet/purple, +/area/station/command/heads_quarters/rd) +"kni" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/poddoor/shutters{ + id = "commissaryshutters2"; + name = "Vacant Commissary Shutters" + }, +/turf/open/floor/iron/large, +/area/station/commons/vacant_room/commissary) +"knn" = ( +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"knu" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/medical/medbay/central) +"kny" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/turf/open/floor/iron/freezer, +/area/station/medical/pharmacy) +"knA" = ( +/obj/structure/chair/wood, +/obj/machinery/firealarm/directional/north, +/obj/effect/landmark/start/clown, +/turf/open/floor/iron/herringbone, +/area/station/service/theater) +"knP" = ( +/obj/structure/table, +/obj/item/aicard, +/obj/item/folder/blue{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/machinery/status_display/ai/directional/north, +/obj/structure/railing, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/ai) +"knY" = ( +/obj/structure/chair/sofa/right/brown{ + dir = 8 + }, +/obj/structure/noticeboard/directional/east, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/carpet, +/area/station/medical/psychology) +"kob" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/engineering_personal, +/obj/machinery/light/small/directional/south, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/storage) +"koi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Primary Restroom"; + name = "restroom camera" + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet) +"koo" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"kop" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light_switch/directional/east, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 6 + }, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/command/storage/eva) +"koq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/turf/open/floor/iron/diagonal, +/area/station/hallway/secondary/service) +"kov" = ( +/obj/machinery/computer/mech_bay_power_console{ + dir = 1 + }, +/obj/machinery/camera/directional/south{ + c_tag = "Security - EVA Storage" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/large, +/area/station/security/office) +"koK" = ( +/obj/structure/chair/office{ + color = "#A46106" + }, +/obj/effect/landmark/start/quartermaster, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/qm) +"koP" = ( +/obj/structure/table/glass, +/obj/item/storage/box/petridish{ + pixel_x = -5; + pixel_y = 8 + }, +/obj/item/storage/box/petridish{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/item/book/manual/wiki/cytology, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/science/xenobiology) +"koQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/obj/effect/spawner/random/maintenance/four, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine) +"koW" = ( +/obj/docking_port/stationary{ + dheight = 1; + dir = 8; + dwidth = 12; + height = 17; + name = "northeast of station"; + shuttle_id = "syndicate_ne"; + width = 23 + }, +/turf/open/space/basic, +/area/space/nearstation) +"kpe" = ( +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/cultivator, +/obj/item/reagent_containers/cup/glass/shaker, +/obj/item/clothing/mask/gas, +/obj/item/clothing/head/utility/chefhat, +/obj/effect/spawner/random/maintenance, +/obj/effect/spawner/random/food_or_drink/donkpockets, +/obj/item/storage/box/drinkingglasses, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/iron/diagonal, +/area/station/hallway/secondary/service) +"kpg" = ( +/obj/effect/mapping_helpers/airlock/access/any/supply/shipping, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Delivery Office Maintenance" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/lesser) +"kpl" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"kpn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/fore) +"kpq" = ( +/obj/machinery/disposal/delivery_chute, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/textured_large, +/area/station/cargo/sorting) +"kpB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"kpG" = ( +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/wood/large, +/area/station/security/courtroom) +"kpH" = ( +/obj/effect/turf_decal/trimline/dark_red/arrow_cw{ + dir = 1 + }, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"kqb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured_edge, +/area/station/hallway/secondary/entry) +"kqc" = ( +/obj/machinery/door/airlock/external{ + name = "Brig Shuttle Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/catwalk_floor, +/area/station/hallway/secondary/exit/departure_lounge) +"kqf" = ( +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/turf/open/floor/iron/textured_large, +/area/station/security/checkpoint/customs) +"kqs" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"kqA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/spawner/random/structure/steam_vent, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/engine) +"kqO" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/command) +"kqY" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/textured_edge, +/area/station/medical/medbay/lobby) +"krh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured_large, +/area/station/hallway/secondary/construction) +"krA" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/textured_corner{ + dir = 1 + }, +/area/station/cargo/storage) +"ksa" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/neutral/filled/warning, +/obj/effect/turf_decal/trimline/neutral/filled/warning, +/obj/effect/turf_decal/trimline/neutral/filled/warning, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/hallway/secondary/command) +"ksd" = ( +/obj/machinery/camera/directional/east{ + c_tag = "Monastery Secondary Dock"; + network = list("ss13","monastery") + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/pod/dark, +/area/station/service/chapel/funeral) +"ksx" = ( +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/science/xenobiology) +"ksB" = ( +/obj/machinery/corral_corner{ + mapping_id = "2" + }, +/obj/machinery/light/neon_lining{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"ksD" = ( +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 6 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/textured, +/area/station/cargo/lobby) +"ksG" = ( +/turf/open/misc/beach/sand, +/area/station/hallway/primary/central/fore) +"ksH" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/item/radio/intercom/directional/east, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/atmos) +"ksL" = ( +/obj/structure/sign/calendar, +/turf/closed/wall/r_wall, +/area/station/command/heads_quarters/rd) +"ksR" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/maintenance/disposal/incinerator) +"ksV" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 6 + }, +/turf/open/space/basic, +/area/space/nearstation) +"kth" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/disposal/incinerator) +"ktl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/storage/tcomms) +"ktn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/external/glass{ + name = "Arrival Airlock"; + space_dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/department/science/ordnance_maint) +"ktu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/obj/effect/spawner/random/maintenance/four, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/greater) +"ktF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white/textured_large, +/area/station/science/xenobiology) +"ktT" = ( +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/execution/transfer) +"kub" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "garbage" + }, +/obj/machinery/door/window/left/directional/south{ + name = "Danger: Conveyor Access"; + req_access = list("maint_tunnels") + }, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/disposal) +"kuc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/command) +"kug" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/structure/sign/warning/secure_area/directional/west, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"kuj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"kus" = ( +/obj/effect/turf_decal/siding/thinplating/corner{ + dir = 1 + }, +/obj/machinery/light/floor/has_bulb, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"kuw" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/atmos) +"kux" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/department/engine) +"kuF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 5 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/brig) +"kuI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos/hfr_room) +"kuJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance_hatch, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/greater) +"kuK" = ( +/obj/structure/reagent_dispensers/wall/peppertank/directional/east, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/security/checkpoint/customs) +"kuS" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"kvb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/glass{ + amount = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"kvn" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"kvy" = ( +/obj/effect/turf_decal/box/white{ + color = "#9FED58" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos/hfr_room) +"kvJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/clothing/head/cone, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/fore) +"kvR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research/glass{ + name = "Robotics Lab" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/robotics, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/robotics/lab) +"kvT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_edge, +/area/station/security/interrogation) +"kvZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/box, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine) +"kwf" = ( +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 4 + }, +/obj/effect/landmark/start/shaft_miner, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) +"kwl" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"kwv" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central) +"kwB" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/turf/open/floor/pod/dark, +/area/station/service/chapel/office) +"kwK" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/grass, +/area/station/service/hydroponics/upper) +"kwX" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/commons/vacant_room) +"kxd" = ( +/obj/structure/training_machine, +/obj/item/target/syndicate, +/turf/open/floor/engine, +/area/station/science/auxlab/firing_range) +"kxk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/greater) +"kxo" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/command) +"kxt" = ( +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/textured_corner{ + dir = 4 + }, +/area/station/science/ordnance) +"kxA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/textured_large, +/area/station/science/xenobiology) +"kxB" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/effect/spawner/round_default_module, +/obj/item/toy/figure/borg{ + pixel_y = 12 + }, +/obj/item/radio/intercom/directional/east{ + freerange = 1; + frequency = 1447; + name = "Private Channel" + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/ai_upload) +"kxD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured_large, +/area/station/cargo/storage) +"kxK" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/obj/effect/spawner/random/entertainment/money, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/disposal) +"kxN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"kxX" = ( +/obj/machinery/plate_press{ + pixel_y = -3 + }, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/small, +/area/station/security/prison/work) +"kyd" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/command/storage/eva) +"kye" = ( +/obj/machinery/atmospherics/components/binary/valve/digital/on{ + name = "Waste Release" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/supermatter/room) +"kyg" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical) +"kyk" = ( +/obj/machinery/power/shuttle_engine/heater, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/east{ + layer = 2.9 + }, +/turf/open/floor/plating, +/area/space/nearstation) +"kyq" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Fore Central Primary Hallway" + }, +/turf/open/floor/iron/large, +/area/station/hallway/primary/central/fore) +"kyw" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/turf/closed/wall/r_wall, +/area/station/engineering/atmos) +"kyG" = ( +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured, +/area/station/cargo/lobby) +"kyH" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/brown/filled/mid_joiner, +/obj/effect/turf_decal/trimline/brown/filled/mid_joiner{ + dir = 4 + }, +/obj/machinery/airalarm/directional/west, +/obj/effect/turf_decal/bot, +/obj/machinery/computer/department_orders/medical{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/medical/storage) +"kyQ" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate, +/obj/effect/spawner/random/maintenance/seven, +/turf/open/floor/iron/textured_large, +/area/station/cargo/warehouse) +"kyU" = ( +/obj/machinery/igniter/incinerator_atmos, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/turf/open/floor/engine, +/area/station/maintenance/disposal/incinerator) +"kyV" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/effect/landmark/start/chemist, +/obj/structure/chair/office/light{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/pharmacy) +"kyY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/siding/green/corner, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"kza" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/button/door/directional/south{ + id = "engsm"; + name = "Radiation Shutters Control"; + req_access = list("engineering") + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"kzc" = ( +/obj/effect/spawner/random/trash/botanical_waste, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/green, +/turf/open/floor/iron/textured, +/area/station/service/hydroponics/garden/abandoned) +"kzj" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/trimline/dark_green/filled/line, +/obj/item/stack/sheet/mineral/plasma{ + amount = 5 + }, +/obj/item/stack/sheet/mineral/uranium/five, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/medical/virology) +"kzk" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/light/small/directional/east, +/obj/item/flashlight/lantern, +/obj/machinery/airalarm/directional/north, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/iron/grimy, +/area/station/service/chapel) +"kzu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/delivery, +/obj/effect/spawner/random/maintenance/two, +/obj/structure/closet/crate, +/turf/open/floor/iron/textured_large, +/area/station/cargo/storage) +"kzy" = ( +/turf/closed/wall/mineral/plastitanium/nodiagonal, +/area/station/science/auxlab/firing_range) +"kzA" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/ai_monitored/command/nuke_storage) +"kzE" = ( +/obj/structure/cable, +/obj/machinery/button/door/directional/north{ + id = "teleporterhubshutters"; + name = "Teleporter Shutters"; + req_access = list("command") + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 9 + }, +/turf/open/floor/iron/dark/textured, +/area/station/command/teleporter) +"kzL" = ( +/obj/machinery/disposal/bin, +/obj/machinery/firealarm/directional/west, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/end, +/obj/effect/turf_decal/box, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/nt_rep) +"kzM" = ( +/obj/machinery/field/generator, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/station/engineering/main) +"kzU" = ( +/obj/machinery/light_switch/directional/south, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/turf_decal/box, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/freezer, +/area/station/medical/treatment_center) +"kzV" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/airalarm/directional/south, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/medical/exam_room) +"kAd" = ( +/obj/effect/turf_decal/stripes/end, +/obj/effect/turf_decal/siding/thinplating/dark/end, +/obj/machinery/shower{ + pixel_y = 16 + }, +/obj/structure/drain, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/checker, +/area/station/science/research) +"kAj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"kAk" = ( +/obj/structure/closet/emcloset, +/obj/item/radio/intercom/directional/south{ + freerange = 1; + frequency = 1447; + listening = 0; + name = "Private Channel" + }, +/obj/structure/sign/nanotrasen{ + pixel_x = -32 + }, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"kAm" = ( +/turf/closed/wall, +/area/station/command/heads_quarters/blueshield) +"kAq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/auxlab/firing_range) +"kAt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/effect/turf_decal/trimline/neutral/filled/line, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"kAy" = ( +/obj/machinery/light_switch/directional/east{ + pixel_x = 24; + pixel_y = 6 + }, +/obj/machinery/button/door/directional/east{ + id = "roboticsprivacy"; + name = "Robotics Privacy Controls"; + pixel_y = -4; + req_access = list("robotics") + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/iron/dark/textured, +/area/station/science/robotics/lab) +"kAB" = ( +/obj/structure/railing, +/obj/structure/flora/grass/jungle, +/mob/living/basic/pig, +/turf/open/floor/grass, +/area/station/hallway/secondary/exit/departure_lounge) +"kAC" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/crew_quarters/bar) +"kAJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/camera/directional/south{ + c_tag = "Arrivals - Bay Aft Port"; + name = "arrivals camera" + }, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/textured_large, +/area/station/command/cc_dock) +"kAL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/aft) +"kAM" = ( +/obj/effect/turf_decal/siding/thinplating/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/floor/has_bulb, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"kAN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/circuit/green, +/area/station/science/research/abandoned) +"kAT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/spawner/random/entertainment/money, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/electrical) +"kBh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/theater) +"kBl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/upper) +"kBs" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/security/checkpoint/supply) +"kBS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"kCj" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Medbay - Central Hallway Entrance"; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/turf/open/floor/iron/white/textured_edge, +/area/station/medical/medbay/central) +"kCA" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/aft) +"kCE" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/corner{ + dir = 1 + }, +/area/station/hallway/primary/central/aft) +"kCH" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"kCM" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/chair/sofa/bench{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"kCP" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 1; + id = "construction"; + name = "Construction Shutters" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_large, +/area/station/construction/mining/aux_base) +"kCQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/machinery/door/airlock/medical/glass{ + id_tag = "MedbayFoyer"; + name = "Medbay Satellite Access" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) +"kCR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/food_or_drink/seed, +/turf/open/floor/grass, +/area/station/service/hydroponics/garden/abandoned) +"kCV" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/white/side{ + dir = 5 + }, +/area/station/science/lab) +"kDd" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/structure/table, +/obj/machinery/fax{ + fax_name = "Research Division"; + name = "Research Division Fax Machine"; + pixel_y = 3 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/science/lab) +"kDk" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/atmos/hfr_room) +"kDA" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Security - Brig Fore" + }, +/obj/effect/turf_decal/siding/red, +/obj/item/radio/intercom/directional/north{ + pixel_y = 35 + }, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/dark/textured_edge, +/area/station/security/office) +"kDE" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/large, +/area/station/hallway/primary/central/aft) +"kDF" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/green/corner{ + dir = 4 + }, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/service/hydroponics) +"kDR" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/gravity_generator) +"kDU" = ( +/obj/machinery/door/airlock/research/glass/incinerator/ordmix_interior{ + name = "Burn Chamber Interior Airlock" + }, +/obj/machinery/button/ignition/incinerator/ordmix{ + pixel_x = -6; + pixel_y = -24 + }, +/obj/machinery/button/door/incinerator_vent_ordmix{ + pixel_x = 8; + pixel_y = -24 + }, +/obj/machinery/airlock_controller/incinerator_ordmix{ + pixel_y = 32 + }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, +/turf/open/floor/engine, +/area/station/science/ordnance/burnchamber) +"kDW" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/parquet, +/area/station/common/night_club) +"kEm" = ( +/turf/closed/wall, +/area/station/maintenance/aft/upper) +"kEv" = ( +/obj/structure/table/wood/fancy/royalblue, +/obj/effect/turf_decal/siding/wood/end{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen/entertainment/directional/north, +/obj/machinery/fax{ + fax_name = "Head of Personnel's Office"; + name = "Head of Personnel's Fax Machine"; + pixel_y = 3 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hop) +"kEw" = ( +/obj/structure/table/optable, +/obj/effect/turf_decal/bot, +/obj/item/surgical_drapes, +/obj/item/clothing/mask/surgical, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/greater) +"kED" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/diagonal, +/area/station/medical/medbay/central) +"kEL" = ( +/obj/effect/turf_decal/trimline/red/filled/warning, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/security/checkpoint/customs) +"kEM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/obj/effect/landmark/start/virologist, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_green/diagonal_centre, +/turf/open/floor/iron/white/diagonal, +/area/station/medical/virology) +"kEP" = ( +/obj/machinery/door/airlock/grunge{ + name = "Funeral Room" + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/service/chapel_office, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/pod/dark, +/area/station/service/chapel/funeral) +"kFc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light_switch/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/station/command/heads_quarters/nt_rep) +"kFf" = ( +/obj/machinery/holopad/secure, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/bot, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/rd) +"kFh" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/lesser) +"kFk" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/toilet{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/machinery/button/door/directional/south{ + id = "Toilet1"; + name = "Lock Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet) +"kFp" = ( +/turf/open/floor/pod/dark, +/area/station/service/chapel/funeral) +"kFJ" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/closet/firecloset/wall{ + pixel_y = -32 + }, +/obj/effect/turf_decal/trimline/white/end{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"kFS" = ( +/obj/effect/mapping_helpers/airlock/access/all/science/rd, +/obj/machinery/door/airlock/rd/glass{ + critical_machine = 1; + name = "Server Access" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/structure/fans/tiny, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/server) +"kFT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"kFW" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"kFZ" = ( +/obj/effect/turf_decal/trimline/dark_blue/end{ + dir = 4 + }, +/obj/machinery/shower/directional/east, +/turf/open/floor/iron/freezer, +/area/station/security/prison) +"kGh" = ( +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 5 + }, +/turf/open/floor/iron/large, +/area/station/commons/vacant_room/commissary) +"kGn" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron/textured_edge, +/area/station/hallway/primary/aft) +"kGp" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical/central) +"kGs" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_large, +/area/station/cargo/storage) +"kGt" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/item/kitchen/fork/plastic, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/mess) +"kGy" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 8 + }, +/obj/item/stack/sheet/iron/five, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/upper) +"kGz" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/security/interrogation) +"kGK" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 10 + }, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/main) +"kGL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/lobby) +"kGP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/aft) +"kGU" = ( +/obj/effect/landmark/start/bartender, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, +/area/station/service/bar) +"kHe" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/machinery/light/warm/directional/east, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/commons/fitness/recreation/entertainment) +"kHn" = ( +/obj/machinery/camera/directional/east{ + c_tag = "AI Chamber - Starboard"; + network = list("aicore") + }, +/obj/structure/showcase/cyborg/old{ + dir = 8; + pixel_x = 9; + pixel_y = 2 + }, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "AI Core shutters"; + name = "AI Core Shutters" + }, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/ai) +"kHq" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/mess) +"kHC" = ( +/obj/machinery/light/neon_lining{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/science/xenobiology) +"kHE" = ( +/obj/machinery/airalarm/directional/west, +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ + dir = 4 + }, +/obj/effect/spawner/random/engineering/canister, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/fore) +"kHI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/red/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/science/auxlab/firing_range) +"kHT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/station/commons/dorms) +"kHU" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/science/ordnance/testlab) +"kHW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit/old, +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/light/small/directional/south, +/obj/effect/landmark/start/hangover, +/obj/machinery/newscaster/directional/west, +/obj/effect/turf_decal/bot, +/obj/machinery/button/door/directional/south{ + id = "Toilet2"; + name = "Lock Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet) +"kIc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"kIe" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/banner/engineering/mundane, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/aft) +"kIf" = ( +/obj/structure/tank_holder/extinguisher, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/crew_quarters/bar) +"kIg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/freezer{ + critical_machine = 1; + name = "Coldroom" + }, +/obj/effect/mapping_helpers/airlock/access/all/service/kitchen, +/obj/structure/fans/tiny, +/obj/structure/cable, +/turf/open/floor/iron/freezer, +/area/station/service/kitchen/coldroom) +"kIi" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Mix to Distro" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos/pumproom) +"kIm" = ( +/obj/structure/grille, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/greater) +"kIo" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured_large, +/area/station/hallway/primary/aft) +"kIq" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/atmos) +"kIt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Fore Primary Hallway" + }, +/turf/open/floor/iron/large, +/area/station/hallway/primary/fore) +"kID" = ( +/obj/structure/chair/office{ + color = "#D381C9"; + dir = 1 + }, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/turf_decal/tile/purple/half, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"kIO" = ( +/obj/structure/rack, +/obj/effect/spawner/random/engineering, +/obj/effect/turf_decal/bot, +/obj/structure/sign/poster/official/random/directional/north, +/obj/item/storage/belt/utility, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/power_room) +"kIR" = ( +/obj/machinery/computer/records/medical{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue/half{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"kIV" = ( +/obj/machinery/door/airlock/security{ + name = "Evidence Storage" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/armory, +/turf/open/floor/iron/dark/textured, +/area/station/security/warden) +"kIX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/upper) +"kJi" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/machinery/autolathe, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/robotics/lab) +"kJk" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/oxygen_output{ + dir = 4 + }, +/turf/open/floor/engine/o2, +/area/station/engineering/atmos) +"kJm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/table, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/exit/departure_lounge) +"kJp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/closet/preopen, +/obj/effect/spawner/random/maintenance, +/obj/item/electronics/apc, +/turf/open/floor/iron/textured_large, +/area/station/cargo/storage) +"kJq" = ( +/obj/effect/spawner/random/structure/girder, +/obj/structure/grille/broken, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/science/ordnance_maint) +"kJv" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/textured_edge, +/area/station/hallway/secondary/entry) +"kJQ" = ( +/obj/structure/closet/emcloset/wall{ + pixel_x = -32 + }, +/obj/effect/turf_decal/trimline/white/end{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/white/mid_joiner, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 1 + }, +/turf/open/floor/carpet/cyan, +/area/station/commons/dorms) +"kJT" = ( +/obj/machinery/plumbing/ooze_sucker{ + mapping_id = "6" + }, +/obj/machinery/light/floor/has_bulb, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"kKa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/structure/closet/secure_closet/chemical, +/obj/item/storage/box/syringes, +/obj/item/storage/box/beakers, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/freezer, +/area/station/medical/pharmacy) +"kKC" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate/freezer{ + name = "organ storage" + }, +/obj/item/organ/external/tail/cat, +/obj/item/organ/external/tail/cat, +/obj/item/organ/internal/ears/cat, +/obj/item/organ/internal/ears/cat, +/obj/item/organ/internal/heart, +/obj/structure/sign/poster/contraband/random/directional/east, +/obj/machinery/vending/wallmed/directional/north, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/greater) +"kKF" = ( +/obj/structure/sign/poster/contraband/have_a_puff, +/turf/closed/wall, +/area/station/commons/vacant_room/office) +"kKK" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/turf_decal/trimline/green/arrow_cw{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/north, +/obj/effect/landmark/start/hangover/closet, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/small, +/area/station/commons/dorms) +"kKL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/tcommsat/computer) +"kKX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/station/maintenance/department/engine/atmos) +"kLc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/trash_pile, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/lesser) +"kLd" = ( +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/structure/sign/warning/no_smoking/circle/directional/west, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/surgery) +"kLk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/generic_maintenance_landmark, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/fore) +"kLl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/science/research/abandoned) +"kLz" = ( +/turf/open/floor/iron/cafeteria, +/area/station/service/cafeteria) +"kLG" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/glass/reinforced, +/area/station/security/office) +"kLU" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/textured_corner{ + dir = 4 + }, +/area/station/engineering/atmos) +"kMa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/atmos/pumproom) +"kMc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_large, +/area/station/hallway/primary/aft) +"kMf" = ( +/obj/structure/trash_pile, +/turf/open/floor/iron/textured, +/area/station/maintenance/port) +"kMh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/trash_pile, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine/atmos/lesser) +"kMj" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/atmos) +"kMq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Medbay Lobby" + }, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/lobby) +"kMs" = ( +/obj/machinery/stasis, +/obj/machinery/defibrillator_mount/directional/east, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/turf_decal/box/blue, +/turf/open/floor/iron/freezer, +/area/station/medical/treatment_center) +"kMA" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer2, +/obj/structure/table, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/rods/fifty{ + pixel_y = 3 + }, +/obj/item/stack/rods/fifty, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_y = 3 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_y = 3 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos/storage) +"kMI" = ( +/obj/structure/tank_holder/extinguisher, +/turf/open/floor/iron/textured, +/area/station/maintenance/port) +"kMM" = ( +/obj/machinery/autolathe, +/obj/effect/turf_decal/stripes/box, +/obj/effect/turf_decal/trimline/brown/filled/line, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/cargo/office) +"kMZ" = ( +/obj/effect/spawner/liquids_spawner{ + reagent_list = list(/datum/reagent/water=600) + }, +/turf/open/misc/asteroid, +/area/station/commons/dorms) +"kNt" = ( +/obj/effect/turf_decal/trimline/red/filled/corner, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/security/brig) +"kNJ" = ( +/obj/machinery/airalarm/directional/east, +/obj/machinery/light/warm/directional/east, +/obj/machinery/camera/directional/east{ + c_tag = "Lawyer's Office" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/grimy, +/area/station/service/lawoffice) +"kNS" = ( +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"kOf" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/chair/sofa/right/brown{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/break_room) +"kOk" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/obj/structure/sink/directional/west, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/medical/storage) +"kOq" = ( +/obj/structure/plasticflaps/opaque{ + name = "Medical Deliveries" + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + dir = 4; + location = "Medbay" + }, +/obj/effect/turf_decal/delivery/blue, +/turf/open/floor/iron/white/textured_large, +/area/station/maintenance/department/medical) +"kOs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/line, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/dark/textured, +/area/station/security/execution/education) +"kOS" = ( +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 5 + }, +/turf/open/floor/iron/textured, +/area/station/maintenance/disposal/incinerator) +"kOY" = ( +/obj/structure/railing, +/turf/open/floor/iron/white/small, +/area/station/common/pool) +"kPh" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/cafeteria, +/area/station/service/cafeteria) +"kPj" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "prisonlibrarycurtain"; + name = "curtain" + }, +/turf/open/floor/plating, +/area/station/security/prison/garden) +"kPn" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/directional/west{ + c_tag = "Auxiliary Construction"; + dir = 1; + name = "engineering camera" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/button/door/directional/north{ + id = "construction"; + name = "Auxiliary Construction Shutters"; + req_access = list("aux_base") + }, +/turf/open/floor/iron/textured_edge, +/area/station/construction/mining/aux_base) +"kPt" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/maintenance/port) +"kPu" = ( +/obj/effect/turf_decal/box, +/obj/effect/landmark/start/cyborg, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/robotics/lab) +"kPv" = ( +/obj/effect/turf_decal/tile/green/anticorner, +/turf/open/floor/iron/dark/textured_corner{ + dir = 1 + }, +/area/station/service/hydroponics/garden) +"kPC" = ( +/obj/machinery/door/airlock/external/ruin{ + name = "Pod Docking Bay" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/service/chapel) +"kPI" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 1 + }, +/area/station/security/prison) +"kPP" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "Chamber Inject" + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"kPR" = ( +/obj/machinery/vending/hydroseeds, +/obj/effect/turf_decal/bot, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/hydroponics/garden) +"kPY" = ( +/turf/open/floor/iron/dark/textured_large, +/area/station/security/office) +"kQh" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/loading_area, +/obj/structure/sign/poster/official/random/directional/east, +/turf/open/floor/iron/textured_large, +/area/station/security/checkpoint/customs) +"kQm" = ( +/obj/structure/rack, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/item/clothing/shoes/sneakers/orange, +/obj/item/clothing/shoes/sneakers/orange, +/obj/item/clothing/shoes/sneakers/orange, +/obj/item/clothing/shoes/sneakers/orange, +/obj/item/clothing/under/rank/prisoner, +/obj/item/clothing/under/rank/prisoner, +/obj/item/clothing/under/rank/prisoner, +/obj/item/clothing/under/rank/prisoner, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 9 + }, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured, +/area/station/security/holding_cell) +"kQp" = ( +/obj/machinery/chem_dispenser/drinks/beer{ + dir = 8 + }, +/obj/structure/table, +/turf/open/floor/carpet/purple, +/area/station/common/night_club) +"kQt" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/telecomms/server/presets/command, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/station/tcommsat/server) +"kQE" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/broken/directional/north, +/obj/effect/spawner/random/trash/grime, +/turf/open/floor/iron/kitchen/small, +/area/station/service/kitchen/abandoned) +"kQW" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine, +/area/station/engineering/atmos/storage/gas) +"kRb" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain/private) +"kRg" = ( +/obj/structure/table/reinforced, +/obj/item/surgery_tray, +/obj/machinery/status_display/evac/directional/south, +/obj/item/reagent_containers/spray/cleaner, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"kRi" = ( +/obj/machinery/door/morgue{ + name = "Confession Booth" + }, +/turf/open/floor/iron/dark/textured, +/area/station/service/chapel) +"kRu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/highsecurity{ + name = "Emergency Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "engielock"; + name = "Engineering Lockdown Blast Door" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/engine) +"kRA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"kRE" = ( +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ + dir = 10 + }, +/obj/machinery/button/door/directional/south{ + id = "bsa"; + name = "Shutter Control" + }, +/turf/open/floor/iron/textured, +/area/station/hallway/secondary/construction) +"kRI" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/engine, +/area/station/engineering/main) +"kRU" = ( +/obj/machinery/suit_storage_unit/atmos, +/obj/effect/turf_decal/delivery, +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/atmos/storage) +"kSn" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/white/side, +/area/station/science/lab) +"kSu" = ( +/obj/machinery/button/curtain{ + id = "blueshield"; + pixel_x = 24; + pixel_y = 10 + }, +/obj/structure/chair/comfy/teal{ + dir = 8 + }, +/obj/machinery/button/door/directional/east{ + id = "BSdoor"; + name = "Door Lock"; + normaldoorcontrol = 1; + req_access = list("captain"); + specialfunctions = 4 + }, +/turf/open/floor/carpet/cyan, +/area/station/command/heads_quarters/blueshield) +"kSA" = ( +/obj/effect/turf_decal/bot, +/obj/effect/landmark/event_spawn, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/textured_large, +/area/station/security/checkpoint/engineering) +"kSB" = ( +/obj/effect/spawner/random/trash/bin, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"kSI" = ( +/obj/effect/mapping_helpers/airlock/access/all/service/chapel_office, +/obj/machinery/door/airlock/maintenance{ + name = "Chapel Maintenance" + }, +/turf/open/floor/pod, +/area/station/service/chapel) +"kSK" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/trash_pile, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/crew_quarters/bar) +"kSN" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/spawner/random/vending/snackvend, +/obj/effect/turf_decal/bot, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/lobby) +"kSP" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/fore) +"kSV" = ( +/obj/effect/turf_decal/box/red, +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"kSY" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/engineering/glass/critical{ + heat_proof = 1; + name = "Supermatter Chamber" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"kTc" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/solars/port/fore) +"kTm" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/grime, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"kTq" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/bot, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/entry) +"kTB" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/textured_edge, +/area/station/hallway/primary/aft) +"kTR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/engineering/tracking_beacon, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"kTS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/ai_upload) +"kTZ" = ( +/obj/structure/table, +/obj/item/stack/cable_coil{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil, +/obj/item/stock_parts/cell/high, +/obj/machinery/light/small/directional/east, +/turf/open/floor/pod/dark, +/area/station/engineering/storage/tech) +"kUb" = ( +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"kUd" = ( +/obj/machinery/posialert/directional/north, +/obj/machinery/computer/rdconsole, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/white/textured_large, +/area/station/command/heads_quarters/rd) +"kUi" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/telecomms/receiver/preset_right, +/turf/open/floor/circuit/telecomms/server, +/area/station/tcommsat/server) +"kUr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/aft) +"kUO" = ( +/obj/effect/spawner/random/contraband/prison, +/turf/open/floor/iron/textured, +/area/station/security/prison/work) +"kUU" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/open/floor/plating/airless, +/area/station/engineering/supermatter/room) +"kUZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) +"kVc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"kVd" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/small, +/area/station/commons/dorms) +"kVi" = ( +/obj/effect/turf_decal/siding/thinplating/corner{ + dir = 1 + }, +/obj/machinery/light/floor/has_bulb, +/turf/open/misc/beach/sand, +/area/station/hallway/primary/central/fore) +"kVk" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 9 + }, +/obj/machinery/firealarm/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"kVn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/iron/textured, +/area/station/science/ordnance/storage) +"kVo" = ( +/obj/structure/railing{ + pixel_y = -5 + }, +/turf/open/floor/grass, +/area/station/service/hydroponics/upper) +"kVs" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/structure/closet/toolcloset, +/obj/effect/turf_decal/bot, +/obj/item/clothing/glasses/meson/engine, +/obj/item/radio/intercom/directional/south, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 8 + }, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/main) +"kVv" = ( +/obj/machinery/light/small/blacklight/directional/south, +/obj/machinery/conveyor{ + dir = 4; + id = "mining" + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/textured_large, +/area/station/cargo/miningdock) +"kVy" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/security/office) +"kVE" = ( +/obj/structure/chair/stool/directional/west, +/turf/open/floor/iron/grimy, +/area/station/commons/lounge) +"kVG" = ( +/obj/structure/table/wood/fancy, +/obj/item/toy/figure/clown, +/obj/structure/noticeboard/directional/west, +/obj/structure/sign/poster/contraband/clown/directional/north, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_red/opposingcorners, +/turf/open/floor/iron, +/area/station/service/theater) +"kVH" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured_large, +/area/station/cargo/drone_bay) +"kVM" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/public/glass{ + name = "Aft Central Primary Hallway" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/large, +/area/station/hallway/primary/central/aft) +"kVP" = ( +/obj/effect/turf_decal/trimline/dark_red/warning, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"kVR" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/department/science/xenobiology) +"kVS" = ( +/obj/machinery/power/tracker, +/obj/structure/cable, +/turf/open/floor/iron/solarpanel/airless, +/area/station/solars/aisat) +"kVU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/aft) +"kWb" = ( +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/light/colour_cycle/dancefloor_b, +/area/station/common/night_club) +"kWe" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/service{ + name = "Bar" + }, +/obj/effect/mapping_helpers/airlock/access/all/service/bar, +/obj/machinery/door/poddoor/preopen{ + id = "BarBlastDoor"; + name = "Bar Blast Door" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/service/bar) +"kWf" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/security/prison) +"kWh" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering Break Room" + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured_large, +/area/station/engineering/break_room) +"kWl" = ( +/obj/effect/spawner/structure/window/hollow/reinforced/middle{ + dir = 4 + }, +/obj/structure/transit_tube/horizontal, +/turf/open/floor/plating, +/area/station/hallway/primary/fore) +"kWq" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/obj/machinery/light/small/directional/south, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/disposal) +"kWE" = ( +/obj/structure/window/reinforced/spawner/directional/east{ + layer = 2.9; + pixel_x = 4 + }, +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal/delivery_chute{ + dir = 1; + name = "Prisoner Doomp" + }, +/obj/machinery/door/window/brigdoor/left/directional/north{ + name = "Prisoner Doomp" + }, +/obj/effect/turf_decal/bot_red, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/brig) +"kWG" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/machinery/light/directional/south, +/turf/open/floor/engine, +/area/station/science/auxlab/firing_range) +"kWM" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass{ + amount = 30 + }, +/obj/item/pipe_dispenser, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/construction/mining/aux_base) +"kWP" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, +/area/station/service/bar) +"kWQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Engineering Maintenance" + }, +/obj/machinery/duct, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/engine/atmos) +"kXu" = ( +/obj/item/folder/blue{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/folder/white{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/stamp/head/cmo{ + pixel_y = 3 + }, +/obj/structure/table/reinforced/rglass, +/turf/open/floor/carpet/blue, +/area/station/command/heads_quarters/cmo) +"kXw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/dark_green/filled/warning{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/textured_edge, +/area/station/medical/virology) +"kXz" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/cargo/storage) +"kXF" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 6 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/structure/table, +/obj/machinery/fax{ + fax_name = "Cargo Office"; + name = "Cargo Office Fax Machine"; + pixel_y = 3 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/textured, +/area/station/cargo/office) +"kXK" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) +"kXW" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/line, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/secondary/construction) +"kYc" = ( +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/corner{ + dir = 1 + }, +/area/station/hallway/primary/central) +"kYz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/mob/living/simple_animal/pet/gondola/funky, +/turf/open/floor/iron/herringbone, +/area/station/service/theater) +"kYC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/newscaster/directional/south, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/hallway/secondary/command) +"kYF" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/dark_blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue/half{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"kYQ" = ( +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/supermatter/room) +"kYV" = ( +/obj/structure/reflector/double/anchored{ + dir = 6 + }, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/supermatter/room) +"kYX" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark/textured_edge, +/area/station/security/warden) +"kZc" = ( +/obj/structure/flora/ocean/seaweed, +/obj/effect/spawner/liquids_spawner{ + reagent_list = list(/datum/reagent/water=600) + }, +/turf/open/misc/asteroid, +/area/station/commons/dorms) +"kZe" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/flowers_yw, +/obj/structure/window/fulltile, +/turf/open/floor/grass, +/area/station/commons/dorms) +"kZf" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/wood, +/area/station/commons/vacant_room/office) +"kZk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/stairs/right{ + dir = 8 + }, +/area/station/engineering/main) +"kZs" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Science - Satellite Access"; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/item/banner/science/mundane{ + pixel_y = 16 + }, +/obj/effect/turf_decal/tile/purple/diagonal_centre, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/white/diagonal, +/area/station/science/research) +"kZu" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/commons/fitness/recreation/entertainment) +"kZF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/fore) +"kZJ" = ( +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/hallway/secondary/construction) +"kZX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/crew_quarters/bar) +"laa" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"lac" = ( +/obj/structure/flora/bush/fullgrass, +/obj/structure/flora/bush/flowers_yw, +/obj/structure/window/spawner/directional/south, +/turf/open/floor/grass, +/area/station/hallway/secondary/exit/departure_lounge) +"lae" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/hallway/primary/aft) +"laf" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 9 + }, +/turf/open/floor/iron/textured_edge, +/area/station/cargo/miningdock) +"lai" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 2; + name = "RD Junction" + }, +/obj/machinery/light_switch/directional/east{ + pixel_x = 37 + }, +/obj/effect/mapping_helpers/mail_sorting/science/rd_office, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/rd) +"lar" = ( +/obj/machinery/air_sensor/plasma_tank, +/turf/open/floor/engine/plasma, +/area/station/engineering/atmos) +"lax" = ( +/obj/machinery/firealarm/directional/east, +/turf/open/floor/circuit/green, +/area/station/engineering/storage/tech) +"laG" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/structure/table/reinforced/rglass, +/obj/item/stack/sheet/iron/fifty, +/obj/machinery/status_display/evac/directional/east, +/obj/item/stack/sheet/iron/fifty, +/obj/item/construction/plumbing{ + pixel_y = 6 + }, +/obj/item/construction/plumbing, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"lbh" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/grimy, +/area/station/service/lawoffice) +"lbi" = ( +/obj/structure/trash_pile, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/crew_quarters/bar) +"lbj" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/machinery/power/port_gen/pacman, +/obj/structure/cable, +/obj/machinery/light/small/directional/north, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/eva_shed/port) +"lbB" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/commons/fitness/recreation) +"lbI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating/airless, +/area/station/security/checkpoint/medical) +"lbM" = ( +/obj/machinery/firealarm/directional/east, +/turf/open/floor/carpet/black, +/area/station/commons/dorms) +"lbP" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/structure/sign/departments/telecomms/alt/directional/west, +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/hallway/primary/aft) +"lbV" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/machinery/computer/cargo{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/cargo/storage) +"lbX" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/wood, +/area/station/hallway/secondary/entry) +"lcd" = ( +/obj/structure/table, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/glass/reinforced, +/area/station/security/execution/transfer) +"lcf" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Atmospherics - Plasma Cell"; + name = "atmospherics camera" + }, +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/box, +/obj/machinery/firealarm/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos/hfr_room) +"lcn" = ( +/obj/effect/turf_decal/stripes/red/box, +/obj/structure/sign/delam_procedure/directional/east, +/turf/open/floor/iron/textured, +/area/station/engineering/main) +"lcr" = ( +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/obj/structure/window/reinforced/spawner/directional/east{ + layer = 2.9; + pixel_x = 4 + }, +/obj/structure/plasticflaps, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/textured_large, +/area/station/cargo/sorting) +"lct" = ( +/obj/effect/turf_decal/bot_white/left, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/anticorner{ + dir = 4 + }, +/turf/open/floor/iron/textured_corner{ + dir = 8 + }, +/area/station/engineering/gravity_generator) +"lcC" = ( +/obj/structure/flora/rock/pile, +/obj/effect/spawner/liquids_spawner{ + reagent_list = list(/datum/reagent/water=600) + }, +/turf/open/misc/asteroid, +/area/station/commons/dorms) +"lcL" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/iron/textured, +/area/station/command/cc_dock) +"lcT" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 10 + }, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/primary/fore) +"lcV" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/power_room) +"lcZ" = ( +/obj/machinery/netpod, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/bitrunning/den) +"ldf" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/medical/medbay/central) +"ldi" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/department/security/brig) +"ldk" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/obj/machinery/computer/atmos_control/nitrogen_tank{ + dir = 4 + }, +/obj/structure/window/reinforced/plasma/spawner/directional/west, +/obj/effect/turf_decal/tile/dark_red/full, +/obj/effect/turf_decal/tile/dark_red/full, +/obj/effect/turf_decal/tile/neutral/full, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"ldo" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/station/security/detectives_office) +"ldr" = ( +/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible, +/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"ldB" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 10 + }, +/turf/open/floor/iron/dark/textured, +/area/station/bitrunning/den) +"ldD" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/anesthetic_mix, +/obj/structure/window/spawner/directional/east, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/turf/open/floor/iron/dark/textured, +/area/station/medical/medbay/central) +"ldR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/power_room) +"leb" = ( +/obj/structure/cable, +/turf/open/floor/iron/textured_large, +/area/station/cargo/office) +"leh" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/status_display/ai/directional/south, +/obj/machinery/camera/directional/south{ + c_tag = "Medbay - Aft Chemistry Lab"; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"leB" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/service/bar, +/obj/machinery/door/airlock/maintenance{ + name = "Bar Backroom Maintenance" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/crew_quarters/bar) +"leI" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/main) +"leJ" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/primary/central/aft) +"leQ" = ( +/obj/machinery/plate_press{ + pixel_y = -3 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/small, +/area/station/security/prison/work) +"leS" = ( +/obj/structure/table, +/obj/structure/showcase/machinery/tv, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/machinery/firealarm/directional/west, +/obj/item/radio/intercom/directional/south, +/obj/machinery/light/warm/directional/west, +/turf/open/floor/wood/large, +/area/station/commons/fitness/recreation/entertainment) +"leT" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) +"lff" = ( +/obj/item/radio/intercom/directional/north, +/obj/structure/table, +/obj/item/binoculars, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 9 + }, +/turf/open/floor/iron/textured, +/area/station/science/ordnance/testlab) +"lfE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/spawner/random/structure/steam_vent, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/aft) +"lfI" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/exit/departure_lounge) +"lfO" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start/scientist, +/turf/open/floor/iron/textured_large, +/area/station/science/ordnance/office) +"lfS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/landmark/start/chaplain, +/turf/open/floor/iron/dark/diagonal, +/area/station/hallway/primary/fore) +"lfU" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/closet/firecloset/wall{ + pixel_y = -32 + }, +/obj/effect/turf_decal/trimline/white/end{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/fore) +"lfY" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hopqueue"; + name = "HoP Queue Shutters" + }, +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/structure/sign/poster/official/pda_ad/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/blue/filled/arrow_cw, +/obj/effect/turf_decal/trimline/blue/filled/arrow_ccw{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/secondary/command) +"lgc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/department/security/greater) +"lgm" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Orderly's Office Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/central) +"lgo" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/effect/turf_decal/trimline/blue/filled/warning, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/atmos) +"lgt" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/departments/court/directional/west, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/hallway/secondary/command) +"lgE" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/trimline/dark_red/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"lgF" = ( +/obj/structure/bed/dogbed/ian, +/mob/living/basic/pet/dog/corgi/ian, +/obj/structure/sign/poster/official/work_for_a_future/directional/east, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/carpet/executive, +/area/station/command/heads_quarters/hop) +"lgX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/department/medical/central) +"lgZ" = ( +/obj/machinery/door/airlock/security{ + name = "Isolation Cell" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/security/execution/transfer) +"lhb" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/commons/fitness/recreation) +"lhc" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Fore Primary Hallway Maintenance" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/unres, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/greater) +"lhf" = ( +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + name = "blue line" + }, +/obj/structure/hoop{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/prison) +"lhh" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/wood/large, +/area/station/service/theater) +"lhC" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/light/small/blacklight/directional/south, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/gravity_generator) +"lhE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine) +"lhL" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/security/brig) +"lhS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/tank_holder/extinguisher, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/fore) +"lhY" = ( +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 6 + }, +/obj/structure/table/reinforced, +/obj/item/clothing/suit/hazardvest{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/suit/hazardvest{ + pixel_x = -4; + pixel_y = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/auxlab/firing_range) +"lhZ" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/grass, +/area/station/service/hydroponics/upper) +"lig" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/atmos/glass{ + name = "Distribution Loop" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos/pumproom) +"liB" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/structure/rack, +/turf/open/floor/iron/showroomfloor, +/area/station/medical/coldroom) +"liH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/storage) +"liS" = ( +/obj/item/kirbyplants/random, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera/directional/east{ + c_tag = "Command Hallway - HoP Line"; + name = "hallway camera" + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/hallway/secondary/command) +"liY" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/engine/o2, +/area/station/engineering/atmos) +"liZ" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 10 + }, +/obj/machinery/cassette/dj_station{ + pixel_y = 7 + }, +/obj/structure/table/wood, +/turf/open/floor/cult, +/area/station/service/library) +"lje" = ( +/obj/structure/table/wood/fancy/green, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/item/paper_bin{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/pen/fountain{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/machinery/airalarm/directional/west, +/obj/item/flashlight/lamp/green{ + pixel_x = -9; + pixel_y = 5 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/nt_rep) +"lji" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/machinery/power/energy_accumulator/grounding_rod/anchored, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"ljk" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured_large, +/area/station/bitrunning/den) +"ljI" = ( +/turf/closed/wall, +/area/station/medical/morgue) +"ljV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/hallway/secondary/command) +"lkc" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/edge, +/area/station/hallway/primary/fore) +"lkh" = ( +/obj/effect/turf_decal/tile/dark/fourcorners, +/mob/living/basic/lizard/eats_the_roaches, +/obj/effect/turf_decal/trimline/green/filled/corner, +/turf/open/floor/noslip, +/area/station/service/janitor) +"lky" = ( +/obj/machinery/light/small/directional/east, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera/directional/east{ + c_tag = "Monastery Funeral Office"; + network = list("ss13","monastery") + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/pod/dark, +/area/station/service/chapel/funeral) +"lkG" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/fore) +"lkJ" = ( +/turf/open/floor/wood, +/area/station/commons/vacant_room/office) +"lkR" = ( +/obj/effect/spawner/random/structure/table_fancy, +/obj/item/flashlight/lamp/green{ + pixel_y = 6 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/wood, +/area/station/maintenance/department/science/xenobiology) +"lkS" = ( +/obj/structure/rack/shelf, +/obj/effect/spawner/random/techstorage/service_all, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/pod/dark, +/area/station/engineering/storage/tech) +"lkY" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/office) +"llk" = ( +/obj/structure/table, +/obj/item/stack/medical/gauze, +/obj/item/stack/medical/mesh, +/obj/item/stack/medical/suture, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"llF" = ( +/obj/effect/turf_decal/trimline/green/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/mid_joiner{ + dir = 1 + }, +/turf/open/floor/iron/large, +/area/station/service/hydroponics) +"llM" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/miningdock) +"llR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/closet/emcloset/wall{ + pixel_x = 32 + }, +/obj/effect/turf_decal/trimline/white/end{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/white/mid_joiner, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/iron/textured_large, +/area/station/command/cc_dock) +"llS" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/poster/official/random/directional/south, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/aft) +"llW" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"lmy" = ( +/obj/structure/chair/comfy/brown{ + buildstackamount = 0; + color = "#DE3A3A" + }, +/obj/structure/cable, +/obj/effect/landmark/start/head_of_security, +/turf/open/floor/carpet/royalblack, +/area/station/command/heads_quarters/hos) +"lmS" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, +/obj/machinery/light/warm/directional/north, +/obj/machinery/camera/directional/north{ + c_tag = "Atmospherics - Oxygen Supply"; + name = "atmospherics camera" + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"lmU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/secondary/entry) +"lnc" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 8 + }, +/turf/open/floor/iron/white/side{ + dir = 5 + }, +/area/station/science/research) +"lne" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured_corner, +/area/station/security/prison) +"lnl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Engine Room" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "engielock"; + name = "Engineering Lockdown Blast Door" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/duct, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"lnp" = ( +/obj/structure/lattice, +/obj/machinery/camera/directional/west{ + c_tag = "AI Satellite - Aft Starboard"; + name = "ai camera"; + network = list("minisat"); + start_active = 1 + }, +/turf/open/space/basic, +/area/space/nearstation) +"lns" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + dir = 9; + name = "blue line" + }, +/turf/open/floor/engine/vacuum, +/area/station/science/ordnance/freezerchamber) +"lnt" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/sign/departments/aiupload/directional/west, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/hallway/secondary/command) +"lnJ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/closet/crate, +/obj/item/binoculars, +/turf/open/space/basic, +/area/space/nearstation) +"lnK" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/turf/open/floor/iron/textured_corner, +/area/station/engineering/atmos/hfr_room) +"lnQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/wood/tile, +/area/station/service/bar) +"lnS" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/turf/open/floor/iron/grimy, +/area/station/commons/lounge) +"lnT" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/plasticflaps/opaque{ + name = "Kitchen Deliveries" + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + location = "Kitchen" + }, +/turf/open/floor/iron/large, +/area/station/maintenance/starboard/greater) +"lnU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"lnX" = ( +/obj/effect/turf_decal/trimline/dark_red/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"loe" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"lol" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"lon" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/cargo/miningdock) +"loq" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/telecomms/processor/preset_two, +/turf/open/floor/circuit/telecomms/server, +/area/station/tcommsat/server) +"lor" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/large, +/area/station/commons/fitness/recreation) +"lov" = ( +/obj/machinery/arc_forge, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/stone, +/area/station/service/barber) +"loF" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_large, +/area/station/hallway/secondary/entry) +"loJ" = ( +/obj/effect/turf_decal/tile/purple/diagonal_centre, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/white/diagonal, +/area/station/science/research) +"loL" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/central/aft) +"loQ" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/security_officer, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/security/office) +"lpc" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/iron/freezer, +/area/station/medical/treatment_center) +"lpz" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/science/ordnance_maint) +"lpZ" = ( +/obj/structure/chair/comfy/brown{ + color = "#52B4E9"; + dir = 4 + }, +/obj/effect/landmark/start/chief_medical_officer, +/turf/open/floor/carpet/blue, +/area/station/command/heads_quarters/cmo) +"lqw" = ( +/obj/machinery/status_display/evac/directional/east, +/obj/structure/closet/secure_closet/detective, +/obj/item/camera/detective, +/obj/item/reagent_containers/cup/glass/flask/det{ + pixel_x = -1 + }, +/turf/open/floor/carpet, +/area/station/security/detectives_office) +"lqx" = ( +/obj/structure/table, +/obj/item/wirecutters, +/obj/item/multitool, +/obj/item/screwdriver, +/obj/machinery/light/warm/directional/west, +/obj/machinery/status_display/ai/directional/west, +/turf/open/floor/pod/dark, +/area/station/engineering/storage/tech) +"lqz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/structure/sign/poster/contraband/borg_fancy_2/directional/south, +/turf/open/floor/iron/textured, +/area/station/science/research/abandoned) +"lqF" = ( +/obj/structure/table/wood/fancy, +/obj/item/nullrod, +/obj/item/organ/internal/heart, +/obj/item/reagent_containers/cup/glass/bottle/holywater, +/obj/machinery/light/small/directional/north, +/turf/open/floor/pod/dark, +/area/station/service/chapel/office) +"lqJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured_large, +/area/station/engineering/lobby) +"lqL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"lqR" = ( +/obj/item/folder/red{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/item/stamp/head/hos{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = -17 + }, +/obj/structure/table/reinforced/plastitaniumglass, +/obj/item/storage/box/deputy{ + pixel_x = 13; + pixel_y = -1 + }, +/turf/open/floor/carpet/royalblack, +/area/station/command/heads_quarters/hos) +"lqX" = ( +/obj/structure/rack, +/obj/item/gun/energy/e_gun/dragnet, +/obj/item/gun/energy/e_gun/dragnet, +/obj/effect/turf_decal/tile/dark_red/half, +/obj/machinery/camera/directional/south{ + c_tag = "Armory - Interior" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_edge, +/area/station/ai_monitored/security/armory) +"lrc" = ( +/obj/structure/bed/double, +/obj/item/bedsheet/nanotrasen/double, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/carpet/cyan, +/area/station/command/heads_quarters/blueshield) +"lrh" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 10 + }, +/obj/machinery/camera/directional/west{ + c_tag = "Medbay - Entrance"; + name = "medical camera"; + network = list("ss13","medical") + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"lri" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/atmos) +"lry" = ( +/obj/structure/chair/sofa/bench{ + dir = 1 + }, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"lrz" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 9 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"lrC" = ( +/obj/machinery/mecha_part_fabricator/maint{ + dir = 1; + name = "forgotten exosuit fabricator" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/science/research/abandoned) +"lrX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/textured, +/area/station/command/cc_dock) +"lrY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/fore) +"lsb" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/storage) +"lsf" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/grass, +/area/station/service/chapel) +"lsg" = ( +/obj/effect/turf_decal/trimline/green/arrow_cw{ + dir = 5 + }, +/obj/structure/sign/nanotrasen{ + pixel_y = 32 + }, +/obj/structure/closet/wardrobe/pjs, +/obj/effect/landmark/start/hangover/closet, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/small, +/area/station/commons/dorms) +"lsn" = ( +/obj/effect/spawner/random/trash/moisture_trap, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/crew_quarters/bar) +"lsA" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/item/radio/intercom/prison/directional/east, +/obj/item/plate, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/mess) +"lsG" = ( +/obj/structure/chair/sofa/corp/right{ + color = "#DE3A3A"; + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/obj/machinery/atm/directional/east, +/turf/open/floor/iron/cafeteria, +/area/station/service/cafeteria) +"lsQ" = ( +/obj/machinery/duct, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/turf/open/floor/iron/white, +/area/station/medical/storage) +"lte" = ( +/obj/machinery/computer/security{ + dir = 4 + }, +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/purple/fourcorners, +/turf/open/floor/iron/dark/textured, +/area/station/security/corrections_officer) +"lti" = ( +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"ltl" = ( +/obj/structure/chair/sofa/left/maroon{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"ltn" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/parquet, +/area/station/common/night_club) +"ltw" = ( +/obj/machinery/shower{ + pixel_y = 16 + }, +/obj/structure/drain, +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/stripes/box, +/obj/effect/turf_decal/siding/thinplating/dark/end, +/turf/open/floor/iron/checker, +/area/station/medical/virology) +"ltB" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"ltH" = ( +/obj/structure/flora/bush/sparsegrass/style_random, +/turf/open/floor/grass, +/area/station/service/chapel) +"ltI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/grimy, +/area/station/commons/lounge) +"ltK" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 9 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"ltN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/textured_large, +/area/station/cargo/office) +"ltT" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/structure/chair/stool/directional/west, +/obj/structure/sign/gym/right{ + pixel_y = 32 + }, +/turf/open/floor/iron/edge, +/area/station/commons/fitness/recreation/entertainment) +"lue" = ( +/obj/machinery/computer/mech_bay_power_console, +/obj/machinery/status_display/ai/directional/north, +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/bot, +/turf/open/floor/circuit/red, +/area/station/science/robotics/mechbay) +"luo" = ( +/obj/structure/window/reinforced/survival_pod/spawner/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/commons/fitness/recreation/entertainment) +"luq" = ( +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/box, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/power_room) +"lus" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/landmark/start/warden, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/security/office) +"luM" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"luS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Aft Central Primary Hallway" + }, +/turf/open/floor/iron/large, +/area/station/hallway/primary/central/aft) +"luV" = ( +/turf/closed/wall, +/area/station/engineering/atmos) +"lva" = ( +/obj/structure/table/glass, +/obj/item/book/manual/wiki/infections, +/obj/item/reagent_containers/syringe/antiviral, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/effect/turf_decal/trimline/dark_green/filled/line{ + dir = 4 + }, +/obj/structure/reagent_dispensers/wall/virusfood/directional/east, +/obj/machinery/camera/directional/east{ + c_tag = "Virology - Laboratory"; + name = "virology camera"; + network = list("ss13","medbay","virology") + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/medical/virology) +"lvs" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Barbershop Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/crew_quarters/bar) +"lvt" = ( +/obj/structure/table, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/item/folder/white{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/reagent_containers/cup/beaker/large{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/reagent_containers/cup/beaker{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/reagent_containers/dropper{ + pixel_x = -3; + pixel_y = -4 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/science/lab) +"lvx" = ( +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/ai) +"lvC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor, +/area/station/hallway/secondary/construction) +"lvJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/hobo_squat, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/greater) +"lvK" = ( +/obj/effect/spawner/random/vending/snackvend, +/obj/structure/sign/nanotrasen{ + pixel_y = 32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white/textured_large, +/area/station/hallway/primary/fore) +"lvL" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/lockers) +"lvM" = ( +/obj/machinery/portable_atmospherics/canister/plasma, +/obj/item/toy/plush/snakeplushie{ + name = "Trapped-In-Maint" + }, +/turf/open/floor/mineral/plasma, +/area/station/maintenance/port/greater) +"lvS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red/diagonal_centre, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/office) +"lvX" = ( +/obj/structure/closet, +/obj/item/crowbar, +/obj/item/radio, +/obj/item/restraints/handcuffs, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/edge, +/area/station/security/checkpoint/customs) +"lwb" = ( +/turf/closed/wall, +/area/station/command/heads_quarters/qm) +"lwj" = ( +/obj/machinery/door/airlock/external{ + name = "Departure Shuttle Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/landmark/navigate_destination/dockesc, +/turf/open/floor/catwalk_floor, +/area/station/hallway/secondary/exit/departure_lounge) +"lwE" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/desk_bell{ + pixel_x = 7; + pixel_y = 9 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "genetics_shutters"; + name = "Genetics Shutters" + }, +/obj/machinery/door/window/left/directional/west{ + name = "Genetics Desk"; + req_access = list("genetics") + }, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/folder/white, +/turf/open/floor/iron/white/textured_large, +/area/station/science/genetics) +"lwK" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/pen{ + pixel_y = 4 + }, +/obj/effect/turf_decal/siding/red{ + dir = 8 + }, +/turf/open/floor/iron/large, +/area/station/hallway/primary/fore) +"lwS" = ( +/obj/machinery/vending/games, +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/grimy, +/area/station/service/library) +"lxc" = ( +/obj/structure/disposalpipe/sorting/mail{ + dir = 4; + name = "Disposals Junction" + }, +/obj/effect/mapping_helpers/mail_sorting/supply/disposals, +/turf/open/floor/iron/textured_large, +/area/station/hallway/primary/aft) +"lxm" = ( +/obj/structure/window/spawner/directional/south, +/obj/machinery/camera/directional/west{ + c_tag = "Medbay - Cryogenics"; + name = "medical camera"; + network = list("ss13","medical") + }, +/obj/structure/disposaloutlet{ + dir = 4; + name = "Cargo Deliveries" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/trunk, +/obj/structure/window/spawner/directional/north, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) +"lxr" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/iron/textured_corner, +/area/station/engineering/atmos/hfr_room) +"lxv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/aft/upper) +"lxx" = ( +/obj/machinery/atmospherics/components/tank, +/obj/structure/sign/warning/no_smoking/circle/directional/east, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/engine, +/area/station/science/ordnance/storage) +"lxC" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/cafeteria, +/area/station/service/cafeteria) +"lxD" = ( +/obj/effect/turf_decal/trimline/dark_red/arrow_cw{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central) +"lxE" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/atmos/pumproom) +"lxQ" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"lym" = ( +/obj/item/kirbyplants/random, +/obj/structure/sign/poster/official/random/directional/south, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/hallway/secondary/command) +"lyr" = ( +/obj/machinery/light/floor/has_bulb, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"lyJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/department/science/ordnance_maint) +"lyY" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "bridgespace"; + name = "Bridge External Shutters" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/command/bridge) +"lzd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 1 + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 1; + name = "Chapel Junction" + }, +/obj/effect/turf_decal/vg_decals/department/sec, +/obj/effect/mapping_helpers/mail_sorting/service/chapel, +/turf/open/floor/iron/dark/textured_edge, +/area/station/hallway/primary/fore) +"lze" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/theater) +"lzk" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/requests_console/directional/east{ + department = "Atmospherics"; + name = "Atmospherics Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/structure/closet/radiation, +/obj/item/clothing/glasses/meson, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos/storage) +"lzN" = ( +/turf/open/floor/engine/plasma, +/area/station/engineering/atmos) +"lzR" = ( +/obj/structure/table, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/item/folder/blue{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/folder/yellow{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/radio/headset/headset_cargo{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/cargo/office) +"lzU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/sorting/mail{ + dir = 1; + name = "HoP Junction" + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/effect/mapping_helpers/mail_sorting/service/hop_office, +/turf/open/floor/iron/dark/textured_corner{ + dir = 8 + }, +/area/station/hallway/secondary/command) +"lAb" = ( +/obj/machinery/camera/directional/south{ + c_tag = "Bridge - Port"; + name = "command camera" + }, +/obj/effect/turf_decal/siding/dark_blue{ + dir = 10 + }, +/obj/effect/turf_decal/box, +/obj/machinery/recharge_station, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"lAi" = ( +/turf/closed/wall, +/area/station/maintenance/aft/lesser) +"lAp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/r_wall, +/area/station/maintenance/department/science/xenobiology) +"lAu" = ( +/mob/living/basic/pet/fox/renault, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/structure/bed/dogbed/renault, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"lAB" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/department/medical/central) +"lAG" = ( +/obj/structure/table, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/stock_parts/cell/emproof{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/effect/turf_decal/bot, +/obj/item/clothing/glasses/meson/engine, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/main) +"lAS" = ( +/turf/open/floor/iron/textured, +/area/space/nearstation) +"lAT" = ( +/obj/machinery/computer/prisoner/management, +/obj/effect/turf_decal/bot, +/obj/machinery/light/directional/north, +/obj/machinery/digital_clock/directional/north{ + pixel_y = 37 + }, +/turf/open/floor/carpet/royalblack, +/area/station/command/heads_quarters/hos) +"lBb" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "surgery"; + name = "Surgery Shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/medical/surgery) +"lBd" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Bar Maintenance" + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/service/bar, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/crew_quarters/bar) +"lBf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/turf/open/floor/iron/dark/textured, +/area/station/medical/medbay/central) +"lBg" = ( +/obj/item/flashlight/lantern, +/turf/open/floor/iron/chapel{ + dir = 10 + }, +/area/station/service/chapel) +"lBq" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 9 + }, +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured, +/area/station/security/lockers) +"lBP" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/machinery/computer/mecha{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/security/checkpoint/science/research) +"lBQ" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 9 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/main) +"lBW" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"lCb" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/security/checkpoint/supply) +"lCg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/green, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/textured, +/area/station/service/hydroponics/garden/abandoned) +"lCq" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"lCy" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/obj/machinery/door/airlock/atmos/glass{ + name = "Distribution Loop" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos/pumproom) +"lCA" = ( +/obj/machinery/chem_master, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/bot_red, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/chemistry) +"lCH" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/carpet/blue, +/area/station/command/bridge) +"lCP" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/lobby) +"lCU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/office) +"lCY" = ( +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"lDe" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/aisat/service) +"lDm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Command Hallway Maintenance" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/fore) +"lDn" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/item/kirbyplants/monkey, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/science/lab) +"lDu" = ( +/obj/item/toy/beach_ball/branded, +/obj/effect/spawner/liquids_spawner, +/turf/open/floor/lowered/iron/pool, +/area/station/security/prison) +"lDz" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 6 + }, +/obj/machinery/light_switch/directional/east, +/obj/machinery/computer/robotics{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/security/checkpoint/science/research) +"lDD" = ( +/obj/structure/window/reinforced/survival_pod/spawner/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured_large, +/area/station/commons/fitness/recreation/entertainment) +"lDF" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/window/fulltile, +/turf/open/floor/grass, +/area/station/common/cryopods) +"lDK" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/mob/living/basic/pet/dog/corgi, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/robotics/lab) +"lDP" = ( +/obj/structure/frame/machine, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine/atmos) +"lDY" = ( +/turf/closed/wall/r_wall, +/area/station/hallway/primary/aft) +"lEa" = ( +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/bitrunning/den) +"lEm" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine/atmos/lesser) +"lEn" = ( +/obj/structure/table/wood, +/obj/structure/displaycase/forsale{ + pixel_y = 8 + }, +/obj/effect/turf_decal/siding/green{ + dir = 5 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"lEr" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/service/bar, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/service{ + name = "Bar Backroom" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/large, +/area/station/service/bar) +"lEs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"lED" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"lFg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"lFl" = ( +/obj/effect/spawner/random/trash/garbage, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/department/science/ordnance_maint) +"lFv" = ( +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/textured_edge, +/area/station/cargo/drone_bay) +"lFE" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 8 + }, +/turf/open/space/basic, +/area/space/nearstation) +"lFM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/execution/transfer) +"lFP" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/obj/item/screwdriver{ + pixel_y = 10 + }, +/obj/item/radio/off{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/geiger_counter{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/structure/sign/poster/official/moth_hardhat/directional/east, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/textured, +/area/station/security/checkpoint/engineering) +"lFU" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/item/radio/intercom/directional/south, +/obj/structure/table, +/obj/machinery/cell_charger{ + pixel_y = 3 + }, +/obj/item/stock_parts/cell/high, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/cargo/miningdock) +"lGa" = ( +/obj/structure/table/wood, +/obj/item/food/grown/harebell, +/obj/item/food/grown/harebell{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/food/grown/harebell{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"lGi" = ( +/obj/machinery/computer/shuttle/mining{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown/half, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"lGk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/wood, +/area/station/commons/vacant_room/office) +"lGm" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/science/research) +"lGw" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/door/airlock/science{ + name = "Xenobiology Lab External Access" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/duct, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "sci-toxins-passthrough" + }, +/obj/effect/mapping_helpers/airlock/access/any/science/xenobio, +/turf/open/floor/iron/white/textured_large, +/area/station/science/xenobiology) +"lGy" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/bar) +"lGB" = ( +/obj/structure/table/reinforced, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/kitchen/abandoned) +"lGH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port) +"lGN" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/tile/blue/full, +/obj/item/surgery_tray, +/obj/structure/sign/poster/official/random/directional/south, +/obj/structure/sign/nanotrasen{ + pixel_x = 32 + }, +/turf/open/floor/iron/freezer, +/area/station/medical/surgery) +"lGO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/security/checkpoint/supply) +"lGS" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"lGT" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/green/line{ + dir = 4 + }, +/turf/open/floor/iron/white/side{ + dir = 8 + }, +/area/station/science/research) +"lGY" = ( +/turf/closed/wall/r_wall, +/area/station/command/heads_quarters/hop) +"lGZ" = ( +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/dead_body_placer, +/obj/effect/turf_decal/stripes/red/line{ + dir = 1 + }, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"lHf" = ( +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/lobby) +"lHx" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/hallway/primary/central/aft) +"lHD" = ( +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Cargo Maintenance" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/lesser) +"lHM" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Prison Satellite Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/security/greater) +"lHP" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/radio/intercom/directional/west, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/hallway/secondary/command) +"lHQ" = ( +/obj/structure/table/wood/fancy, +/obj/item/toy/crayon/spraycan/lubecan, +/obj/item/bikehorn, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_red/opposingcorners, +/turf/open/floor/iron, +/area/station/service/theater) +"lIc" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/main) +"lIj" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/box, +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2{ + dir = 8 + }, +/obj/machinery/newscaster/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/textured_large, +/area/station/hallway/primary/aft) +"lIn" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/commons/fitness/recreation/entertainment) +"lIu" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/effect/turf_decal/tile/red/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/commons/lounge) +"lIG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/station/security/courtroom) +"lIH" = ( +/obj/effect/turf_decal/siding/thinplating_new/terracotta{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"lIQ" = ( +/obj/effect/spawner/random/trash/box, +/obj/structure/sign/poster/contraband/random/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/terracotta, +/area/station/service/kitchen/abandoned) +"lIR" = ( +/obj/machinery/newscaster/directional/south, +/obj/structure/sign/poster/official/ian/directional/west, +/obj/structure/table/wood/fancy/royalblue, +/obj/item/reagent_containers/cup/glass/bottle/whiskey{ + pixel_x = -5; + pixel_y = 10 + }, +/obj/item/reagent_containers/cup/glass/flask{ + pixel_x = 7 + }, +/turf/open/floor/carpet/executive, +/area/station/command/heads_quarters/hop) +"lIT" = ( +/obj/structure/table, +/obj/item/reagent_containers/condiment/flour{ + pixel_x = -5; + pixel_y = 12 + }, +/obj/item/food/dough{ + pixel_x = 7; + pixel_y = 4 + }, +/obj/machinery/light/small/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"lIU" = ( +/obj/machinery/ticket_machine/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/hallway/secondary/command) +"lJs" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"lJu" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/turf/closed/wall, +/area/station/maintenance/port) +"lJw" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured, +/area/station/engineering/power_room) +"lJI" = ( +/obj/machinery/camera/directional/east{ + c_tag = "Science - Ordnance Launch Site"; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/machinery/status_display/evac/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/science/ordnance/testlab) +"lJJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/turf/open/floor/iron/white/diagonal, +/area/station/medical/medbay/central) +"lJK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/bot, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/wood, +/area/station/commons/vacant_room/office) +"lJL" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Atmospherics - Center"; + name = "atmospherics camera"; + network = list("ss13","engine") + }, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/atmos) +"lKg" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_edge, +/area/station/security/checkpoint/supply) +"lKm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/large, +/area/station/commons/storage/primary) +"lKw" = ( +/obj/structure/table/reinforced, +/obj/item/storage/briefcase/secure{ + pixel_y = 4 + }, +/obj/item/taperecorder{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/siding/purple, +/turf/open/floor/iron/white/textured_large, +/area/station/command/heads_quarters/rd) +"lKO" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/obj/structure/sign/poster/official/moth_piping/directional/east, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/maintenance/disposal/incinerator) +"lKX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/science/ordnance_maint) +"lLk" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start/chemist, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/chemistry) +"lLx" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/light/warm/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/visible{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/atmos/pumproom) +"lLy" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"lLC" = ( +/mob/living/basic/chicken{ + name = "Kentucky"; + real_name = "Kentucky" + }, +/turf/open/floor/grass, +/area/station/service/hydroponics/garden) +"lLU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/station/medical/psychology) +"lMb" = ( +/obj/structure/table, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/hallway/secondary/command) +"lMi" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/gravity_generator) +"lMj" = ( +/turf/closed/wall/r_wall, +/area/station/tcommsat/computer) +"lMr" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/landmark/start/bartender, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, +/area/station/service/bar) +"lMt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/landmark/start/cook, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"lMx" = ( +/obj/machinery/door/airlock/maintenance{ + critical_machine = 1; + name = "Cold Room Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/surgery, +/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ + dir = 1 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical/central) +"lMC" = ( +/obj/machinery/door/window/left/directional/east{ + name = "Medbay Deliveries"; + req_access = list("medical") + }, +/obj/structure/window/reinforced/spawner/directional/north{ + layer = 2.9 + }, +/obj/machinery/door/firedoor, +/obj/structure/sign/calendar/directional/south, +/obj/effect/turf_decal/delivery/blue, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/storage) +"lML" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "Cell2Privacy"; + name = "curtain" + }, +/turf/open/floor/plating, +/area/station/security/prison) +"lMS" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/port) +"lMZ" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/machinery/computer/pod/old/mass_driver_controller/ordnancedriver{ + pixel_y = -24 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/delivery/red, +/obj/machinery/doppler_array{ + dir = 8 + }, +/turf/open/floor/iron/textured, +/area/station/science/ordnance/testlab) +"lNn" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Virology Maintenance" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/all/medical/virology, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/medical/virology) +"lNr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/large, +/area/station/commons/fitness/recreation) +"lNt" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/effect/mapping_helpers/airlock/access/any/command/maintenance, +/obj/machinery/door/airlock/external/glass{ + name = "External Access"; + space_dir = 1 + }, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/upper) +"lNu" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/medical/medbay/central) +"lNx" = ( +/obj/machinery/chem_master, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white/textured_edge, +/area/station/science/xenobiology) +"lNy" = ( +/obj/structure/trash_pile, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/aft) +"lNA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/red/diagonal_centre, +/turf/open/floor/iron/dark/diagonal, +/area/station/hallway/secondary/exit/departure_lounge) +"lNL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/sorting) +"lOc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/starboard/upper) +"lOd" = ( +/obj/effect/spawner/random/maintenance/four, +/obj/effect/spawner/random/entertainment/money, +/turf/open/floor/plating, +/area/station/maintenance/department/medical) +"lOi" = ( +/obj/effect/turf_decal/tile/red/anticorner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/pod/dark, +/area/station/service/chapel/office) +"lOt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron, +/area/station/service/bar) +"lOz" = ( +/obj/machinery/power/smes, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/solars/starboard/aft) +"lOC" = ( +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/diagonal, +/area/station/hallway/secondary/service) +"lOV" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/item/folder/yellow{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/machinery/door/window/right/directional/west{ + name = "Atmospherics Desk"; + req_access = list("atmospherics") + }, +/obj/structure/desk_bell{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/machinery/door/poddoor/preopen{ + id = "atmoslock"; + name = "Atmospherics Lockdown Blast Door" + }, +/obj/item/pen{ + pixel_x = -4; + pixel_y = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos/storage/gas) +"lOY" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/lobby) +"lPa" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/main) +"lPh" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/structure/sign/poster/contraband/communist_state/directional/west, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/command/storage/eva) +"lPo" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth/fancy/mechanical{ + id = "barbershopcurtains" + }, +/turf/open/floor/plating, +/area/station/service/barber) +"lPC" = ( +/obj/structure/sign/warning/secure_area/directional/north, +/turf/open/space/basic, +/area/space) +"lPJ" = ( +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Research Maintenance" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/crew_quarters/bar) +"lPR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/lawyer, +/turf/open/floor/carpet, +/area/station/security/courtroom) +"lPT" = ( +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/grass/jungle/a/style_random, +/obj/structure/window/reinforced/fulltile, +/turf/open/misc/asteroid, +/area/station/engineering/lobby) +"lQf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/bar) +"lQh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/fore) +"lQk" = ( +/obj/item/assembly/timer{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/assembly/timer{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/assembly/voice{ + pixel_x = -7 + }, +/obj/item/assembly/voice{ + pixel_x = -7 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/item/assembly/signaler{ + pixel_x = 6 + }, +/obj/item/assembly/signaler{ + pixel_x = 6 + }, +/obj/item/assembly/signaler{ + pixel_x = 6 + }, +/obj/item/assembly/signaler{ + pixel_x = 6 + }, +/obj/item/assembly/signaler{ + pixel_x = 6 + }, +/obj/structure/rack, +/obj/item/t_scanner, +/obj/item/t_scanner, +/obj/machinery/requests_console/auto_name/directional/west, +/obj/effect/turf_decal/bot, +/turf/open/floor/pod/dark, +/area/station/engineering/storage/tech) +"lQo" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/aft) +"lQr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light_switch/directional/east, +/obj/structure/sink/directional/west, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, +/area/station/service/bar) +"lQt" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/aft) +"lQw" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 9 + }, +/obj/structure/flora/bush/jungle, +/turf/open/floor/grass, +/area/station/hallway/primary/central/fore) +"lQC" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/window/right/directional/north{ + name = "Security Deliveries"; + req_access = list("security") + }, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/lockers) +"lQG" = ( +/obj/structure/sign/poster/contraband/mothic_rations, +/turf/closed/wall, +/area/station/service/kitchen) +"lQK" = ( +/obj/structure/railing, +/obj/structure/bed, +/obj/structure/fluff/beach_umbrella/cap, +/turf/open/floor/iron/white/small, +/area/station/common/pool) +"lQO" = ( +/obj/effect/turf_decal/bot_white/left, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/anticorner{ + dir = 8 + }, +/turf/open/floor/iron/textured_corner{ + dir = 4 + }, +/area/station/engineering/gravity_generator) +"lQX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/hand_labeler, +/obj/item/stack/package_wrap, +/turf/open/floor/iron/dark/textured, +/area/station/security/warden) +"lRk" = ( +/obj/machinery/firealarm/directional/west, +/obj/machinery/camera/directional/west{ + c_tag = "Bridge - Gateway Chamber"; + name = "command camera" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/gateway) +"lRp" = ( +/obj/structure/chair/plastic, +/turf/open/floor/iron/dark/small, +/area/station/security/prison/work) +"lRv" = ( +/obj/effect/turf_decal/trimline/dark_red/arrow_cw{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central) +"lRB" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge, +/area/station/hallway/primary/aft) +"lRD" = ( +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + dir = 4; + name = "blue line" + }, +/obj/effect/turf_decal/trimline/blue/line, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/mid_joiner, +/obj/effect/turf_decal/trimline/blue/mid_joiner{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/prison) +"lRS" = ( +/obj/machinery/recharge_station, +/obj/effect/landmark/start/hangover, +/obj/machinery/light/small/directional/north, +/obj/machinery/button/door/directional/north{ + id = "UnitB"; + name = "Lock Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet) +"lRT" = ( +/obj/structure/loom, +/obj/machinery/camera/directional/north{ + c_tag = "Prison - Work Room"; + network = list("ss13","prison") + }, +/obj/structure/cable, +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/small, +/area/station/security/prison/work) +"lSd" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/machinery/status_display/ai/directional/east, +/obj/machinery/light/cold/directional/east, +/obj/structure/rack, +/obj/item/book/manual/wiki/chemistry{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/book/manual/wiki/grenades, +/obj/item/book/manual/wiki/plumbing{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/plunger, +/obj/item/plunger{ + pixel_x = -9 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"lSs" = ( +/obj/machinery/door/airlock/engineering{ + name = "Construction Area" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/textured_large, +/area/station/hallway/secondary/construction) +"lSC" = ( +/obj/machinery/computer/station_alert{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 9 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/lobby) +"lSD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/hallway/secondary/command) +"lSN" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/button/door/directional/west{ + id = "BarBlastDoor"; + name = "Bar Blast Doors"; + pixel_y = 6; + req_access = list("bar") + }, +/obj/machinery/button/door/directional/west{ + id = "Barshutters"; + name = "Bar Shutters"; + pixel_y = -7 + }, +/turf/open/floor/iron, +/area/station/service/bar) +"lSP" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8; + name = "Air to Distro" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/science/xenobiology) +"lSU" = ( +/obj/structure/table/reinforced/rglass, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/turf_decal/tile/green/anticorner, +/obj/item/storage/box/pdas{ + pixel_y = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"lSX" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/green/line{ + dir = 1 + }, +/turf/open/floor/iron/white/side, +/area/station/science/research) +"lSY" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"lSZ" = ( +/obj/structure/cable, +/turf/open/floor/iron/textured_large, +/area/station/engineering/power_room) +"lTb" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/delivery, +/turf/open/floor/engine, +/area/station/engineering/atmos/storage/gas) +"lTl" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"lTr" = ( +/turf/open/floor/iron/dark/textured_large, +/area/station/science/robotics/lab) +"lTs" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 8 + }, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/main) +"lTu" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/structure/closet/crate/bin, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/security/prison/work) +"lTw" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Funeral Room Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/service/chapel_office, +/turf/open/floor/pod, +/area/station/service/chapel/funeral) +"lTy" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/dark/textured_edge, +/area/station/security/brig) +"lTD" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/north, +/obj/structure/window/reinforced/plasma/spawner/directional/west, +/obj/effect/turf_decal/tile/green/full, +/obj/machinery/atmospherics/pipe/smart/manifold/green/visible, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"lTE" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/science/genetics) +"lTS" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/commons/fitness/recreation) +"lTX" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/primary/central) +"lUf" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/fueltank/large, +/turf/open/floor/iron/textured, +/area/station/engineering/main) +"lUi" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/aft) +"lUm" = ( +/obj/effect/spawner/random/trash/garbage, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/greater) +"lUn" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/external/glass{ + name = "Arrival Airlock"; + space_dir = 1 + }, +/turf/open/floor/catwalk_floor, +/area/station/hallway/secondary/entry) +"lUs" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/effect/turf_decal/trimline/blue/filled/warning, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/atmos/hfr_room) +"lUt" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"lUA" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured_corner, +/area/station/engineering/lobby) +"lUF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"lUZ" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/atmos/pumproom) +"lVc" = ( +/obj/effect/spawner/random/trash/mopbucket, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"lVi" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/item/pen/fountain{ + pixel_y = 5 + }, +/obj/structure/table/reinforced/plastitaniumglass, +/obj/effect/turf_decal/tile/dark_blue/anticorner{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"lVp" = ( +/mob/living/basic/lizard/wags_his_tail, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/dark/fourcorners, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/effect/landmark/event_spawn, +/turf/open/floor/noslip, +/area/station/service/janitor) +"lVF" = ( +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/lobby) +"lVG" = ( +/obj/structure/chair/stool/directional/south, +/turf/open/floor/iron/textured_large, +/area/station/engineering/lobby) +"lVP" = ( +/obj/structure/extinguisher_cabinet/directional/south, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/line, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/science/ordnance) +"lVW" = ( +/obj/structure/sign/directions/command/directional/west{ + dir = 1; + pixel_y = 8 + }, +/obj/structure/sign/directions/security/directional/west{ + dir = 1 + }, +/obj/structure/sign/directions/science/directional/west{ + dir = 1; + pixel_y = -8 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/iron/grimy, +/area/station/hallway/primary/central/fore) +"lWc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/turf/open/floor/iron/diagonal, +/area/station/hallway/secondary/exit/departure_lounge) +"lWk" = ( +/obj/structure/chair/sofa/corp{ + color = "#DE3A3A" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/wood/large, +/area/station/science/research) +"lWr" = ( +/obj/machinery/door/airlock/external/ruin, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/effect/mapping_helpers/airlock/access/any/service/crematorium, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/service/chapel/office) +"lWs" = ( +/obj/structure/curtain/cloth, +/obj/structure/chair/stool/directional/west, +/obj/structure/window/spawner/directional/south, +/obj/structure/mirror/directional/east, +/turf/open/floor/iron/white/small, +/area/station/common/pool) +"lWv" = ( +/obj/structure/table, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 9 + }, +/obj/machinery/firealarm/directional/north, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/stack/sheet/plasteel{ + amount = 20; + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/stack/sheet/iron/fifty, +/obj/item/storage/belt/utility{ + pixel_y = 2 + }, +/turf/open/floor/iron/white, +/area/station/science/lab) +"lWz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/secondary/entry) +"lWD" = ( +/obj/structure/flora/bush/sparsegrass, +/obj/structure/flora/bush/lavendergrass, +/obj/structure/window/spawner/directional/north, +/turf/open/floor/grass, +/area/station/hallway/secondary/exit/departure_lounge) +"lWL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/grimy, +/area/station/commons/dorms) +"lWP" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Hangar Maintenance" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/unres, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical) +"lWY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/warehouse) +"lWZ" = ( +/obj/machinery/status_display/ai/directional/west, +/obj/machinery/light/warm/directional/west, +/obj/machinery/camera/directional/west{ + c_tag = "Service - Stage Front"; + name = "service camera" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/theater) +"lXa" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 5 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"lXh" = ( +/obj/effect/turf_decal/stripes/red/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"lXr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"lXt" = ( +/obj/machinery/door/airlock/hop{ + name = "Head of Personel's Quarters" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/hop, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/siding/wood/end, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hop) +"lXz" = ( +/obj/effect/turf_decal/trimline/dark_red/arrow_cw{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/camera/directional/north{ + c_tag = "Departures - Fore"; + name = "departures camera" + }, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"lXH" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple/diagonal_centre, +/turf/open/floor/iron/white/diagonal, +/area/station/science/research) +"lXQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light/neon_lining{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"lXR" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white/textured_edge, +/area/station/science/research) +"lYd" = ( +/obj/machinery/airalarm/directional/west, +/obj/machinery/light/warm/directional/west, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/pen{ + pixel_y = 4 + }, +/obj/structure/table/reinforced/rglass, +/turf/open/floor/carpet/blue, +/area/station/command/heads_quarters/cmo) +"lYn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/binoculars, +/turf/open/floor/glass/reinforced, +/area/station/maintenance/port/fore) +"lYp" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/wood/large, +/area/station/security/courtroom) +"lYN" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 2 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall21"; + location = "hall20" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/command) +"lYR" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/atmos) +"lZd" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/command/gateway) +"lZg" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/port/central) +"lZh" = ( +/obj/structure/table/wood, +/obj/item/folder/yellow{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/stamp/head/qm{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/stamp/denied{ + pixel_x = -7; + pixel_y = 9 + }, +/obj/item/stamp{ + pixel_x = -7; + pixel_y = 1 + }, +/turf/open/floor/carpet/black, +/area/station/command/heads_quarters/qm) +"lZl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/grunge{ + id_tag = "Cell2Privacy"; + name = "Cell 2" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/prison) +"lZs" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/security/brig) +"lZP" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/security/greater) +"lZS" = ( +/obj/effect/turf_decal/trimline/green/filled/warning, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/fore) +"lZV" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/textured_edge, +/area/station/science/ordnance/testlab) +"mab" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/blue/filled/warning, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/hallway/secondary/command) +"mak" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/herringbone, +/area/station/service/theater) +"mav" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/closet/firecloset/wall{ + pixel_y = 32 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/white/end, +/obj/effect/turf_decal/trimline/white/mid_joiner, +/turf/open/floor/iron/dark/textured_edge, +/area/station/hallway/secondary/command) +"maw" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/storage) +"maK" = ( +/obj/structure/bookcase/random/reference, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/large, +/area/station/service/library) +"mbc" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/chair/sofa/bench{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/siding/green{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"mbE" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 8; + id = "teleporterhubshutters"; + name = "Teleporter Shutters" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/stairs/medium{ + dir = 4 + }, +/area/station/command/teleporter) +"mbJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/department/science/ordnance_maint) +"mbW" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/iron/dark/textured, +/area/station/security/corrections_officer) +"mcu" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/textured_edge, +/area/station/medical/surgery) +"mcB" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"mcC" = ( +/obj/structure/bed, +/obj/item/bedsheet/green, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/iron/grimy, +/area/station/service/chapel) +"mcG" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/solars/starboard/aft) +"mcK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/lesser) +"mcO" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/wrench, +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/construction/mining/aux_base) +"mcP" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/station/engineering/main) +"mcR" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"mcW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/duct, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/storage) +"mdf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/lesser) +"mdo" = ( +/obj/structure/cable, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/large, +/area/station/commons/dorms/laundry) +"mdu" = ( +/obj/structure/sign/nanotrasen{ + pixel_x = -32 + }, +/obj/machinery/computer/rdconsole, +/obj/effect/turf_decal/tile/purple/half{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"mdF" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/door/window/right/directional/north{ + name = "Jim Norton's Quebecois Coffee"; + req_one_access = list("service","maint_tunnels") + }, +/turf/open/floor/wood, +/area/station/hallway/secondary/entry) +"mdG" = ( +/obj/structure/window/spawner/directional/north, +/mob/living/basic/lizard/tegu/gus, +/turf/open/misc/beach/sand, +/area/station/science/research) +"mdK" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/showroomfloor, +/area/station/medical/coldroom) +"mdM" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/hallway/primary/fore) +"mdP" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/cmo) +"mel" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/wood, +/area/station/commons/vacant_room/office) +"mep" = ( +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Correction Officer Lounge Maintenance" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/security/greater) +"meq" = ( +/obj/machinery/door/airlock/external{ + name = "MiniSat External Access" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/mapping_helpers/airlock/access/any/science/minisat, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/turf/open/floor/catwalk_floor, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"mev" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/public/glass{ + name = "Fore Primary Hallway" + }, +/obj/structure/sign/directions/vault/directional/east, +/obj/structure/sign/directions/command/directional/east{ + dir = 1; + pixel_y = 8 + }, +/obj/structure/sign/directions/security/directional/east{ + dir = 2; + pixel_y = -8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/command) +"meE" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/firealarm/directional/east, +/obj/machinery/photocopier, +/obj/effect/turf_decal/bot, +/turf/open/floor/wood, +/area/station/commons/vacant_room/office) +"meP" = ( +/obj/structure/sign/poster/contraband/dancing_honk/directional/south, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/science/robotics/mechbay) +"meR" = ( +/turf/open/floor/carpet/neon/simple/pink, +/area/station/science/xenobiology) +"mfb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall19"; + location = "hall18" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/command) +"mfg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"mfi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"mfm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/treatment_center) +"mfr" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/science/ordnance/office) +"mfT" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"mgk" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"mgl" = ( +/obj/structure/table/reinforced/rglass, +/obj/structure/window/reinforced/spawner/directional/east{ + layer = 2.9 + }, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/pen{ + pixel_y = 4 + }, +/turf/open/floor/carpet/purple, +/area/station/command/heads_quarters/rd) +"mgm" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/white/textured_large, +/area/station/hallway/primary/central/aft) +"mgt" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 10 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"mgy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "atmoshfr" + }, +/turf/open/floor/iron/stairs/right{ + dir = 4 + }, +/area/station/engineering/atmos/hfr_room) +"mgR" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/flowers_br, +/obj/structure/window/fulltile, +/turf/open/floor/grass, +/area/station/commons/dorms) +"mgS" = ( +/obj/machinery/airalarm/directional/south, +/obj/structure/closet/secure_closet/quartermaster, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/qm) +"mgV" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/airalarm/directional/north, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/textured_edge, +/area/station/hallway/primary/aft) +"mha" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/effect/turf_decal/tile/red/opposingcorners{ + dir = 1 + }, +/obj/structure/sign/poster/official/high_class_martini/directional/north, +/turf/open/floor/iron, +/area/station/commons/lounge) +"mhe" = ( +/turf/closed/wall, +/area/station/commons/dorms) +"mhj" = ( +/turf/open/floor/iron/white/small, +/area/station/common/pool) +"mhn" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/box, +/obj/structure/reagent_dispensers/fueltank/large, +/turf/open/floor/iron/dark/textured, +/area/station/science/robotics/mechbay) +"mhx" = ( +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"mhC" = ( +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Hangar Maintenance" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/central) +"mhK" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + id = "commissaryshutters2"; + name = "Vacant Commissary Shutters" + }, +/turf/open/floor/iron/large, +/area/station/commons/vacant_room/commissary) +"mhO" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/west, +/obj/effect/turf_decal/tile/dark_blue/full, +/obj/effect/turf_decal/tile/dark_blue/full, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/obj/machinery/computer/atmos_control/oxygen_tank{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"mhQ" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/atmos) +"mhR" = ( +/turf/open/floor/light/colour_cycle/dancefloor_a, +/area/station/common/night_club) +"mhY" = ( +/obj/structure/chair/stool/directional/south{ + dir = 8 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/lobby) +"miz" = ( +/obj/structure/bed, +/obj/item/bedsheet/red, +/obj/effect/landmark/start/prisoner, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 9 + }, +/obj/machinery/button/curtain{ + id = "Cell5Privacy"; + pixel_x = -4; + pixel_y = 24 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"miR" = ( +/obj/machinery/airalarm/directional/north, +/obj/effect/mapping_helpers/airalarm/unlocked, +/obj/structure/table/wood/fancy, +/turf/open/floor/pod/dark, +/area/station/service/chapel/office) +"miV" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/research_director, +/turf/open/floor/iron/white, +/area/station/science/research) +"miZ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"mja" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red/diagonal_centre, +/turf/open/floor/iron/dark/diagonal, +/area/station/hallway/secondary/exit/departure_lounge) +"mjj" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/textured_corner{ + dir = 8 + }, +/area/station/engineering/power_room) +"mjr" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured_corner{ + dir = 4 + }, +/area/station/hallway/primary/aft) +"mjy" = ( +/obj/structure/sign/logo{ + icon_state = "nanotrasen_sign5"; + pixel_y = 32 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/textured_edge, +/area/station/hallway/primary/aft) +"mjA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/obj/machinery/firealarm/directional/east, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/security/prison) +"mjG" = ( +/obj/item/folder/blue{ + pixel_y = 4 + }, +/obj/item/pen{ + pixel_y = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/table/wood/fancy/blue, +/obj/item/clipboard{ + pixel_x = 15; + pixel_y = 4 + }, +/turf/open/floor/wood/large, +/area/station/security/courtroom) +"mjH" = ( +/turf/closed/wall/r_wall, +/area/station/security/execution/education) +"mjK" = ( +/obj/structure/closet/crate/bin, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/effect/spawner/random/contraband/prison, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/mess) +"mjM" = ( +/obj/structure/table, +/obj/item/stock_parts/subspace/ansible, +/obj/item/stock_parts/subspace/ansible, +/obj/item/stock_parts/subspace/ansible, +/obj/machinery/light/small/directional/west, +/obj/machinery/status_display/ai/directional/north, +/obj/machinery/light_switch/directional/west, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/storage/tcomms) +"mjP" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/landmark/start/security_officer, +/turf/open/floor/glass/reinforced, +/area/station/security/office) +"mjS" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/carpet/blue, +/area/station/command/bridge) +"mjX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/poddoor/shutters{ + dir = 1; + id = "securitybridge"; + name = "Security Pod Space Bridge" + }, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/department/security/brig) +"mkd" = ( +/obj/machinery/door/airlock{ + id_tag = "Cabin2"; + name = "Cabin 2" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/large, +/area/station/commons/dorms) +"mkj" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/teleporter) +"mkr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/duct, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/engine/atmos) +"mks" = ( +/obj/structure/rack, +/obj/effect/spawner/random/techstorage/command_all, +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/bot, +/turf/open/floor/pod/dark, +/area/station/engineering/storage/tech) +"mku" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/textured, +/area/station/hallway/primary/aft) +"mkw" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall13"; + location = "hall12" + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"mky" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge, +/area/station/hallway/primary/aft) +"mkK" = ( +/obj/effect/turf_decal/trimline/dark_red/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/textured_corner{ + dir = 8 + }, +/area/station/science/ordnance) +"mle" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/commons/fitness/recreation/entertainment) +"mls" = ( +/obj/structure/table/glass, +/obj/item/clothing/neck/stethoscope, +/obj/item/wrench/medical, +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/turf/open/floor/iron/dark/textured, +/area/station/medical/medbay/central) +"mlv" = ( +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/bar) +"mlz" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/turf/open/floor/iron/diagonal, +/area/station/hallway/secondary/service) +"mlP" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/grimy, +/area/station/service/library) +"mlZ" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 6 + }, +/obj/item/kirbyplants/random, +/obj/structure/sign/departments/holy/directional/south, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/primary/fore) +"mmd" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/landmark/start/station_engineer, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/lobby) +"mmk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/hallway/primary/fore) +"mmq" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 6 + }, +/obj/structure/chair/office, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/iron, +/area/station/security/checkpoint/customs) +"mms" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/green/arrow_ccw, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/iron/small, +/area/station/commons/dorms) +"mmw" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/fore) +"mmy" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/checker, +/area/station/service/theater) +"mmJ" = ( +/obj/machinery/pdapainter/supply, +/obj/effect/turf_decal/siding/wood, +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/bot, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/qm) +"mna" = ( +/obj/structure/plasticflaps{ + name = "Deliveries" + }, +/obj/structure/window/reinforced/spawner/directional/west{ + layer = 2.9; + pixel_x = -4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/window/right/directional/north{ + name = "Deliveries"; + req_access = list("shipping") + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/sorting) +"mnf" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/textured_edge, +/area/station/hallway/primary/aft) +"mnn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/poddoor/shutters{ + dir = 1; + id = "prisonbridge"; + name = "Gulag Shuttle Space Bridge" + }, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/department/security/greater) +"mnt" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/greater) +"mnI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/security/prison) +"mnM" = ( +/obj/structure/chair/sofa/left/brown{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/wood, +/area/station/maintenance/port/aft) +"mnP" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/window/fulltile, +/turf/open/floor/grass, +/area/station/commons/dorms) +"mnQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/station/maintenance/department/science/xenobiology) +"mnR" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_large, +/area/station/cargo/lobby) +"mod" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/obj/effect/spawner/structure/window/reinforced/plasma, +/turf/open/floor/plating, +/area/station/engineering/atmos) +"moh" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/aft) +"mok" = ( +/obj/structure/flora/bush/flowers_yw/style_random, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/beebox, +/obj/item/queen_bee/bought, +/turf/open/floor/grass, +/area/station/service/chapel) +"mom" = ( +/obj/machinery/corral_corner{ + mapping_id = "5" + }, +/obj/machinery/light/neon_lining{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"moJ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos/storage) +"moK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/camera/directional/south{ + c_tag = "Arrivals - Starboard"; + name = "arrivals camera" + }, +/obj/structure/closet/emcloset/wall{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/white/end{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/secondary/entry) +"moV" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/hobo_squat, +/turf/open/floor/iron/textured, +/area/station/maintenance/port) +"moZ" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, +/obj/structure/cable, +/obj/machinery/status_display/evac/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/atmos) +"mpm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/aft/greater) +"mpp" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/item/radio/intercom/directional/north, +/obj/machinery/camera/directional/north{ + c_tag = "Dormitories - Fitness Area"; + name = "dormitories camera" + }, +/turf/open/floor/iron/edge, +/area/station/commons/fitness/recreation/entertainment) +"mpu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/security/range) +"mpF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/dark_red/diagonal_centre, +/obj/effect/turf_decal/tile/neutral/diagonal_centre, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/execution/transfer) +"mpN" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/machinery/light/warm/directional/west, +/obj/machinery/camera/directional/west{ + c_tag = "Dormitories - Entertainment Center"; + name = "dormitories camera" + }, +/turf/open/floor/wood/large, +/area/station/commons/fitness/recreation/entertainment) +"mqd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/closet_empty, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/lesser) +"mqk" = ( +/obj/effect/turf_decal/tile/dark/half, +/obj/machinery/growing/tray, +/turf/open/floor/iron/half, +/area/station/service/hydroponics) +"mql" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/station/solars/port/aft) +"mqA" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/ai) +"mqB" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/large, +/area/station/commons/fitness/recreation/entertainment) +"mqJ" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/computer/cargo, +/obj/structure/cable, +/turf/open/floor/iron/textured, +/area/station/security/checkpoint/supply) +"mqP" = ( +/obj/machinery/airlock_controller/incinerator_atmos{ + pixel_y = -24 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/maintenance/disposal/incinerator) +"mqS" = ( +/obj/machinery/door/airlock/security{ + name = "Court Cell" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "brig-entrance-fore" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/all/security/court, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/office) +"mqY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/spawner/random/trash/garbage, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical/central) +"mrc" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/hallway/primary/aft) +"mrl" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/science/ordnance/office) +"mrL" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/carpet/blue, +/area/station/command/bridge) +"mrM" = ( +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/greater) +"mrV" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine/atmos) +"mrZ" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Prison Satellite Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/security/execution/transfer) +"msv" = ( +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/primary/central/aft) +"msQ" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical, +/obj/item/clothing/gloves/color/black, +/turf/open/floor/iron/textured, +/area/station/science/research/abandoned) +"mth" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/pen{ + pixel_y = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/cargo/sorting) +"mti" = ( +/turf/open/floor/carpet, +/area/station/service/library) +"mto" = ( +/obj/effect/spawner/random/maintenance/two, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/aft) +"mtC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/corrections_officer) +"mtF" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"mtY" = ( +/obj/structure/table/optable, +/obj/machinery/button/door/directional/east{ + id = "surgery"; + name = "Privacy Shutters Control"; + pixel_y = -7 + }, +/obj/effect/turf_decal/tile/blue/full, +/obj/machinery/defibrillator_mount/directional/east{ + pixel_y = 4 + }, +/obj/effect/turf_decal/box/blue, +/turf/open/floor/iron/freezer, +/area/station/medical/surgery) +"muc" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "Port to Fuel Pipe" + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"mui" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/theater) +"muv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/terracotta, +/area/station/service/kitchen/abandoned) +"muR" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/cargo/storage) +"muX" = ( +/obj/structure/closet/secure_closet/hydroponics, +/turf/open/floor/wood, +/area/station/service/hydroponics/upper) +"muZ" = ( +/obj/structure/closet/bombcloset, +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/science/ordnance) +"mvb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/turf_decal/tile/dark_red/anticorner{ + dir = 1 + }, +/obj/machinery/light_switch/directional/west{ + pixel_x = -37 + }, +/obj/machinery/button/door/directional/west{ + id = "armory"; + name = "Armory Shutters"; + req_access = list("armory") + }, +/turf/open/floor/iron/dark/textured_corner, +/area/station/ai_monitored/security/armory) +"mvd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/textured_large, +/area/station/construction/mining/aux_base) +"mvz" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/aft) +"mvA" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 5 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/white/end{ + dir = 8 + }, +/obj/structure/closet/firecloset/wall{ + pixel_x = 32 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"mwd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"mwx" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_edge, +/area/station/science/research) +"mwB" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood/end{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/obj/machinery/light/warm/directional/west, +/obj/machinery/cassette/adv_cassette_deck{ + pixel_y = 8 + }, +/turf/open/floor/wood/large, +/area/station/service/library) +"mwP" = ( +/obj/structure/closet/emcloset/wall{ + pixel_y = 32 + }, +/obj/effect/turf_decal/trimline/white/end, +/obj/effect/turf_decal/trimline/white/mid_joiner, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 8 + }, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/glass/reinforced, +/area/station/science/research) +"mwR" = ( +/obj/machinery/power/shuttle_engine/heater, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"mwS" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/textured_edge, +/area/station/science/genetics) +"mwY" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Auxillary Base Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/aux_base, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/construction/mining/aux_base) +"mxe" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/machinery/computer/cryopod/directional/west, +/obj/effect/turf_decal/delivery/white{ + color = "#00ff00" + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/security/prison) +"mxk" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/turf/open/floor/iron/textured_large, +/area/station/engineering/main) +"mxq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/turf/open/floor/iron/white/diagonal, +/area/station/medical/medbay/central) +"mxy" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/machinery/camera/directional/east{ + c_tag = "Xeniobiology - Xenobiology Computers"; + name = "xenobiology camera"; + network = list("ss13","xeno","rd") + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/science/xenobiology) +"mxD" = ( +/obj/structure/chair/wood{ + dir = 4; + layer = 2.8 + }, +/turf/open/floor/carpet/executive, +/area/station/command/heads_quarters/hop) +"mxK" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/green/line{ + dir = 8 + }, +/turf/open/floor/iron/white/side{ + dir = 4 + }, +/area/station/science/research) +"mym" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/engine, +/area/station/engineering/main) +"myq" = ( +/obj/structure/closet/crate/solarpanel_small, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/solars/port/aft) +"myv" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/iron/textured_large, +/area/station/cargo/lobby) +"myC" = ( +/obj/machinery/power/shuttle_engine/heater, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/obj/structure/window/reinforced/plasma/spawner/directional/east, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft) +"myG" = ( +/obj/structure/chair/stool/directional/north, +/turf/open/floor/wood/large, +/area/station/commons/fitness/recreation/entertainment) +"myM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/storage) +"myX" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"mzb" = ( +/obj/structure/cable, +/obj/effect/turf_decal/vg_decals/numbers/one, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/command) +"mzc" = ( +/obj/structure/table, +/obj/item/folder/yellow, +/obj/item/storage/medkit/regular{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/paper/pamphlet/gateway, +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/turf/open/floor/iron/dark/textured, +/area/station/command/gateway) +"mzk" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/flasher/directional/east{ + id = "secentranceflasher"; + pixel_x = 24; + pixel_y = 23 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured, +/area/station/security/brig) +"mzm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ + dir = 1 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/engine, +/area/station/maintenance/disposal/incinerator) +"mzy" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"mAj" = ( +/obj/machinery/power/shuttle_engine/huge{ + dir = 4 + }, +/turf/open/floor/iron/textured, +/area/space/nearstation) +"mAr" = ( +/obj/structure/table/reinforced/rglass, +/obj/structure/cable, +/obj/item/folder/white{ + pixel_y = 4 + }, +/obj/item/stamp/head/rd{ + pixel_y = 4 + }, +/turf/open/floor/carpet/purple, +/area/station/command/heads_quarters/rd) +"mAs" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external/ruin, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/effect/mapping_helpers/airlock/access/any/service/chapel_office, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/service/chapel/funeral) +"mAy" = ( +/turf/open/floor/engine, +/area/station/engineering/main) +"mAC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/pharmacy) +"mAD" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/bot_white/left, +/turf/open/floor/iron/textured_large, +/area/station/command/gateway) +"mAQ" = ( +/obj/structure/table/reinforced/rglass, +/obj/machinery/door/firedoor, +/obj/item/stack/medical/gauze, +/obj/item/stack/medical/mesh, +/obj/item/stack/medical/suture, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "paramed_dispatch_desk"; + name = "Desk Shutters"; + dir = 8 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/lobby) +"mAV" = ( +/obj/structure/flora/bush/ferny/style_random, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/flowers_pp/style_random, +/obj/structure/flora/bush/pale/style_random, +/obj/structure/window/fulltile, +/turf/open/floor/grass, +/area/station/hallway/secondary/exit/departure_lounge) +"mAW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"mBe" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/qm{ + name = "Quartermaster's Quarters" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/qm, +/obj/effect/turf_decal/siding/wood/end, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/textured_large, +/area/station/command/heads_quarters/qm) +"mBg" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/spirit_board, +/obj/structure/cable, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/pod/dark, +/area/station/service/chapel/office) +"mBj" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/construction/mining/aux_base) +"mBw" = ( +/obj/structure/sign/warning/no_smoking/circle/directional/north{ + pixel_y = 28 + }, +/obj/structure/table/glass, +/obj/item/reagent_containers/cup/beaker/large{ + pixel_y = 5 + }, +/obj/item/assembly/igniter, +/obj/item/reagent_containers/dropper{ + pixel_y = -4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) +"mBF" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/effect/turf_decal/trimline/blue/filled/warning, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/atmos) +"mBJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Science Hallway" + }, +/turf/open/floor/iron/white/textured_large, +/area/station/hallway/primary/fore) +"mBK" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Departures Lounge" + }, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/exit/departure_lounge) +"mBM" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners, +/turf/open/floor/iron/kitchen, +/area/station/security/prison/mess) +"mBO" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/security/execution/education) +"mBX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/gravity_generator) +"mCf" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 5 + }, +/obj/machinery/light_switch/directional/east, +/obj/structure/table, +/obj/item/gps/mining{ + pixel_y = 4 + }, +/turf/open/floor/iron/textured, +/area/station/cargo/warehouse) +"mCy" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"mCE" = ( +/obj/effect/turf_decal/trimline/blue/corner, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/prison) +"mCI" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 10 + }, +/turf/open/floor/iron/textured, +/area/station/maintenance/disposal/incinerator) +"mCK" = ( +/turf/open/floor/iron/recharge_floor, +/area/station/security/office) +"mCM" = ( +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/machinery/door/airlock/medical/glass{ + id_tag = "MedbayFoyer"; + name = "Medbay Satellite Access" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) +"mCN" = ( +/obj/item/kirbyplants/random, +/obj/structure/sign/warning/biohazard/directional/south, +/obj/effect/turf_decal/tile/dark_green/diagonal_centre, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/iron/white/diagonal, +/area/station/medical/medbay/central) +"mCS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/dark/fourcorners, +/obj/effect/landmark/start/janitor, +/turf/open/floor/noslip, +/area/station/service/janitor) +"mDd" = ( +/obj/structure/reagent_dispensers/plumbed{ + name = "virology water reservoir" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/medical/virology) +"mDf" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/machinery/duct, +/obj/machinery/light_switch/directional/south{ + pixel_x = 12 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/science/lab) +"mDn" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/fore) +"mDr" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/iron/textured_corner, +/area/station/engineering/atmos) +"mDy" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"mDE" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 4 + }, +/obj/effect/landmark/start/scientist, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/science/lab) +"mDF" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 1 + }, +/turf/open/floor/iron/white/side{ + dir = 6 + }, +/area/station/science/research) +"mDL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/station/maintenance/department/medical/central) +"mDP" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 6 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"mEl" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "roboticsprivacy"; + name = "Robotics Shutters" + }, +/turf/open/floor/plating, +/area/station/science/robotics/mechbay) +"mEC" = ( +/obj/machinery/corral_corner{ + mapping_id = "5" + }, +/obj/machinery/slime_pen_controller{ + mapping_id = "5" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/light/neon_lining{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"mED" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/landmark/start/head_of_security, +/turf/open/floor/iron/textured_large, +/area/station/command/heads_quarters/hos) +"mEL" = ( +/obj/structure/closet/masks, +/obj/effect/landmark/start/hangover/closet, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/large, +/area/station/commons/fitness/recreation/entertainment) +"mET" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/disposal) +"mFh" = ( +/obj/machinery/light/cold/directional/north, +/turf/open/floor/wood/large, +/area/station/service/barber) +"mFl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/circuit/green, +/area/station/ai_monitored/turret_protected/ai) +"mFq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 8 + }, +/area/station/security/prison) +"mFz" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/commons/storage/primary) +"mFM" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Custom Agent Maintenance" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/security/checkpoint/supply) +"mFQ" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/structure/sign/warning/no_smoking/directional/south, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"mFR" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/wood, +/area/station/service/hydroponics/upper) +"mGv" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/camera/directional/north{ + c_tag = "Solar - Aft Port"; + name = "solar camera" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/solars/port/aft) +"mGz" = ( +/obj/structure/closet/secure_closet/miner, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/textured_large, +/area/station/cargo/miningdock) +"mGE" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 10 + }, +/turf/open/floor/iron/white, +/area/station/science/lab) +"mGI" = ( +/obj/machinery/requests_console/directional/west{ + department = "Research Director's Desk"; + name = "Research Director's Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/announcement, +/obj/effect/mapping_helpers/requests_console/ore_update, +/obj/effect/mapping_helpers/requests_console/information, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/carpet/purple, +/area/station/command/heads_quarters/rd) +"mGO" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/status_display/ai/directional/south, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/aft) +"mGP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light_switch/directional/north, +/obj/machinery/power/port_gen/pacman, +/obj/structure/cable, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/aisat/atmos) +"mHq" = ( +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/machinery/door/airlock/maintenance_hatch, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/science/ordnance_maint) +"mHy" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/science/ordnance_maint) +"mHA" = ( +/obj/structure/flora/bush/flowers_yw/style_random, +/obj/machinery/light/small/directional/east, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/grass, +/area/station/service/chapel) +"mHC" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured_large, +/area/station/cargo/miningdock) +"mHR" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/fore) +"mIh" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L1" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/hallway/primary/fore) +"mIm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/science/xenobiology) +"mIn" = ( +/obj/machinery/door/airlock/research{ + name = "Research Division Access" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "rnd-enterance" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/general, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/white/textured_large, +/area/station/science/research) +"mIp" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/maintenance/external/glass{ + name = "Space Bridge Access" + }, +/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/port/greater) +"mIw" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/obj/machinery/airalarm/directional/east, +/obj/structure/table, +/obj/item/stack/sheet/iron/five, +/obj/item/stack/cable_coil/five, +/turf/open/floor/iron/large, +/area/station/commons/vacant_room/commissary) +"mIy" = ( +/obj/structure/table/glass, +/obj/item/stack/sheet/mineral/plasma{ + pixel_y = 4 + }, +/obj/item/reagent_containers/cup/beaker{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/cup/beaker/large{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/white/textured_edge, +/area/station/science/xenobiology) +"mIB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/station/tcommsat/computer) +"mIE" = ( +/obj/structure/chair{ + dir = 1; + name = "Defense" + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/large, +/area/station/security/courtroom) +"mIH" = ( +/obj/effect/decal/cleanable/blood/xtracks, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"mII" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/structure/closet/firecloset/wall{ + pixel_x = -32 + }, +/obj/effect/turf_decal/trimline/white/end{ + dir = 4 + }, +/turf/open/floor/iron/textured, +/area/station/hallway/primary/aft) +"mIK" = ( +/obj/effect/turf_decal/vg_decals/department/bar, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"mIR" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Aft Central Primary Hallway" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/office) +"mJs" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/table, +/obj/item/analyzer, +/obj/item/storage/box, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/fore) +"mJw" = ( +/obj/structure/table/reinforced, +/obj/item/stack/package_wrap, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil, +/obj/item/stock_parts/cell/high, +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/textured, +/area/station/construction/mining/aux_base) +"mJy" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/science/auxlab) +"mJA" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on/coldroom{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical/central) +"mJB" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/freezer, +/area/station/medical/pharmacy) +"mJC" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/textured_large, +/area/station/security/checkpoint/engineering) +"mJV" = ( +/obj/structure/sign/warning/explosives/alt/directional/south, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/science/ordnance/testlab) +"mKb" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/effect/turf_decal/siding/green{ + dir = 1 + }, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/service/hydroponics) +"mKc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/small, +/area/station/commons/dorms) +"mKf" = ( +/obj/structure/chair/wood{ + dir = 1 + }, +/obj/item/radio/intercom/chapel{ + pixel_x = 29 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/iron/dark/textured, +/area/station/service/chapel/office) +"mKo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/dark_green/filled/line{ + dir = 8 + }, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/medical/virology) +"mKs" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/grass, +/area/station/service/chapel) +"mKU" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/layer_manifold/yellow/visible{ + dir = 4 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"mKV" = ( +/obj/docking_port/stationary/escape_pod{ + dir = 2 + }, +/turf/open/space/basic, +/area/space/nearstation) +"mLb" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/machinery/vending/cigarette, +/turf/open/floor/wood/parquet, +/area/station/common/night_club) +"mLc" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/detective, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"mLj" = ( +/obj/structure/plasticflaps/opaque{ + name = "Security Deliveries" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/department/security/brig) +"mLn" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/lesser) +"mLs" = ( +/obj/structure/bookcase/random/fiction, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/wood/large, +/area/station/service/library) +"mLy" = ( +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"mLz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/sink/directional/south, +/obj/structure/mirror/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet) +"mLJ" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/machinery/firealarm/directional/east, +/obj/machinery/camera/directional/east, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/lobby) +"mMe" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"mMp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/cargo/storage) +"mMs" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Security Hallway" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/primary/fore) +"mMt" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + desc = "A door remote control switch for the interior brig doors."; + id = "innerbrig"; + name = "Brig Interior Door Control"; + normaldoorcontrol = 1; + pixel_x = -6; + pixel_y = 7; + req_access = list("security") + }, +/obj/machinery/button/door{ + desc = "A door remote control switch for the exterior brig doors."; + id = "outerbrig"; + name = "Brig Exterior Door Control"; + normaldoorcontrol = 1; + pixel_x = 6; + pixel_y = 7; + req_access = list("security") + }, +/obj/machinery/button/flasher{ + id = "secentranceflasher"; + name = "Brig Entrance Flasher"; + pixel_x = -6; + pixel_y = -3; + req_access = list("security") + }, +/obj/item/toy/figure/warden{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/effect/turf_decal/trimline/red/filled/line, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/security/warden) +"mMu" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/left, +/obj/structure/sign/departments/science/directional/north, +/obj/machinery/camera/directional/north{ + c_tag = "Fore Primary Hallway - Hub Fore"; + name = "hallway camera" + }, +/turf/open/floor/iron/edge, +/area/station/hallway/primary/fore) +"mMw" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"mMB" = ( +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/xenobiology) +"mMD" = ( +/obj/structure/cable, +/obj/effect/spawner/random/structure/steam_vent, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/engine/atmos/lesser) +"mMN" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"mMS" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/large, +/area/station/security/checkpoint/customs) +"mMT" = ( +/obj/machinery/computer/mecha, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/textured_large, +/area/station/command/heads_quarters/rd) +"mMV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/carpet, +/area/station/medical/psychology) +"mMZ" = ( +/obj/structure/chair/office{ + color = "#EFB341"; + dir = 1 + }, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/turf_decal/tile/yellow/half, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"mNb" = ( +/obj/structure/window/reinforced/spawner/directional/west{ + layer = 2.9 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/science/xenobiology) +"mNz" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/storage/toolbox/electrical, +/obj/item/clothing/gloves/color/yellow, +/obj/item/stack/cable_coil, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/main) +"mND" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/effect/turf_decal/trimline/blue/filled/warning, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible{ + dir = 8 + }, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/atmos) +"mNF" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Service Hall Maintenance" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/all/service/general, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/greater) +"mNK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/fake_stairs/directional/north, +/obj/effect/landmark/start/cook, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"mNO" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/status_display/ai/directional/west, +/turf/open/floor/engine, +/area/station/engineering/atmos/storage/gas) +"mNT" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Chapel Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/service/chapel_office, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/pod, +/area/station/service/chapel/office) +"mNX" = ( +/obj/machinery/light/neon_lining{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/camera/directional/east{ + c_tag = "Science - Xenobiology, Pen 5"; + name = "xenobiology camera"; + network = list("ss13","rd","xeno") + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"mNY" = ( +/obj/machinery/light/small/directional/west, +/obj/machinery/light_switch/directional/west, +/obj/effect/turf_decal/siding/dark_blue{ + dir = 10 + }, +/obj/effect/turf_decal/siding/dark_blue/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue/full, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/blueshield) +"mOa" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/medical/storage) +"mOm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/sepia, +/area/station/service/library) +"mOn" = ( +/obj/machinery/light/floor/has_bulb, +/turf/open/floor/engine/plasma, +/area/station/engineering/atmos) +"mOx" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/turf/open/floor/iron/textured_large, +/area/station/engineering/power_room) +"mOC" = ( +/obj/machinery/door/poddoor/preopen{ + id = "brigprison"; + name = "Prison Blast Door" + }, +/turf/open/floor/iron/stairs/medium{ + dir = 8 + }, +/area/station/security/execution/transfer) +"mOD" = ( +/turf/closed/wall, +/area/station/science/auxlab) +"mOL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/freezer, +/area/station/medical/treatment_center) +"mON" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos/storage/gas) +"mOQ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"mOZ" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Fore Central Primary Hallway" + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/large, +/area/station/hallway/primary/central/fore) +"mPb" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/item/radio/intercom/prison/directional/north, +/turf/open/floor/iron/dark/textured_edge, +/area/station/security/prison) +"mPf" = ( +/obj/structure/table, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "kitchen_counter"; + name = "Kitchen Counter Shutters" + }, +/obj/structure/displaycase/forsale/kitchen{ + pixel_y = 8 + }, +/turf/open/floor/iron/cafeteria, +/area/station/service/kitchen) +"mPj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/floor/has_bulb, +/turf/open/floor/iron/textured_large, +/area/station/command/cc_dock) +"mPl" = ( +/obj/item/radio/intercom/directional/south, +/obj/structure/chair/comfy/brown{ + color = "#9FED58"; + dir = 8 + }, +/obj/effect/landmark/start/head_of_personnel, +/turf/open/floor/carpet/executive, +/area/station/command/heads_quarters/hop) +"mPo" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ + dir = 4 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"mPs" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/textured, +/area/station/science/research/abandoned) +"mPt" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"mPw" = ( +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/fore) +"mPB" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/white/textured_edge, +/area/station/medical/surgery) +"mPM" = ( +/obj/machinery/atmospherics/pipe/bridge_pipe/dark/visible, +/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"mQl" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/starboard/fore) +"mQs" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/window{ + dir = 8; + id = "ChemStorage"; + name = "Chemical Storage Shutters" + }, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) +"mQL" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/commons/fitness/recreation/entertainment) +"mQW" = ( +/obj/machinery/camera/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/bitrunning/den) +"mRi" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/newscaster/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/medical/medbay/central) +"mRj" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/bot_white/right, +/turf/open/floor/iron/textured_large, +/area/station/command/gateway) +"mRm" = ( +/obj/structure/table/reinforced, +/turf/open/floor/carpet/purple, +/area/station/common/night_club) +"mRv" = ( +/obj/machinery/door/firedoor/heavy, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "sci-toxins-circuits" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, +/obj/structure/cable, +/obj/machinery/door/airlock/science{ + name = "Ordnance Storage" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 1; + id = "ordnance"; + name = "Ordnance Lab Shutters" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/ordnance/storage) +"mRA" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/paper/crumpled{ + default_raw_text = "The safes have been locked and scrambled. Three thousand space dollars, a bandolier, a custom shotgun, and a lazarus injector have been safely deposited."; + name = "bank statement" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/greater) +"mRH" = ( +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/corner{ + dir = 8 + }, +/area/station/commons/fitness/recreation/entertainment) +"mRN" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/obj/effect/spawner/structure/window/reinforced/plasma, +/turf/open/floor/plating, +/area/station/engineering/atmos) +"mRU" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/grass, +/area/station/security/checkpoint/customs) +"mSk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/security/greater) +"mSr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/commons/fitness/recreation/entertainment) +"mSw" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/station/hallway/secondary/entry) +"mSx" = ( +/obj/machinery/recharge_station, +/obj/item/radio/intercom/directional/south, +/obj/effect/landmark/start/cyborg, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/textured, +/area/station/science/robotics/mechbay) +"mSI" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/turf_decal/box, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/engine, +/area/station/science/ordnance/storage) +"mSO" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/machinery/vending/wardrobe/science_wardrobe, +/obj/item/toy/figure/scientist{ + pixel_y = 16 + }, +/obj/machinery/light_switch/directional/west, +/obj/effect/turf_decal/bot, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/science/lab) +"mSR" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/exit/departure_lounge) +"mSV" = ( +/turf/closed/wall/r_wall, +/area/station/engineering/storage/tech) +"mSY" = ( +/obj/structure/disposalpipe/junction/yjunction{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"mSZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/security/armory) +"mTl" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/exam_room) +"mTv" = ( +/obj/effect/spawner/random/structure/girder, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/greater) +"mTx" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/turf/open/floor/iron/white/diagonal, +/area/station/medical/medbay/central) +"mTF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/white/textured_large, +/area/station/hallway/primary/fore) +"mTO" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/turf/open/floor/iron/textured_large, +/area/station/engineering/main) +"mTQ" = ( +/obj/structure/rack, +/obj/item/storage/crayons, +/obj/item/storage/crayons{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/bikehorn/rubberducky, +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/checker, +/area/station/service/theater) +"mTW" = ( +/obj/structure/disposaloutlet{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"mUa" = ( +/obj/effect/turf_decal/siding/thinplating/corner{ + dir = 8 + }, +/obj/machinery/light/floor/has_bulb, +/turf/open/misc/beach/sand, +/area/station/hallway/primary/central/fore) +"mUp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft) +"mUE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"mUF" = ( +/obj/structure/chair/stool/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/theater) +"mUM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/turf/open/floor/iron/white/diagonal, +/area/station/medical/medbay/central) +"mUR" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/station/commons/vacant_room/office) +"mUS" = ( +/obj/structure/sign/logo{ + icon_state = "nanotrasen_sign2"; + pixel_y = 32 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge, +/area/station/hallway/primary/aft) +"mUU" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Aft Central Primary Hallway" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/auxlab/firing_range) +"mVb" = ( +/obj/machinery/photocopier, +/obj/machinery/light/warm/directional/north, +/obj/machinery/requests_console/directional/north{ + department = "Head of Personnel's Desk"; + name = "Head of Personnel's Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/announcement, +/obj/effect/mapping_helpers/requests_console/information, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/turf_decal/bot, +/turf/open/floor/carpet/executive, +/area/station/command/heads_quarters/hop) +"mVc" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"mVl" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/spawner/random/engineering/tracking_beacon, +/turf/open/floor/engine, +/area/station/security/range) +"mVo" = ( +/obj/machinery/power/turbine/turbine_outlet, +/turf/open/floor/engine, +/area/station/maintenance/disposal/incinerator) +"mVr" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics" + }, +/obj/machinery/door/poddoor/preopen{ + id = "atmoslock"; + name = "Atmospherics Lockdown Blast Door" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"mVv" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 5 + }, +/obj/item/radio/intercom/directional/north, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/white, +/area/station/science/genetics) +"mVA" = ( +/obj/structure/chair/stool/directional/west, +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood/large, +/area/station/commons/fitness/recreation/entertainment) +"mVF" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/engine/n2, +/area/station/engineering/atmos) +"mVK" = ( +/obj/structure/rack, +/obj/effect/spawner/random/techstorage/rnd_secure_all, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/turf/open/floor/pod/dark, +/area/station/engineering/storage/tech) +"mVN" = ( +/obj/machinery/growing/soil, +/obj/item/seeds/harebell, +/turf/open/floor/grass, +/area/station/service/chapel) +"mVV" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/vehicle/ridden/wheelchair{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/medical/medbay/lobby) +"mWg" = ( +/obj/item/radio/intercom/directional/north, +/obj/machinery/requests_console/directional/west{ + department = "Chapel"; + name = "Chapel Requests console" + }, +/obj/structure/closet, +/obj/item/storage/backpack/cultpack, +/obj/item/clothing/head/chaplain/nun_hood, +/obj/item/clothing/suit/chaplainsuit/nun, +/obj/item/clothing/suit/chaplainsuit/holidaypriest, +/turf/open/floor/pod/dark, +/area/station/service/chapel/office) +"mWh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/ce) +"mWi" = ( +/obj/structure/closet/secure_closet/bar, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/bot, +/obj/machinery/light/directional/west, +/turf/open/floor/wood/tile, +/area/station/service/bar) +"mWr" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/machinery/fax{ + fax_name = "Engineering Lobby"; + name = "Engineering Lobby Fax Machine"; + pixel_y = 3 + }, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/lobby) +"mWD" = ( +/obj/machinery/griddle, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/carpet, +/area/station/commons/dorms) +"mWF" = ( +/obj/machinery/suit_storage_unit/engine, +/obj/effect/turf_decal/box, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/storage) +"mWM" = ( +/obj/machinery/teleport/hub, +/obj/machinery/camera/directional/south{ + c_tag = "Bridge - Teleporter"; + name = "command camera" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/circuit, +/area/station/command/teleporter) +"mWQ" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"mWT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/ce) +"mWV" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/command) +"mWZ" = ( +/obj/machinery/airalarm/directional/east, +/obj/item/reagent_containers/cup/bucket, +/obj/item/mop, +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/station/commons/dorms) +"mXa" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/primary/central/aft) +"mXc" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 8 + }, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_corner{ + dir = 8 + }, +/area/station/science/ordnance/testlab) +"mXi" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 10 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/newscaster/directional/south{ + pixel_x = 3 + }, +/obj/machinery/light_switch/directional/south{ + pixel_x = -9 + }, +/obj/structure/sign/departments/science/alt/directional/west, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/white, +/area/station/science/lab) +"mXt" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light_switch/directional/east, +/obj/item/kirbyplants/monkey, +/obj/machinery/camera/directional/east{ + c_tag = "Research Division - Circuits Lab"; + name = "science camera"; + network = list("ss13","rd") + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/science/auxlab) +"mXv" = ( +/obj/machinery/atmospherics/components/unary/artifact_heatingpad{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/science/explab) +"mXy" = ( +/obj/machinery/door/airlock/hatch{ + name = "Port EVA Shed" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/eva_shed/port) +"mXO" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/main) +"mXQ" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/window/spawner/directional/south, +/obj/structure/sign/poster/official/random/directional/north, +/obj/machinery/light/small/directional/north, +/turf/open/floor/engine, +/area/station/cargo/drone_bay) +"mYa" = ( +/obj/effect/spawner/random/engineering/tank, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/lesser) +"mYm" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/command/cc_dock) +"mYn" = ( +/turf/open/floor/plating, +/area/station/maintenance/department/science/ordnance_maint) +"mYv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/spawner/random/trash/garbage, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/aft/upper) +"mYz" = ( +/obj/machinery/vending/coffee, +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/siding/green{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/commons/dorms) +"mYF" = ( +/obj/machinery/camera/directional/south{ + c_tag = "Command - Blueshield's Gear Room"; + name = "command camera" + }, +/obj/structure/closet/secure_closet/tac{ + req_access = list("captain") + }, +/obj/item/radio/intercom/directional/south, +/obj/item/clothing/gloves/military, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/blueshield) +"mYL" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/security/office) +"mYW" = ( +/obj/machinery/button/door/directional/east{ + id = "chemistry_shutters_south"; + name = "Shutters Control"; + req_access = list("pharmacy") + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/bot_red, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/chem_heater/withbuffer, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/pharmacy) +"mZe" = ( +/obj/effect/turf_decal/trimline/dark_red/arrow_cw{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"mZf" = ( +/turf/closed/wall/r_wall, +/area/station/common/night_club) +"mZB" = ( +/obj/item/radio/intercom, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/table/wood/fancy/blue, +/turf/open/floor/wood/large, +/area/station/security/courtroom) +"mZO" = ( +/obj/effect/turf_decal/arrows/white{ + color = "#00AAFF"; + pixel_y = 15 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos/hfr_room) +"mZX" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Port Mix to Port Ports" + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"nac" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/fore) +"nag" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue/half{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"naj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/storage_shared) +"nak" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 10 + }, +/obj/structure/table, +/obj/machinery/recharger{ + pixel_x = -6 + }, +/obj/item/melee/chainofcommand{ + pixel_x = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/brig) +"nar" = ( +/obj/machinery/door/airlock{ + id_tag = "commissarydoor"; + name = "Commissary" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark/textured_large, +/area/station/commons/vacant_room) +"naz" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 9 + }, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) +"naC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/hallway/primary/central/aft) +"naF" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/camera/directional/south{ + c_tag = "Atmospherics - Project Room Fore"; + dir = 5; + name = "atmospherics camera" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"naG" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"naI" = ( +/obj/item/radio/intercom/directional/east, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 5 + }, +/turf/open/floor/iron, +/area/station/commons/storage/primary) +"naL" = ( +/obj/machinery/holopad, +/turf/open/floor/carpet, +/area/station/security/detectives_office) +"naW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/service/library) +"nbt" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/turf/open/space/basic, +/area/space/nearstation) +"nbB" = ( +/obj/machinery/computer/monitor, +/obj/machinery/light_switch/directional/north, +/obj/effect/turf_decal/bot, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/aisat/service) +"nbC" = ( +/turf/open/floor/pod, +/area/station/service/chapel/office) +"nbD" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/atmos) +"nbP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrous_output{ + dir = 4 + }, +/turf/open/floor/engine/n2o, +/area/station/engineering/atmos) +"nbV" = ( +/obj/effect/landmark/carpspawn, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"nca" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/light/warm/directional/north, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/atmos) +"ncm" = ( +/obj/effect/turf_decal/box/white{ + color = "#D381C9" + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"ncv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"ncF" = ( +/obj/machinery/light/small/directional/east, +/obj/structure/easel, +/obj/item/canvas/twentythree_nineteen, +/obj/machinery/airalarm/directional/north, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/iron/grimy, +/area/station/service/chapel) +"ncI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"ncO" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/carpet/blue, +/area/station/command/bridge) +"ncR" = ( +/obj/structure/closet/bombcloset, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/textured_edge, +/area/station/science/ordnance) +"ncU" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/tile/dark_red/diagonal_centre, +/obj/effect/turf_decal/tile/neutral/diagonal_centre, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/execution/transfer) +"ndC" = ( +/obj/structure/cable, +/obj/item/radio/intercom/directional/north{ + pixel_y = 24 + }, +/obj/effect/turf_decal/siding/dark_blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue/half{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"ndE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/station/commons/dorms) +"ndF" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/turf/open/floor/plating/airless, +/area/station/engineering/power_room) +"ndR" = ( +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Security Maintenance" + }, +/turf/open/floor/plating, +/area/station/security/office) +"ndX" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/pod/dark, +/area/station/service/chapel/office) +"nef" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft) +"neg" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/cafeteria, +/area/station/service/cafeteria) +"nel" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark_red/arrow_cw{ + dir = 8 + }, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"net" = ( +/obj/docking_port/stationary{ + dwidth = 1; + height = 13; + name = "arrivals"; + shuttle_id = "arrival_stationary"; + width = 5; + roundstart_template = /datum/map_template/shuttle/arrival/nova; + dir = 8 + }, +/turf/open/space/basic, +/area/space/nearstation) +"neu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/rd) +"nex" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 9 + }, +/obj/structure/chair/sofa/bench/right, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"neO" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Psychology Maintenance" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/all/medical/psychology, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical) +"neT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/cargo/miningdock) +"nfr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/red/line, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"nfC" = ( +/mob/living/basic/bot/cleanbot, +/obj/structure/railing, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/aisat_interior) +"nfJ" = ( +/obj/structure/fans/tiny/forcefield{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/command/cc_dock) +"nge" = ( +/obj/item/paper/fluff/gateway, +/obj/item/coin/gold{ + pixel_x = -7; + pixel_y = 8 + }, +/obj/item/phone{ + pixel_x = 9; + pixel_y = 6 + }, +/obj/item/clothing/mask/cigarette/pipe{ + pixel_x = -5 + }, +/obj/structure/table/wood, +/turf/open/floor/carpet/green, +/area/station/command/heads_quarters/nt_rep) +"ngt" = ( +/obj/machinery/power/shuttle_engine/heater, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine/atmos) +"ngv" = ( +/obj/effect/spawner/random/trash/bin, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/aft) +"ngD" = ( +/turf/closed/wall/r_wall, +/area/station/command/heads_quarters/hos) +"ngK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/hallway/secondary/command) +"ngZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/white/textured_edge, +/area/station/medical/exam_room) +"nhc" = ( +/obj/structure/grille, +/turf/closed/wall/r_wall/rust, +/area/station/engineering/atmos) +"nhi" = ( +/obj/structure/window/reinforced/spawner/directional/east{ + layer = 2.9; + pixel_x = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/medical/medbay/lobby) +"nho" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/red/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"nhx" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"nhJ" = ( +/obj/structure/table/wood, +/obj/structure/sign/painting/library{ + pixel_y = 32 + }, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Library - Fore"; + dir = 9; + name = "library camera" + }, +/obj/item/newspaper, +/obj/item/newspaper{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/glasses/regular, +/turf/open/floor/wood/tile, +/area/station/service/library) +"nhR" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/freezer, +/area/station/medical/pharmacy) +"nhS" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"nhU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port) +"niu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/hallway/secondary/command) +"niA" = ( +/obj/machinery/status_display/ai/directional/north, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/structure/table, +/obj/item/book/bible{ + pixel_x = -7; + pixel_y = 3 + }, +/obj/item/paper_bin{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = 6; + pixel_y = 4 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/hallway/primary/fore) +"niG" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/grass, +/area/station/medical/storage) +"niI" = ( +/obj/structure/closet/crate, +/obj/effect/turf_decal/bot, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/crew_quarters/bar) +"niX" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/security/checkpoint/customs) +"nja" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/table, +/obj/item/reagent_containers/condiment/saltshaker{ + desc = "Salt. From space oceans, presumably. A staple of modern medicine."; + pixel_x = -8; + pixel_y = 12 + }, +/obj/item/reagent_containers/condiment/peppermill{ + desc = "Often used to flavor food or make people sneeze. Fashionably moved to the left side of the table."; + pixel_x = -8; + pixel_y = 2 + }, +/turf/open/floor/iron/cafeteria, +/area/station/service/cafeteria) +"njb" = ( +/obj/structure/cable, +/obj/structure/chair/stool/directional/east, +/obj/machinery/power/terminal{ + dir = 8 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/solars/starboard/aft) +"njc" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/large, +/area/station/hallway/primary/central/aft) +"njd" = ( +/obj/structure/table, +/obj/item/radio{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/radio{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"njg" = ( +/obj/effect/turf_decal/tile/dark_red/anticorner{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/obj/structure/closet/ammunitionlocker/useful, +/obj/item/storage/box/lethalshot, +/obj/item/storage/box/lethalshot, +/obj/item/storage/box/lethalshot, +/obj/effect/turf_decal/bot, +/obj/effect/spawner/random/armory/rubbershot, +/turf/open/floor/iron/dark/textured_corner{ + dir = 4 + }, +/area/station/ai_monitored/security/armory) +"njl" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/machinery/bluespace_vendor/directional/south, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/fore) +"nju" = ( +/obj/structure/rack, +/obj/item/aicard/aitater, +/obj/item/ai_module/reset, +/obj/effect/turf_decal/bot, +/turf/open/floor/pod/dark, +/area/station/engineering/storage/tech) +"njC" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"njG" = ( +/obj/effect/turf_decal/bot, +/obj/structure/window/spawner/directional/west, +/obj/machinery/computer/order_console/mining, +/turf/open/floor/iron/textured_large, +/area/station/cargo/miningdock) +"njJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/landmark/start/security_officer, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_edge, +/area/station/security/interrogation) +"njV" = ( +/obj/effect/turf_decal/trimline/dark_green/filled/line{ + dir = 5 + }, +/obj/structure/rack, +/obj/item/wrench/medical, +/obj/item/crowbar/red, +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white, +/area/station/medical/virology) +"nkb" = ( +/obj/item/kirbyplants/random, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/hallway/secondary/command) +"nke" = ( +/obj/effect/turf_decal/trimline/green/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/green{ + dir = 8 + }, +/turf/open/floor/iron/large, +/area/station/service/hydroponics) +"nkg" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/edge, +/area/station/commons/fitness/recreation/entertainment) +"nkn" = ( +/turf/closed/wall/r_wall, +/area/station/security/office) +"nku" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/engineering/ce, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/ce{ + id_tag = "CEdoor"; + name = "Chief Engineer's Office" + }, +/obj/effect/turf_decal/siding/wood/end{ + dir = 1 + }, +/obj/machinery/door/poddoor/preopen{ + id = "ceblast"; + name = "Chief Engineer's Office Blast Doors" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/ce) +"nkv" = ( +/obj/effect/mapping_helpers/airlock/access/any/medical/chemistry, +/obj/machinery/door/airlock/maintenance{ + name = "Chemistry Maintenance" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/medical/chemistry) +"nkA" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/small, +/area/station/commons/dorms) +"nkC" = ( +/obj/structure/plasticflaps/opaque{ + name = "Warehouse Deliveries" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + location = "Cargo Office" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/starboard/lesser) +"nkH" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/item/kirbyplants/monkey, +/turf/open/floor/iron/white/textured_edge, +/area/station/science/lab) +"nkQ" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_corner{ + dir = 1 + }, +/area/station/medical/medbay/central) +"nkY" = ( +/obj/machinery/airalarm/directional/west, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/security/prison/work) +"nlj" = ( +/obj/effect/decal/cleanable/xenoblood, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"nll" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/status_display/door_timer{ + id = "Cell 3"; + name = "Cell 3"; + pixel_x = 32 + }, +/obj/machinery/door/window/brigdoor/security/cell/right/directional/south{ + id = "Cell 3"; + name = "Cell 3" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark/textured, +/area/station/security/brig) +"nlu" = ( +/obj/structure/dresser, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/carpet, +/area/station/commons/dorms) +"nlz" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/science/xenobiology) +"nlD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/toy/talking/ai, +/obj/structure/cable/layer3, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/aisat_interior) +"nlO" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/textured, +/area/station/command/cc_dock) +"nmg" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/effect/landmark/start/atmospheric_technician, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"nmm" = ( +/obj/structure/chair/stool/directional/west, +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/effect/turf_decal/tile/red/opposingcorners{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron, +/area/station/commons/lounge) +"nmt" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/grassy, +/obj/structure/flora/bush/flowers_yw, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "hopqueue"; + name = "HoP Queue Shutters" + }, +/turf/open/floor/grass, +/area/station/hallway/secondary/command) +"nmw" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/computer/atmos_alert, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/atmos/storage/gas) +"nmx" = ( +/turf/closed/wall/r_wall, +/area/station/science/robotics/mechbay) +"nmy" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/duct, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/iron/white/textured_edge, +/area/station/medical/medbay/central) +"nmA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/generic_maintenance_landmark, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/fore) +"nmB" = ( +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/corner{ + dir = 4 + }, +/area/station/commons/fitness/recreation) +"nmJ" = ( +/turf/open/floor/iron/textured_large, +/area/station/construction/mining/aux_base) +"nnf" = ( +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 5 + }, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/main) +"nnh" = ( +/obj/machinery/door/airlock/external{ + name = "MiniSat External Access" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/mapping_helpers/airlock/access/any/science/minisat, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/port/upper) +"nnj" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/security/old/glass{ + name = "Firing Range" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/range) +"nnm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/aft) +"nnr" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 10 + }, +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_x = -7; + pixel_y = 4 + }, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = 5; + pixel_y = 3 + }, +/turf/open/floor/iron/textured, +/area/station/security/checkpoint/supply) +"nny" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"nnS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/cargo/storage) +"nnZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/poddoor/shutters{ + dir = 1; + id = "sciencebridge"; + name = "Science Pod Space Bridge" + }, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/port/fore) +"noj" = ( +/obj/structure/chair/office, +/turf/open/floor/wood, +/area/station/security/prison/garden) +"nom" = ( +/obj/machinery/washing_machine, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/kitchen{ + dir = 1 + }, +/area/station/security/prison/work) +"noH" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"noI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/aft/greater) +"noN" = ( +/obj/structure/punching_bag, +/obj/effect/turf_decal/tile/yellow/full, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white/textured_large, +/area/station/commons/fitness/recreation/entertainment) +"noU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/green/warning{ + dir = 10 + }, +/obj/machinery/light/warm/directional/south, +/turf/open/floor/iron/small, +/area/station/commons/dorms) +"npi" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/atmos) +"npn" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/small, +/area/station/commons/dorms) +"npo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall17"; + location = "hall16" + }, +/obj/effect/turf_decal/nova_decals/enclave/bottom/middle{ + color = "#52B4E9" + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/mid_joiner{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/command) +"npI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_large, +/area/station/security/checkpoint/supply) +"npK" = ( +/obj/machinery/digital_clock{ + pixel_y = 5 + }, +/turf/closed/wall/r_wall, +/area/station/command/heads_quarters/nt_rep) +"npP" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/machinery/firealarm/directional/south, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"npR" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/light/warm/directional/east, +/obj/machinery/pdapainter/medbay, +/obj/effect/turf_decal/bot, +/obj/structure/sign/calendar/directional/east, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/cmo) +"npW" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/solars/starboard/aft) +"npZ" = ( +/turf/closed/wall/mineral/iron, +/area/station/service/chapel/office) +"nqc" = ( +/obj/structure/table, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/item/crowbar{ + pixel_y = 3 + }, +/obj/item/wrench{ + pixel_y = 3 + }, +/obj/item/clothing/mask/gas{ + pixel_y = 3 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/hallway/primary/aft) +"nqj" = ( +/turf/closed/wall, +/area/station/hallway/secondary/construction) +"nqC" = ( +/obj/structure/drain, +/obj/machinery/shower/directional/south, +/obj/structure/curtain, +/obj/machinery/door/window/brigdoor/left/directional/south{ + name = "Shower" + }, +/turf/open/floor/iron/freezer, +/area/station/commons/dorms) +"nqI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/obj/item/radio/intercom/prison/directional/east, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/security/prison) +"nqS" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/fore) +"nrb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/aft/greater) +"nrd" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/machinery/light_switch/directional/east{ + pixel_x = 21; + pixel_y = -7 + }, +/obj/structure/closet/secure_closet/courtroom, +/obj/item/megaphone{ + name = "The Judge's Megaphone" + }, +/obj/item/storage/briefcase/secure, +/obj/effect/turf_decal/bot, +/turf/open/floor/wood/large, +/area/station/security/courtroom) +"nru" = ( +/obj/structure/closet/firecloset/wall{ + pixel_y = -32 + }, +/obj/effect/turf_decal/trimline/white/end{ + dir = 1 + }, +/turf/open/floor/pod/dark, +/area/station/engineering/storage/tech) +"nrE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/textured_edge, +/area/station/science/ordnance/testlab) +"nrF" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 10 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"nsb" = ( +/turf/open/floor/iron/dark/textured_large, +/area/station/security/courtroom) +"nsl" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/commons/fitness/recreation/entertainment) +"nsp" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_edge, +/area/station/science/research) +"nst" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/large, +/area/station/medical/psychology) +"nsE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/engine/atmos/lesser) +"nsW" = ( +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "Barshutters"; + name = "Bar Shutters" + }, +/obj/machinery/reagentgrinder{ + pixel_y = 7 + }, +/turf/open/floor/iron/large, +/area/station/service/bar) +"nsX" = ( +/obj/structure/bookcase/random/nonfiction, +/turf/open/floor/wood/large, +/area/station/service/library) +"nti" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/spawner/random/entertainment/arcade, +/obj/effect/turf_decal/bot, +/obj/machinery/light_switch/directional/north, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/lobby) +"ntn" = ( +/obj/structure/table, +/obj/effect/spawner/random/maintenance, +/obj/item/storage/box, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/lesser) +"ntp" = ( +/obj/structure/chair/comfy/brown{ + color = "#9FED58"; + dir = 8 + }, +/obj/machinery/camera/directional/east{ + c_tag = "Bridge - Head of Personnel's Office"; + name = "command camera" + }, +/obj/item/storage/secure/safe/directional/east, +/obj/effect/landmark/start/head_of_personnel, +/obj/machinery/button/door/directional/east{ + id = "hopdoor"; + name = "Door Lock"; + normaldoorcontrol = 1; + pixel_y = -14; + req_access = list("hop"); + specialfunctions = 4 + }, +/turf/open/floor/carpet/executive, +/area/station/command/heads_quarters/hop) +"nty" = ( +/obj/machinery/corral_corner{ + mapping_id = "5" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/light/neon_lining{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"ntC" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/obj/machinery/newscaster/directional/south, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/hallway/secondary/command) +"ntF" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = 7 + }, +/obj/item/hand_tele{ + pixel_x = -8 + }, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain) +"ntM" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/plasticflaps/opaque{ + name = "Bar Deliveries" + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + location = "Bar" + }, +/turf/open/floor/iron/large, +/area/station/maintenance/department/crew_quarters/bar) +"ntR" = ( +/obj/structure/extinguisher_cabinet/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/carpet/orange, +/area/station/command/heads_quarters/ce) +"ntS" = ( +/obj/structure/closet/emcloset/wall{ + pixel_y = 32 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/white/mid_joiner, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/white/end, +/turf/open/floor/wood, +/area/station/commons/dorms) +"ntX" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/security/warden) +"ntY" = ( +/obj/structure/flora/bush/flowers_yw/style_random, +/obj/structure/flora/bush/flowers_pp/style_random, +/obj/structure/flora/bush/sparsegrass/style_random, +/turf/open/floor/grass, +/area/station/service/chapel) +"nua" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured_large, +/area/station/command/cc_dock) +"nub" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/mopbucket, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/greater) +"nuf" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/light_switch/directional/east{ + pixel_x = 23 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/ce) +"nuh" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/radio/intercom/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/medical/medbay/central) +"nul" = ( +/obj/effect/turf_decal/trimline/brown/filled/warning, +/obj/effect/turf_decal/arrows, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/cargo/sorting) +"num" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/engine) +"nuH" = ( +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos/storage) +"nuL" = ( +/obj/structure/table, +/obj/item/storage/box/lights/tubes{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/storage/box/lights/bulbs, +/obj/effect/spawner/random/entertainment/money, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/greater) +"nuV" = ( +/obj/effect/turf_decal/trimline/dark/filled/warning{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/closet/l3closet/security, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured, +/area/station/security/office) +"nvc" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/atmos) +"nvF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "warehouse_shutters"; + name = "Warehouse Shutters" + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/warehouse) +"nvH" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/item/toy/talking/ai, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/ai_upload) +"nvL" = ( +/turf/open/floor/wood/large, +/area/station/science/research) +"nvM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical) +"nvZ" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Dormitories Maintenance" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/crew_quarters/bar) +"nwb" = ( +/obj/docking_port/stationary/mining_home, +/turf/open/space/basic, +/area/space/nearstation) +"nwl" = ( +/obj/machinery/door/airlock/grunge{ + name = "Chapel" + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/service/chapel_office, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"nwm" = ( +/obj/structure/table/reinforced, +/obj/item/folder/yellow{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/structure/desk_bell{ + pixel_x = -7; + pixel_y = 8 + }, +/obj/machinery/door/window/left/directional/south{ + name = "Engineering Desk"; + req_access = list("engineering") + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/lobby) +"nwu" = ( +/obj/structure/table, +/obj/item/transfer_valve{ + pixel_x = 5 + }, +/obj/item/transfer_valve, +/obj/item/transfer_valve{ + pixel_x = -5 + }, +/obj/item/transfer_valve{ + pixel_x = 5 + }, +/obj/item/transfer_valve, +/obj/machinery/newscaster/directional/east, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/science/ordnance/testlab) +"nwL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/closet/firecloset/wall{ + pixel_x = -32 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/white/end{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/hallway/secondary/command) +"nwN" = ( +/obj/effect/turf_decal/stripes/red/line{ + dir = 5 + }, +/turf/open/floor/engine/vacuum, +/area/station/science/ordnance/burnchamber) +"nwW" = ( +/turf/closed/wall, +/area/station/medical/exam_room) +"nwY" = ( +/obj/item/kirbyplants/random, +/obj/structure/sign/poster/official/random/directional/west, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/hallway/secondary/command) +"nxi" = ( +/obj/structure/table, +/obj/item/reagent_containers/cup/watering_can, +/obj/item/reagent_containers/cup/watering_can, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/hydroponics/garden) +"nxj" = ( +/obj/effect/turf_decal/tile/blue/full, +/obj/structure/sign/nanotrasen{ + pixel_y = 32 + }, +/turf/open/floor/iron/airless{ + icon_state = "dark_large" + }, +/area/space/nearstation) +"nxn" = ( +/obj/machinery/door/airlock/rd{ + name = "Research Director's Quarters" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/rd, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/siding/wood/end, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/rd) +"nxz" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/mix_input{ + dir = 4 + }, +/turf/open/floor/engine/vacuum, +/area/station/engineering/atmos) +"nxA" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L10" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/large, +/area/station/hallway/primary/fore) +"nxH" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/burgundy{ + name = "landing marker" + }, +/turf/open/space/basic, +/area/space/nearstation) +"nxU" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison) +"nya" = ( +/obj/structure/showcase/cyborg/old{ + dir = 4; + pixel_x = -9; + pixel_y = 2 + }, +/obj/machinery/light/small/directional/east, +/obj/effect/landmark/start/cyborg, +/obj/machinery/camera/motion/directional/east{ + c_tag = "AI - Upload Foyer"; + name = "motion-sensitive ai camera"; + network = list("aiupload") + }, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/ai_upload) +"nyb" = ( +/obj/effect/spawner/random/trash/moisture_trap, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/greater) +"nyh" = ( +/obj/structure/window/reinforced/spawner/directional/west{ + layer = 2.9 + }, +/obj/structure/flora/bush/sunny, +/mob/living/carbon/human/species/monkey, +/obj/structure/sign/poster/official/fruit_bowl/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/grass, +/area/station/science/genetics) +"nyC" = ( +/turf/closed/wall, +/area/station/service/hydroponics/garden) +"nyT" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/effect/turf_decal/trimline/blue/filled/warning, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/atmos) +"nyV" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/commons/fitness/recreation) +"nzb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/caution_sign, +/turf/open/floor/plating, +/area/station/maintenance/department/engine) +"nzh" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"nzp" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/atmos) +"nzw" = ( +/obj/machinery/chicken_grinder, +/turf/open/floor/wood, +/area/station/service/hydroponics/upper) +"nzC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/department/medical/central) +"nzD" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"nzM" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_red/half{ + dir = 4 + }, +/obj/structure/sign/nanotrasen{ + pixel_x = 32 + }, +/obj/effect/turf_decal/delivery, +/obj/item/clothing/suit/armor/riot, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/ai_monitored/security/armory) +"nzP" = ( +/obj/effect/turf_decal/vg_decals/department/med, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/lobby) +"nzY" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/textured_corner{ + dir = 4 + }, +/area/station/engineering/power_room) +"nAa" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 9 + }, +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/trimline/brown/filled/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/computer/department_orders/security{ + dir = 1 + }, +/turf/open/floor/iron/textured_large, +/area/station/security/lockers) +"nAb" = ( +/obj/structure/cable, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/ai) +"nAn" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/atmos) +"nAp" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"nAw" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/engineering/transit_tube) +"nAx" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/item/radio/intercom/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/greater) +"nAC" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/power_room) +"nAD" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 9 + }, +/turf/open/floor/iron/textured, +/area/station/cargo/warehouse) +"nAH" = ( +/turf/closed/wall/r_wall, +/area/station/ai_monitored/turret_protected/aisat/atmos) +"nAP" = ( +/obj/machinery/light/neon_lining{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"nBj" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen/small, +/area/station/service/kitchen/abandoned) +"nBH" = ( +/turf/open/floor/iron/textured, +/area/station/maintenance/port/central) +"nBJ" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/window/fulltile, +/turf/open/floor/grass, +/area/station/common/pool) +"nBM" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/station/science/ordnance/burnchamber) +"nCl" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/medical/medbay/lobby) +"nCp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/visible{ + dir = 1 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/medical/virology) +"nCE" = ( +/obj/machinery/door/airlock{ + id_tag = "Cell1"; + name = "Cell 1" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/grimy, +/area/station/service/chapel) +"nCZ" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/station/solars/starboard/fore) +"nDn" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/bot, +/obj/item/modular_computer/laptop/preset/civilian{ + pixel_y = 3 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/lobby) +"nDx" = ( +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 9 + }, +/obj/item/kirbyplants/random, +/obj/machinery/camera/directional/north{ + c_tag = "Aft Central Primary Hallway - Range"; + name = "hallway camera" + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) +"nDN" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/security/office) +"nDS" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/iron/stairs/left, +/area/station/engineering/main) +"nDX" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/upper) +"nEb" = ( +/obj/structure/rack, +/obj/structure/cable, +/obj/effect/turf_decal/box/white{ + color = "#52B4E9" + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/hallway/secondary/command) +"nEm" = ( +/turf/closed/wall, +/area/station/science/robotics/lab) +"nEp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos/hfr_room) +"nEz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall8"; + location = "hall7" + }, +/turf/open/floor/iron/textured_large, +/area/station/hallway/primary/aft) +"nEC" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 8 + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 2; + name = "Theatre Junction" + }, +/obj/effect/mapping_helpers/mail_sorting/service/theater, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"nEG" = ( +/obj/machinery/computer/security{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/glass/reinforced, +/area/station/security/office) +"nES" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/department/engine/atmos/lesser) +"nEW" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"nFa" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/supply/mining, +/obj/machinery/door/airlock/mining{ + name = "Mining Foundry" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/cargo/miningdock) +"nFg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/grille_or_waste, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine/atmos/lesser) +"nFs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/science/ordnance_maint) +"nFx" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm/directional/north, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/main) +"nFz" = ( +/obj/structure/chair/sofa/right/brown, +/obj/machinery/camera/directional/north{ + c_tag = "Dormitories - Lounge"; + name = "dormitories camera" + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/carpet/green, +/area/station/commons/dorms) +"nFD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/corrections_officer) +"nFQ" = ( +/obj/machinery/barsign/all_access/directional/north, +/obj/machinery/light/warm/directional/north, +/turf/open/floor/iron/grimy, +/area/station/commons/lounge) +"nFS" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/atmos/hfr_room) +"nFV" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/status_display/ai/directional/north, +/obj/effect/turf_decal/bot, +/obj/machinery/computer/records/medical, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/freezer, +/area/station/security/checkpoint/medical) +"nGa" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 6 + }, +/obj/structure/sign/poster/official/moth_piping/directional/south, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible/layer2, +/turf/open/floor/iron/textured, +/area/station/hallway/primary/aft) +"nGb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/aft) +"nGg" = ( +/obj/structure/closet/radiation, +/obj/effect/turf_decal/box, +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos/hfr_room) +"nGh" = ( +/obj/machinery/seed_extractor, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/hydroponics) +"nGF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_red/arrow_ccw{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/sign/warning/vacuum/external/directional/east, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"nGH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/crew_quarters/bar) +"nGM" = ( +/obj/machinery/light_switch/directional/north, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/computer/security/mining, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/textured_edge, +/area/station/security/checkpoint/supply) +"nGO" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Old Robotics" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/spawner/random/trash/grille_or_waste, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/science/research/abandoned) +"nGX" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/grass, +/area/station/service/hydroponics/upper) +"nGY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/grimy, +/area/station/service/library) +"nHf" = ( +/obj/structure/railing, +/turf/open/floor/iron/textured, +/area/station/command/cc_dock) +"nHw" = ( +/obj/effect/turf_decal/trimline/green/corner, +/obj/effect/turf_decal/siding/green{ + dir = 8 + }, +/turf/open/floor/iron/large, +/area/station/service/hydroponics) +"nHD" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/station/maintenance/department/security/brig) +"nHY" = ( +/obj/structure/fluff/arc, +/turf/open/floor/iron/textured_large, +/area/station/hallway/secondary/entry) +"nIi" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/telecomms/bus/preset_two, +/turf/open/floor/circuit/telecomms/server, +/area/station/tcommsat/server) +"nIl" = ( +/obj/machinery/power/shuttle_engine/heater, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine) +"nIx" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/command) +"nIB" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 6 + }, +/obj/machinery/light_switch/directional/south{ + pixel_x = -8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/science/ordnance) +"nIJ" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/airalarm/directional/south{ + pixel_x = 3; + pixel_y = -32 + }, +/obj/machinery/chem_master, +/obj/effect/turf_decal/bot_red, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/pharmacy) +"nIK" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/book/manual/wiki/security_space_law, +/turf/open/floor/carpet/blue, +/area/station/command/bridge) +"nIO" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/structure/table/reinforced, +/obj/machinery/firealarm/directional/north, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/storage/toolbox/mechanical, +/obj/machinery/light_switch/directional/north{ + pixel_x = -9 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 5 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Science - Ordnance Office"; + name = "science camera"; + network = list("ss13","rd") + }, +/turf/open/floor/iron/textured, +/area/station/science/ordnance/office) +"nIP" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/railing{ + dir = 8 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/textured, +/area/station/command/cc_dock) +"nIT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral/diagonal_centre, +/turf/open/floor/iron/diagonal, +/area/station/commons/dorms) +"nJe" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/iron/freezer, +/area/station/security/checkpoint/medical) +"nJj" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/entry) +"nJt" = ( +/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Ordnance Launch Site Maintenance" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/science/ordnance_maint) +"nJx" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/fore) +"nJF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/command/storage/eva) +"nJH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/newscaster/directional/north, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/structure/rack, +/obj/effect/turf_decal/box/white{ + color = "#486091" + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/hallway/primary/fore) +"nJJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall20"; + location = "hall19" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/command) +"nJS" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Science - Lobby"; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/structure/sign/nanotrasen{ + pixel_y = 32 + }, +/obj/machinery/vending/modularpc, +/turf/open/floor/iron/white/textured_edge, +/area/station/hallway/primary/fore) +"nJT" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/large, +/area/station/commons/fitness/recreation) +"nKb" = ( +/obj/structure/sign/warning/fire/directional/west, +/obj/machinery/computer/atmos_control/ordnancemix{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/science/ordnance) +"nKj" = ( +/obj/structure/chair/stool/directional/east, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood/large, +/area/station/commons/fitness/recreation/entertainment) +"nKq" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/white, +/area/station/science/lab) +"nKw" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/structure/closet/emcloset/wall{ + pixel_x = -32 + }, +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/trimline/white/end{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"nKV" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 1 + }, +/obj/machinery/duct, +/turf/open/floor/iron/white, +/area/station/science/genetics) +"nLB" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/security/courtroom) +"nLC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/sorting) +"nLM" = ( +/obj/machinery/rnd/production/circuit_imprinter/department/science, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/iron/dark/textured, +/area/station/science/robotics/lab) +"nLY" = ( +/obj/structure/table/wood/fancy/black, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/item/gun_maintenance_supplies{ + pixel_y = 4 + }, +/obj/item/gps/mining{ + gpstag = "QM0"; + pixel_y = 4 + }, +/obj/machinery/light_switch/directional/south, +/obj/item/folder/yellow{ + pixel_x = -15; + pixel_y = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/qm) +"nMf" = ( +/obj/structure/reagent_dispensers/plumbed{ + name = "medbay water reservoir" + }, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/delivery/blue, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/medical) +"nMh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate, +/obj/effect/spawner/random/maintenance/eight, +/turf/open/floor/iron/textured_large, +/area/station/cargo/warehouse) +"nMr" = ( +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/aft) +"nMu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine) +"nMv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port) +"nMx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance/external/glass{ + name = "Space Bridge Access" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/department/medical) +"nMA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured_large, +/area/station/hallway/secondary/construction) +"nMQ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"nMR" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating/airless, +/area/station/command/gateway) +"nMS" = ( +/obj/effect/turf_decal/bot_white/right, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/anticorner, +/turf/open/floor/iron/textured_corner{ + dir = 1 + }, +/area/station/engineering/gravity_generator) +"nMV" = ( +/obj/structure/sign/warning/explosives/directional/south, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/science/ordnance/testlab) +"nMZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/greater) +"nNc" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/table{ + name = "Jim Norton's Quebecois Coffee table" + }, +/obj/machinery/coffeemaker/impressa, +/obj/item/storage/box/coffeepack{ + pixel_x = 15; + pixel_y = 10 + }, +/obj/item/reagent_containers/cup/glass/bottle/juice/cream{ + pixel_x = 15; + pixel_y = 2 + }, +/obj/machinery/light/warm/directional/south, +/turf/open/floor/wood, +/area/station/hallway/secondary/entry) +"nNB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/turf/open/floor/iron/textured_large, +/area/station/cargo/drone_bay) +"nOq" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/engine, +/area/station/science/auxlab/firing_range) +"nOt" = ( +/turf/closed/wall/r_wall, +/area/station/science/ordnance/burnchamber) +"nOE" = ( +/obj/structure/table, +/obj/item/crowbar, +/obj/item/clothing/mask/gas, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/pod/dark, +/area/station/service/chapel/funeral) +"nON" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/lesser) +"nOO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/red/corner{ + dir = 8 + }, +/turf/open/floor/iron/textured_corner{ + dir = 8 + }, +/area/station/science/ordnance/testlab) +"nOP" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/duct, +/turf/open/floor/iron/freezer, +/area/station/security/checkpoint/medical) +"nOQ" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"nOT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_edge, +/area/station/hallway/primary/aft) +"nOX" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/atmos) +"nPa" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/service/theater) +"nPb" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "briglockdown"; + name = "Warden Desk Shutters" + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/security/warden) +"nPh" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/ai_upload) +"nPl" = ( +/obj/effect/landmark/start/captain, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain/private) +"nPn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/bitrunning/den) +"nPo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 6 + }, +/turf/open/floor/iron/dark/textured, +/area/station/science/robotics/mechbay) +"nPp" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/atmos) +"nPr" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/large, +/area/station/hallway/primary/fore) +"nPs" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L8" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/large, +/area/station/hallway/primary/fore) +"nPy" = ( +/obj/structure/chair/office, +/obj/effect/spawner/random/trash/mess, +/obj/effect/decal/cleanable/dirt, +/mob/living/basic/cockroach, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/fore) +"nPB" = ( +/obj/structure/chair/sofa/right/brown{ + dir = 8 + }, +/turf/open/floor/iron/grimy, +/area/station/commons/lounge) +"nPC" = ( +/obj/structure/cable, +/obj/effect/landmark/start/virologist, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_green/diagonal_centre, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/white/diagonal, +/area/station/medical/medbay/central) +"nPI" = ( +/obj/structure/chair/stool/directional/north, +/turf/open/floor/iron/grimy, +/area/station/commons/lounge) +"nPN" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/table/reinforced, +/obj/machinery/computer/records/medical/laptop{ + dir = 4; + pixel_x = 3; + pixel_y = 2 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"nPT" = ( +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/trimline/purple/filled/line, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/science/ordnance/testlab) +"nPV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/crew_quarters/bar) +"nQh" = ( +/obj/structure/bed/double, +/obj/effect/spawner/random/bedsheet/any/double, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/carpet/black, +/area/station/commons/dorms) +"nQj" = ( +/obj/machinery/cryopod{ + dir = 1 + }, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/common/cryopods) +"nQl" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/left/directional/west{ + name = "Hydroponics Deliveries"; + req_access = list("hydroponics") + }, +/turf/open/floor/iron/large, +/area/station/service/hydroponics) +"nQs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/medical/central) +"nQt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/science/xenobiology) +"nQy" = ( +/obj/machinery/duct, +/obj/machinery/light/neon_lining{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/science/xenobiology) +"nQG" = ( +/obj/effect/spawner/random/trash/grille_or_waste, +/turf/open/floor/iron/textured, +/area/station/maintenance/port) +"nQM" = ( +/obj/structure/closet/emcloset, +/obj/machinery/camera/directional/west{ + c_tag = "Xenobiology Lab - Airlock"; + network = list("ss13","rd","xeno") + }, +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/tile/purple/diagonal_centre, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/iron/white/diagonal, +/area/station/science/xenobiology) +"nQP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"nQV" = ( +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/tile/neutral/diagonal_centre, +/turf/open/floor/iron/diagonal, +/area/station/commons/dorms) +"nQW" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"nQY" = ( +/obj/machinery/firealarm/directional/east, +/turf/open/floor/carpet/cyan, +/area/station/commons/dorms) +"nRd" = ( +/obj/effect/spawner/random/structure/crate_abandoned, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/bar) +"nRo" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/window/brigdoor/left/directional/west{ + name = "Cytology Pen"; + req_access = list("research") + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/science/xenobiology) +"nRy" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/table, +/obj/machinery/microwave, +/turf/open/floor/iron/textured_large, +/area/station/cargo/miningoffice) +"nRz" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/machinery/camera/directional/west{ + c_tag = "Atmospherics - Aft Tanks"; + name = "atmospherics camera" + }, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4; + name = "N2 to Airmix" + }, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"nRG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/greater) +"nRL" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ + dir = 4 + }, +/obj/effect/spawner/random/engineering/canister, +/obj/structure/sign/warning/no_smoking/directional/north, +/obj/structure/noticeboard/directional/west, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/fore) +"nRP" = ( +/obj/machinery/corral_corner{ + mapping_id = "6" + }, +/obj/machinery/light/neon_lining{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"nRS" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder{ + pixel_x = 4; + pixel_y = 18 + }, +/obj/item/reagent_containers/cup/beaker{ + pixel_x = -8; + pixel_y = 12 + }, +/obj/item/reagent_containers/cup/beaker{ + pixel_x = -8; + pixel_y = 4 + }, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"nRV" = ( +/obj/structure/closet/secure_closet{ + name = "contraband locker"; + req_access = list("armory") + }, +/obj/effect/spawner/random/contraband/armory, +/obj/effect/spawner/random/contraband/armory, +/obj/effect/spawner/random/contraband/armory, +/obj/effect/spawner/random/contraband/armory, +/obj/effect/spawner/random/contraband/armory, +/obj/effect/spawner/random/maintenance/three, +/obj/effect/turf_decal/tile/dark_red/half, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_edge, +/area/station/ai_monitored/security/armory) +"nSm" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/roboticist, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/science/research) +"nSp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/purple/diagonal_centre, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white/diagonal, +/area/station/science/research) +"nSE" = ( +/obj/machinery/light/warm/directional/north, +/obj/effect/turf_decal/siding/green, +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/iron/dark/textured_large, +/area/station/commons/dorms) +"nSF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/aft) +"nSP" = ( +/obj/item/kirbyplants/organic/plant21{ + pixel_y = 3 + }, +/turf/open/floor/pod/dark, +/area/station/service/chapel/office) +"nSR" = ( +/obj/structure/dresser, +/obj/item/flashlight/lamp/bananalamp{ + pixel_x = 4; + pixel_y = 18 + }, +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_red/opposingcorners, +/turf/open/floor/iron, +/area/station/service/theater) +"nSS" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/service/glass{ + name = "Forge" + }, +/turf/open/floor/iron/vaporwave, +/area/station/service/barber) +"nSU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/crew_quarters/bar) +"nSV" = ( +/obj/machinery/mech_bay_recharge_port, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Cargo - Warehouse"; + name = "cargo camera" + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/textured_edge, +/area/station/cargo/warehouse) +"nSY" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/spawner/random/entertainment/arcade{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/wood/large, +/area/station/commons/fitness/recreation) +"nTh" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/light/warm/directional/west, +/obj/machinery/requests_console/auto_name/directional/west, +/turf/open/floor/wood, +/area/station/commons/fitness/recreation/entertainment) +"nTl" = ( +/obj/structure/sign/warning/vacuum, +/turf/closed/wall, +/area/station/cargo/storage) +"nTu" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/glass/reinforced, +/area/station/security/office) +"nTB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/cargo/office) +"nTF" = ( +/obj/structure/window/reinforced/survival_pod/spawner/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/station/commons/fitness/recreation/entertainment) +"nTS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"nTW" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp{ + pixel_x = -4; + pixel_y = 12 + }, +/obj/machinery/firealarm/directional/west, +/obj/item/paper_bin/carbon{ + pixel_x = 12; + pixel_y = 4 + }, +/obj/item/pen/fourcolor{ + pixel_x = 12; + pixel_y = 4 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/carpet/black, +/area/station/command/heads_quarters/qm) +"nTZ" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall, +/area/station/medical/medbay/central) +"nUc" = ( +/obj/effect/turf_decal/trimline/brown/filled/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/machinery/airalarm/directional/south, +/obj/machinery/computer/department_orders/engineering{ + dir = 1 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/lobby) +"nUe" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/station/solars/starboard/aft) +"nUi" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/machinery/requests_console/directional/north{ + department = "Cargo Bay"; + name = "Cargo Bay Requests Console" + }, +/obj/machinery/camera/directional/north{ + c_tag = "Cargo - Office"; + name = "cargo camera" + }, +/obj/structure/filingcabinet/filingcabinet, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/textured_edge, +/area/station/cargo/office) +"nUm" = ( +/obj/machinery/duct, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"nUy" = ( +/obj/effect/turf_decal/trimline/green/filled/warning, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/commons/fitness/recreation) +"nUz" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/hallway/secondary/command) +"nUB" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/purple/filled/line, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/science/ordnance/testlab) +"nUG" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 5 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/power_room) +"nUJ" = ( +/obj/machinery/computer/upload/borg{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/end{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/ai_upload) +"nUN" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"nUU" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/structure/rack/shelf, +/obj/item/storage/toolbox/electrical, +/obj/item/clothing/gloves/color/yellow, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/engineering/power_room) +"nVD" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 10 + }, +/obj/item/stack/sheet/iron/fifty{ + pixel_x = 9; + pixel_y = 3 + }, +/obj/item/stack/rods/fifty{ + pixel_x = -1; + pixel_y = 3 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/auxlab/firing_range) +"nVO" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/iron/dark/textured, +/area/station/service/chapel/office) +"nVQ" = ( +/obj/structure/table, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/command/teleporter) +"nWc" = ( +/obj/structure/table/wood, +/obj/structure/displaycase/forsale{ + pixel_y = 8 + }, +/obj/effect/turf_decal/siding/green{ + dir = 9 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"nWf" = ( +/obj/structure/chair/comfy/carp{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"nWh" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/textured_edge, +/area/station/cargo/warehouse) +"nWl" = ( +/obj/effect/spawner/random/maintenance, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/landmark/generic_maintenance_landmark, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/fore) +"nWq" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/cargo/storage) +"nWu" = ( +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron/large, +/area/station/commons/toilet) +"nWw" = ( +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "Barshutters"; + name = "Bar Shutters" + }, +/obj/machinery/pollution_scrubber{ + pixel_x = 7; + pixel_y = 4 + }, +/turf/open/floor/iron/large, +/area/station/service/bar) +"nWY" = ( +/obj/effect/turf_decal/trimline/green/filled/warning, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/hallway/primary/fore) +"nXb" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/maintenance/disposal/incinerator) +"nXi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/line, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"nXj" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white/textured_large, +/area/station/hallway/primary/fore) +"nXs" = ( +/obj/structure/fireaxecabinet/directional/north, +/obj/structure/table, +/obj/item/storage/box/lights/mixed{ + pixel_y = 3 + }, +/obj/item/analyzer{ + pixel_y = 4 + }, +/obj/item/analyzer{ + pixel_y = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"nXu" = ( +/obj/structure/bed/maint, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 10 + }, +/obj/item/bedsheet/grey, +/obj/machinery/flasher/directional/west{ + id = "brig3"; + pixel_x = -24; + pixel_y = -24 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/brig) +"nXH" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/structure/chair/office, +/obj/machinery/computer/security/telescreen{ + desc = "Used for monitoring medbay to ensure patient safety."; + dir = 8; + name = "Science Monitor"; + network = list("rd","toxins","minisat","xeno","test"); + pixel_x = 32 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/security/checkpoint/science/research) +"nXM" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/carpet/blue, +/area/station/command/bridge) +"nXO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/qm) +"nXW" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/freezer, +/area/station/medical/pharmacy) +"nYc" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/wood/large, +/area/station/service/barber) +"nYj" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/window/fulltile, +/turf/open/floor/grass, +/area/station/medical/medbay/central) +"nYs" = ( +/obj/effect/turf_decal/stripes/red/corner, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"nYt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/machinery/meter, +/obj/effect/turf_decal/stripes/line, +/obj/item/radio/intercom/directional/south, +/obj/structure/cable, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"nYI" = ( +/obj/effect/landmark/secequipment, +/obj/structure/sign/poster/official/random/directional/north, +/obj/effect/turf_decal/tile/red/diagonal_centre, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/office) +"nYT" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/closet/emcloset/wall{ + pixel_x = 32 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/white/end{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/secondary/command) +"nYU" = ( +/obj/machinery/suit_storage_unit/industrial/loader, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_edge, +/area/station/cargo/warehouse) +"nZg" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_large, +/area/station/cargo/office) +"nZn" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/turf_decal/box/red, +/turf/open/floor/iron/textured_large, +/area/station/science/ordnance/testlab) +"nZr" = ( +/obj/structure/flora/ocean/longseaweed, +/obj/structure/flora/ocean/glowweed, +/obj/effect/spawner/liquids_spawner{ + reagent_list = list(/datum/reagent/water=600) + }, +/turf/open/misc/asteroid, +/area/station/commons/dorms) +"nZF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"nZT" = ( +/obj/machinery/light/floor/has_bulb, +/obj/effect/spawner/liquids_spawner, +/turf/open/floor/lowered/iron/pool, +/area/station/common/pool) +"nZU" = ( +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/machinery/status_display/ai/directional/west, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/turf/open/floor/iron/diagonal, +/area/station/hallway/secondary/service) +"nZW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/brown/filled/line, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/security/prison) +"oae" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/lockers) +"oao" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/execution/transfer) +"oaA" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/machinery/light/warm/directional/north, +/obj/structure/displaycase/trophy, +/obj/structure/sign/plaques/kiddie/perfect_man{ + pixel_y = 32 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/nt_rep) +"oaD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/disposal/incinerator) +"oaI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + id_tag = "innerbrig"; + name = "Security Office" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/security/entrance, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/brig) +"oaL" = ( +/obj/structure/table/wood, +/obj/item/taperecorder{ + pixel_x = 7; + pixel_y = 14 + }, +/obj/item/flashlight/lamp{ + pixel_x = -5; + pixel_y = 2 + }, +/turf/open/floor/iron/grimy, +/area/station/service/lawoffice) +"oaZ" = ( +/obj/machinery/corral_corner{ + mapping_id = "1" + }, +/obj/machinery/light/neon_lining{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 9 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"obh" = ( +/obj/effect/spawner/random/structure/table_or_rack, +/obj/effect/spawner/random/maintenance/three, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft) +"obp" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/chair/sofa/bench{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/entry) +"ocb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/decal/cleanable/blood/gibs/old, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/electrical) +"ocf" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/iron/large, +/area/station/hallway/primary/central/aft) +"ocj" = ( +/obj/structure/showcase/cyborg/old{ + dir = 8; + pixel_x = 9; + pixel_y = 2 + }, +/obj/machinery/camera/directional/north{ + c_tag = "AI Satellite - Antechamber"; + name = "ai camera"; + network = list("minisat"); + start_active = 1 + }, +/obj/structure/sign/plaques/kiddie{ + pixel_x = 32 + }, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/aisat_interior) +"ock" = ( +/obj/structure/window/spawner/directional/south, +/obj/structure/table, +/obj/item/disk/tech_disk{ + pixel_x = -6 + }, +/obj/item/disk/tech_disk{ + pixel_x = 6 + }, +/obj/item/disk/tech_disk{ + pixel_y = 6 + }, +/obj/item/book/manual/wiki/research_and_development, +/obj/effect/turf_decal/trimline/purple/filled/line, +/turf/open/floor/iron/white/side{ + dir = 1 + }, +/area/station/science/lab) +"ocs" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/machinery/newscaster/directional/east, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/iron/diagonal, +/area/station/hallway/secondary/exit/departure_lounge) +"ocF" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/medical/surgery) +"ocV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured, +/area/station/science/xenobiology) +"odh" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 6 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"odp" = ( +/obj/machinery/holopad, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/command) +"odD" = ( +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical) +"odG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/visible{ + dir = 6 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/science/xenobiology) +"odJ" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"odX" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/textured_large, +/area/station/cargo/miningoffice) +"oec" = ( +/obj/effect/spawner/random/structure/tank_holder, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/greater) +"oee" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/large, +/area/station/science/research) +"oej" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 4 + }, +/obj/effect/turf_decal/weather/sand{ + dir = 1 + }, +/obj/machinery/door/window/left/directional/south{ + name = "Tegu-rrarium"; + req_access = list("science") + }, +/turf/open/floor/grass, +/area/station/science/research) +"oeq" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/large, +/area/station/security/checkpoint/customs) +"oer" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/science/xenobiology) +"oew" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge, +/area/station/science/ordnance) +"oeB" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/structure/sign/poster/random/directional/west, +/obj/effect/landmark/start/hangover/closet, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/commons/fitness/recreation/entertainment) +"oeK" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/structure/closet/firecloset/wall{ + pixel_x = -32 + }, +/obj/effect/turf_decal/trimline/white/end{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"oeM" = ( +/obj/machinery/chem_master/condimaster, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/turf/open/floor/iron/kitchen, +/area/station/security/prison/mess) +"oeS" = ( +/obj/machinery/door/window/left/directional/south{ + name = "Mass Driver Door"; + req_access = list("ordnance") + }, +/obj/effect/turf_decal/trimline/purple/filled/warning, +/obj/effect/turf_decal/stripes/red/line, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/science/ordnance/testlab) +"ofa" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Xenobiology Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/science/xenobiology) +"ofb" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/supply/qm, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/qm/glass{ + name = "Quartermaster's Office" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/textured_large, +/area/station/command/heads_quarters/qm) +"ofc" = ( +/obj/structure/table/glass, +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/item/storage/box/bodybags, +/obj/structure/curtain, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/iron/freezer, +/area/station/medical/treatment_center) +"ofd" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/tile/blue/full, +/obj/item/surgery_tray, +/obj/structure/sign/nanotrasen{ + pixel_x = 32 + }, +/obj/machinery/requests_console/auto_name/directional/north, +/turf/open/floor/iron/freezer, +/area/station/medical/surgery) +"ofo" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine/atmos/lesser) +"ofF" = ( +/obj/structure/trash_pile, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"ofG" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_edge, +/area/station/medical/exam_room) +"ofY" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/bot, +/obj/item/book/manual/wiki/atmospherics, +/obj/item/holosign_creator/atmos, +/obj/item/holosign_creator/atmos, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos/hfr_room) +"oga" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/blue/filled/warning, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/medical/medbay/central) +"ogb" = ( +/obj/machinery/smartfridge, +/obj/effect/turf_decal/bot, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen_service"; + name = "Service Shutter" + }, +/turf/open/floor/iron/large, +/area/station/service/kitchen) +"ogc" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/greater) +"ogi" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Departures" + }, +/turf/open/floor/iron/large, +/area/station/hallway/primary/central) +"ogv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/loading_area/red{ + dir = 8 + }, +/obj/machinery/door/window/left/directional/east{ + name = "Range" + }, +/turf/open/floor/engine, +/area/station/science/auxlab/firing_range) +"ogw" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/aft/upper) +"ogB" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/science/research) +"ogL" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/table/wood, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"ohd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/maintenance/external/glass{ + name = "Space Bridge Access" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/department/security/greater) +"ohh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/duct, +/turf/open/floor/iron/white/textured_large, +/area/station/science/xenobiology) +"ohi" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/pen{ + pixel_y = 4 + }, +/obj/structure/table/wood, +/turf/open/floor/carpet/cyan, +/area/station/command/heads_quarters/blueshield) +"ohz" = ( +/obj/machinery/light/cold/directional/north, +/obj/effect/turf_decal/trimline/white/end, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"ohH" = ( +/turf/closed/wall, +/area/station/science/research) +"ohI" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/bot, +/obj/item/pipe_dispenser, +/obj/item/pipe_dispenser, +/obj/item/storage/belt/utility, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"ohO" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/storage_shared) +"oia" = ( +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/hallway/primary/fore) +"oie" = ( +/obj/structure/table, +/obj/machinery/door/firedoor, +/obj/structure/desk_bell{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/item/folder/white{ + pixel_x = 3; + pixel_y = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/window/left/directional/east{ + name = "Hydroponics Desk"; + req_access = list("hydroponics") + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "hydroponics_counter"; + name = "Hydroponics Counter Shutters" + }, +/turf/open/floor/iron, +/area/station/service/hydroponics) +"oif" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"oio" = ( +/obj/effect/turf_decal/trimline/dark_red/filled/line, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/secondary/construction) +"oiv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"oiR" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/duct, +/obj/structure/disposalpipe/junction{ + dir = 2 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/medical/medbay/central) +"oiW" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/machinery/status_display/evac/directional/west, +/obj/machinery/firealarm/directional/north{ + pixel_x = -7 + }, +/obj/machinery/button/door/directional/north{ + id = "MedbayFoyer"; + name = "Medbay Doors Control"; + normaldoorcontrol = 1; + pixel_x = 5 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"oiZ" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/maintenance/disposal/incinerator) +"ojc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/grunge{ + id_tag = "Cell1Privacy"; + name = "Cell 1" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/prison) +"ojJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/office) +"ojL" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/power_room) +"ojO" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/duct, +/obj/structure/disposalpipe/junction/flip{ + dir = 2 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) +"ojT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral/diagonal_centre, +/turf/open/floor/iron/diagonal, +/area/station/commons/dorms) +"ojZ" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/white/textured_edge, +/area/station/medical/medbay/lobby) +"oki" = ( +/turf/closed/wall/r_wall, +/area/station/science/ordnance/office) +"okn" = ( +/turf/open/floor/plating, +/area/station/security/execution/transfer) +"okp" = ( +/obj/machinery/computer/rdservercontrol, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"okt" = ( +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/status_display/ai/directional/south, +/turf/open/floor/carpet/black, +/area/station/service/chapel/office) +"oky" = ( +/obj/machinery/corral_corner{ + mapping_id = "6" + }, +/obj/machinery/light/neon_lining{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"okG" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/vending/coffee, +/obj/machinery/camera/directional/west{ + c_tag = "Medbay - Break Room"; + name = "medical camera"; + network = list("ss13","medical") + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured, +/area/station/medical/break_room) +"okL" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/item/folder{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics_shutters"; + name = "Robotics Privacy Shutters" + }, +/obj/machinery/door/window/left/directional/north{ + name = "Robotics Desk"; + req_access = list("robotics") + }, +/obj/structure/desk_bell{ + pixel_x = -7; + pixel_y = 6 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "roboticsprivacy"; + name = "Robotics Shutters"; + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/robotics/lab) +"okV" = ( +/obj/effect/turf_decal/trimline/dark_green/filled/line{ + dir = 10 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/white, +/area/station/medical/virology) +"okX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/spawner/random/structure/steam_vent, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/crew_quarters/bar) +"olf" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/greater) +"olo" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/landmark/start/warden, +/turf/open/floor/glass/reinforced, +/area/station/security/office) +"olt" = ( +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ + dir = 6 + }, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/science/ordnance) +"olv" = ( +/turf/closed/wall/r_wall, +/area/station/security/interrogation) +"olE" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/parquet, +/area/station/common/night_club) +"olS" = ( +/obj/structure/bodycontainer/crematorium{ + id = "crematoriumChapel" + }, +/obj/structure/sign/warning/hot_temp/directional/north, +/turf/open/floor/pod/dark, +/area/station/service/chapel/office) +"olT" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/textured_corner{ + dir = 4 + }, +/area/station/engineering/atmos) +"omg" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/grass, +/area/station/service/chapel) +"omp" = ( +/obj/machinery/airalarm/directional/east, +/obj/item/storage/bag/trash, +/obj/item/clothing/gloves/color/blue, +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/station/commons/dorms) +"omw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/flashlight/flare/candle, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/crew_quarters/bar) +"omB" = ( +/obj/structure/railing{ + dir = 9; + layer = 3.1 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 9 + }, +/turf/open/floor/iron/corner, +/area/station/hallway/primary/central) +"omI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/airlock/hydroponics/glass{ + name = "Ranch" + }, +/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/service/hydroponics/upper) +"omT" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Mining Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/mining, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/lesser) +"omW" = ( +/obj/effect/turf_decal/bot/right, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos/hfr_room) +"onb" = ( +/obj/structure/closet/firecloset, +/obj/structure/sign/departments/aisat/directional/west, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"onB" = ( +/obj/effect/turf_decal/tile/red/full, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/pod/dark, +/area/station/service/chapel/office) +"onJ" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/light/cold/directional/south, +/obj/structure/table/glass, +/obj/item/storage/test_tube_rack{ + pixel_y = 10 + }, +/obj/item/storage/test_tube_rack{ + pixel_y = 2 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) +"onK" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/engine, +/area/station/engineering/atmos/storage/gas) +"onP" = ( +/turf/closed/wall/r_wall, +/area/station/command/heads_quarters/qm) +"onY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/exit/departure_lounge) +"ooa" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"oob" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/trimline/blue/corner, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/lobby) +"ooc" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/sorting/mail{ + dir = 1; + name = "HoS Junction" + }, +/obj/effect/turf_decal/siding/red/corner, +/obj/structure/cable, +/obj/effect/mapping_helpers/mail_sorting/security/hos_office, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/security/office) +"ooh" = ( +/obj/structure/table, +/obj/item/clothing/gloves/latex, +/obj/item/hemostat, +/obj/machinery/status_display/evac/directional/east, +/obj/machinery/light/small/directional/east, +/obj/item/reagent_containers/spray/syndicate, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/greater) +"ooi" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/chair/stool/directional/east, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/solars/port/aft) +"oop" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/disposalpipe/segment, +/obj/structure/window/fulltile, +/turf/open/floor/grass, +/area/station/service/bar) +"ooq" = ( +/obj/structure/flora/bush/fullgrass, +/obj/structure/window/spawner/directional/north, +/turf/open/floor/grass, +/area/station/hallway/secondary/exit/departure_lounge) +"ooU" = ( +/obj/machinery/door/airlock/medical{ + name = "Exam Room" + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/exam_room) +"ooW" = ( +/obj/effect/turf_decal/trimline/dark_red/arrow_cw{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central) +"ope" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/exit/departure_lounge) +"opf" = ( +/obj/structure/window/spawner/directional/north, +/obj/structure/flora/bush/sparsegrass, +/obj/structure/flora/bush/flowers_pp, +/turf/open/floor/grass, +/area/station/hallway/secondary/exit/departure_lounge) +"opg" = ( +/obj/item/folder/red{ + pixel_x = -14; + pixel_y = 4 + }, +/obj/item/folder/blue{ + pixel_y = 4 + }, +/obj/item/pen/fountain{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/structure/table/wood/fancy/purple, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/security/courtroom) +"opp" = ( +/obj/structure/closet/l3closet/scientist, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/gateway) +"opr" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/machinery/computer/order_console/bitrunning, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/bitrunning/den) +"opy" = ( +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/science/ordnance_maint) +"opI" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/atmos) +"opM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/carpet/blue, +/area/station/command/bridge) +"opN" = ( +/obj/machinery/power/shuttle_engine/heater, +/obj/structure/window/reinforced/spawner/directional/north, +/turf/open/floor/plating, +/area/space/nearstation) +"opQ" = ( +/obj/structure/sign/poster/contraband/lamarr/directional/west, +/obj/machinery/atmospherics/components/unary/passive_vent{ + dir = 1; + name = "server vent" + }, +/turf/open/floor/circuit/telecomms/server, +/area/station/science/server) +"opW" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/parquet, +/area/station/common/night_club) +"oqe" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/science/robotics/lab) +"oqn" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/stone, +/area/station/service/barber) +"oqu" = ( +/obj/effect/turf_decal/tile/blue/full, +/obj/structure/window/spawner/directional/west, +/obj/structure/closet/secure_closet/medical1, +/obj/item/blood_filter, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/freezer, +/area/station/medical/surgery) +"oqF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/crew_quarters/bar) +"oqM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/obj/machinery/computer/diseasesplicer, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/virology) +"ore" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/item/radio/intercom/directional/north, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_edge, +/area/station/medical/medbay/central) +"orj" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/plasteel/twenty, +/obj/item/wrench, +/obj/effect/turf_decal/bot, +/obj/item/grenade/chem_grenade/smart_metal_foam, +/obj/item/crowbar/red, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/textured, +/area/station/engineering/gravity_generator) +"orq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"ort" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/disposal/bin, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"oru" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/science/xenobiology) +"orv" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"ory" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/corner{ + dir = 8 + }, +/area/station/hallway/primary/central/aft) +"orH" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/bush/flowers_pp/style_random, +/obj/effect/spawner/random/food_or_drink/seed, +/obj/effect/spawner/random/food_or_drink/seed, +/turf/open/floor/grass, +/area/station/service/hydroponics/garden/abandoned) +"orM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ + dir = 8 + }, +/obj/machinery/meter, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"orN" = ( +/obj/effect/turf_decal/nova_decals/enclave/top/left{ + color = "#52B4E9" + }, +/obj/effect/turf_decal/trimline/blue/corner, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/lobby) +"orT" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/primary/central/aft) +"osb" = ( +/obj/structure/cable, +/obj/structure/fluff/fokoff_sign, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"osm" = ( +/obj/structure/chair/office, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 6 + }, +/obj/effect/landmark/start/cargo_technician, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured, +/area/station/cargo/sorting) +"osw" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/firealarm/directional/east, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"osx" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/atmos) +"osJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/station/service/bar) +"osK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/wrench/medical, +/obj/machinery/door/window/brigdoor/left/directional/west{ + name = "Chemistry Testing"; + req_access = list("plumbing") + }, +/turf/open/floor/engine, +/area/station/medical/chemistry) +"osL" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/commons/fitness/recreation/entertainment) +"osR" = ( +/obj/structure/table, +/obj/item/stack/sheet/cardboard{ + amount = 14 + }, +/obj/item/stack/package_wrap, +/obj/item/stack/license_plates/empty/fifty, +/obj/item/radio/intercom/prison/directional/north, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/security/prison/work) +"osS" = ( +/obj/effect/turf_decal/siding/thinplating/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"osT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/neutral/filled/warning, +/obj/effect/turf_decal/trimline/neutral/filled/warning, +/obj/effect/turf_decal/trimline/neutral/filled/warning, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/hallway/secondary/command) +"osX" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured_large, +/area/station/command/cc_dock) +"oth" = ( +/obj/structure/chair/sofa/bench, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"otl" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/obj/machinery/computer/atmos_control/plasma_tank{ + dir = 4 + }, +/obj/structure/window/reinforced/plasma/spawner/directional/west, +/obj/effect/turf_decal/tile/purple/full, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"otq" = ( +/obj/machinery/power/shuttle_engine/heater, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/obj/structure/window/reinforced/plasma/spawner/directional/west, +/turf/open/floor/iron/textured, +/area/station/common/night_club) +"otw" = ( +/turf/closed/wall/r_wall, +/area/station/science/ordnance/freezerchamber) +"otC" = ( +/obj/structure/window/reinforced/spawner/directional/west{ + layer = 2.9 + }, +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/bot, +/obj/machinery/light/directional/south, +/turf/open/floor/wood/large, +/area/station/security/courtroom) +"otQ" = ( +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/machinery/door/airlock/maintenance{ + name = "Medical Maintenance" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical/morgue) +"otU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/wood, +/area/station/commons/vacant_room/office) +"otW" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/turf/open/floor/iron/white/diagonal, +/area/station/medical/medbay/central) +"ouk" = ( +/obj/machinery/door/airlock{ + name = "Toilet Unit" + }, +/turf/open/floor/iron/large, +/area/station/commons/dorms/laundry) +"ouu" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/light/colour_cycle/dancefloor_b, +/area/station/common/night_club) +"ouI" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/aft) +"ouL" = ( +/obj/structure/table, +/obj/item/stock_parts/micro_laser{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/stock_parts/micro_laser{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/stock_parts/micro_laser{ + pixel_x = 2 + }, +/obj/item/stock_parts/micro_laser{ + pixel_x = 6; + pixel_y = -2 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/cargo/drone_bay) +"ouX" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/department/security/brig) +"ovf" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/machinery/duct, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/medical/treatment_center) +"ovi" = ( +/obj/structure/closet/secure_closet/security/cargo, +/obj/machinery/airalarm/directional/east, +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/security/checkpoint/supply) +"ovo" = ( +/obj/structure/closet/secure_closet/nanotrasen_consultant, +/obj/item/clothing/accessory/medal/gold/ordom, +/obj/item/storage/briefcase/secure, +/obj/item/clothing/gloves/combat, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/nt_rep) +"ovT" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/atmos) +"ovW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"owb" = ( +/obj/item/clothing/head/cone, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/aft) +"owg" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/landmark/start/warden, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/security/warden) +"owi" = ( +/obj/effect/turf_decal/trimline/dark_red/arrow_ccw, +/obj/structure/closet/firecloset/wall{ + pixel_y = -32 + }, +/obj/effect/turf_decal/trimline/white/end{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central) +"owl" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/pod/dark, +/area/station/engineering/storage/tech) +"owm" = ( +/obj/machinery/camera/directional/south{ + c_tag = "Holodeck Control" + }, +/obj/item/radio/intercom/directional/south, +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 10 + }, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) +"own" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/gravity_generator) +"owo" = ( +/obj/structure/chair/stool/directional/west, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/theater) +"ows" = ( +/obj/machinery/rnd/production/techfab/department/medical, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/iron/white, +/area/station/medical/storage) +"owF" = ( +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch" + }, +/obj/effect/spawner/random/structure/barricade, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine) +"owG" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/cargo/sorting) +"owP" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1; + initialize_directions = 8 + }, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/atmos) +"oxa" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, +/turf/closed/wall, +/area/station/engineering/atmos) +"oxb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/hallway/secondary/command) +"oxv" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/station/science/research) +"oxA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"oxE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/mech_bay_recharge_port, +/turf/open/floor/iron/textured, +/area/station/science/research/abandoned) +"oxH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/iron/grimy, +/area/station/commons/vacant_room/office) +"oxL" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured_large, +/area/station/engineering/lobby) +"oxP" = ( +/obj/machinery/button/ignition/incinerator/atmos{ + pixel_x = -6 + }, +/turf/closed/wall/r_wall, +/area/station/maintenance/disposal/incinerator) +"oxW" = ( +/obj/structure/closet/firecloset/wall{ + pixel_y = 32 + }, +/obj/effect/turf_decal/trimline/white/mid_joiner, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_red/diagonal_centre, +/obj/effect/turf_decal/trimline/white/end, +/obj/effect/turf_decal/tile/neutral/diagonal_centre, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/execution/transfer) +"oxZ" = ( +/obj/structure/table/wood, +/obj/effect/spawner/random/entertainment/musical_instrument, +/obj/item/clothing/glasses/monocle, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/wood/large, +/area/station/service/theater) +"oyg" = ( +/turf/open/floor/engine, +/area/station/science/explab) +"oyq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/external{ + name = "Escape Pod"; + space_dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/landmark/navigate_destination/dockescpod1, +/turf/open/floor/catwalk_floor, +/area/station/hallway/secondary/command) +"oyz" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/table/wood/fancy/royalblue, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/pen/fountain{ + pixel_y = 4 + }, +/obj/item/melee/chainofcommand{ + pixel_y = 5 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"oyG" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/security/checkpoint/supply) +"oyX" = ( +/obj/effect/turf_decal/trimline/green/arrow_cw{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/closet/emcloset/wall{ + pixel_y = 32 + }, +/obj/machinery/light/warm/directional/north, +/obj/effect/turf_decal/trimline/white/end, +/turf/open/floor/iron/small, +/area/station/commons/dorms) +"oyZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Fore Central Primary Hallway" + }, +/turf/open/floor/iron/large, +/area/station/hallway/primary/central/fore) +"oza" = ( +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine/atmos) +"ozn" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/qm) +"ozq" = ( +/obj/effect/turf_decal/vg_decals/numbers/three, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/command) +"ozH" = ( +/obj/effect/mapping_helpers/airlock/access/all/science/research, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Circuit Lab Maintenance" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/crew_quarters/bar) +"ozT" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "ceblast"; + name = "Chief Engineer's Office Blast Doors" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "CEShutter" + }, +/turf/open/floor/plating, +/area/station/command/heads_quarters/ce) +"oAf" = ( +/obj/structure/closet/secure_closet/medical1, +/obj/effect/turf_decal/trimline/dark_green/filled/line{ + dir = 1 + }, +/obj/machinery/light_switch/directional/north, +/obj/effect/turf_decal/bot, +/obj/machinery/light/cold/directional/north, +/obj/item/crowbar/red, +/turf/open/floor/iron/white/textured_edge, +/area/station/medical/virology) +"oAo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/small, +/area/station/commons/dorms) +"oAx" = ( +/obj/machinery/vending/clothing, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/herringbone, +/area/station/service/theater) +"oAD" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/effect/turf_decal/bot_red, +/obj/structure/sign/poster/contraband/arc_slimes/directional/south, +/obj/machinery/plumbing/ooze_compressor, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/science/xenobiology) +"oAF" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"oAM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/pod/dark, +/area/station/service/chapel/office) +"oAR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/textured_large, +/area/station/hallway/secondary/exit/departure_lounge) +"oAV" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/hallway/primary/aft) +"oBb" = ( +/turf/open/floor/plating/airless, +/area/space/nearstation) +"oBd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/science/ordnance_maint) +"oBe" = ( +/obj/machinery/restaurant_portal/bar, +/obj/effect/turf_decal/delivery/red, +/turf/open/floor/iron/textured_large, +/area/station/commons/lounge) +"oBf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_edge, +/area/station/science/ordnance/office) +"oBl" = ( +/obj/effect/mapping_helpers/airlock/access/all/engineering/tcoms, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/engineering/glass/critical{ + heat_proof = 1; + name = "Server Room" + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/tcommsat/computer) +"oBx" = ( +/turf/closed/wall/r_wall, +/area/station/ai_monitored/turret_protected/aisat_interior) +"oBA" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/effect/landmark/start/chemist, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/medical/medbay/lobby) +"oBB" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"oBF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate, +/obj/effect/spawner/random/maintenance/four, +/obj/effect/spawner/random/medical/minor_healing, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/upper) +"oBJ" = ( +/obj/structure/table/reinforced, +/obj/item/taperecorder, +/obj/item/restraints/handcuffs, +/obj/item/flashlight/lamp, +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/tile/dark_red/fourcorners, +/turf/open/floor/iron/dark/textured, +/area/station/security/execution/education) +"oBK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/sepia, +/area/station/service/library) +"oBR" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"oBW" = ( +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/plating, +/area/station/maintenance/department/medical/morgue) +"oCl" = ( +/turf/closed/wall/r_wall, +/area/station/engineering/supermatter/room) +"oCo" = ( +/obj/structure/railing, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/flowers_br, +/mob/living/basic/sheep, +/turf/open/floor/grass, +/area/station/hallway/secondary/exit/departure_lounge) +"oCs" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 6 + }, +/obj/structure/closet/wardrobe/miner, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/cargo/miningdock) +"oCM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/greater) +"oCP" = ( +/obj/machinery/door/airlock/virology/glass{ + name = "Virology Lab" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/medical/virology, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/virology) +"oCY" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/landmark/start/lawyer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/grimy, +/area/station/service/lawoffice) +"oDn" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/hallway/primary/aft) +"oDz" = ( +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/bot, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/medical/surgery) +"oEc" = ( +/obj/structure/table, +/obj/machinery/button/door/directional/east{ + id = "roboticssurgery"; + name = "Robotics Surgery Privacy"; + pixel_y = -4; + req_access = list("robotics") + }, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/effect/turf_decal/tile/dark_red/anticorner/contrasted{ + dir = 4 + }, +/obj/item/mmi{ + pixel_y = -14 + }, +/obj/item/mmi{ + pixel_y = -10 + }, +/obj/item/mmi{ + pixel_y = -5 + }, +/turf/open/floor/iron/dark/textured, +/area/station/science/robotics/lab) +"oEk" = ( +/obj/machinery/airalarm/directional/east, +/obj/machinery/light/small/directional/east, +/obj/item/pushbroom, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/station/commons/dorms) +"oEn" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/grassy, +/obj/structure/flora/bush/flowers_yw, +/obj/machinery/door/poddoor/preopen{ + id = "hoslockdown"; + name = "Head of Security Blast Door" + }, +/obj/structure/window/reinforced/fulltile, +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "hoscurtain"; + name = "curtain" + }, +/obj/structure/cable, +/turf/open/floor/grass, +/area/station/command/heads_quarters/hos) +"oEp" = ( +/obj/structure/frame/computer{ + anchored = 1; + dir = 4 + }, +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/bot, +/turf/open/floor/circuit/green, +/area/station/science/research/abandoned) +"oEs" = ( +/obj/effect/turf_decal/tile/dark_red/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/science/robotics/lab) +"oEw" = ( +/obj/structure/chair/stool/directional/south, +/obj/machinery/airalarm/directional/west, +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/effect/turf_decal/tile/red/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/commons/lounge) +"oEy" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/line, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"oEC" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/chair/sofa/bench/left, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/textured_large, +/area/station/security/brig) +"oEE" = ( +/obj/effect/landmark/start/chief_engineer, +/obj/item/radio/intercom/directional/south{ + pixel_x = -1 + }, +/obj/machinery/button/door/directional/south{ + id = "ceblast"; + name = "Office Lockdown Control"; + pixel_x = 15; + req_access = list("ce") + }, +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/carpet/orange, +/area/station/command/heads_quarters/ce) +"oEJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/science/robotics/mechbay) +"oET" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/hallway/secondary/command) +"oEW" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/service/chapel) +"oEY" = ( +/obj/effect/turf_decal/tile/dark/fourcorners, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 6 + }, +/turf/open/floor/noslip, +/area/station/service/janitor) +"oFc" = ( +/obj/structure/transit_tube/crossing{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"oFl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"oFt" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/commons/fitness/recreation/entertainment) +"oFy" = ( +/obj/machinery/rnd/server/master, +/obj/item/toy/figure/ninja{ + pixel_y = 12 + }, +/obj/effect/turf_decal/bot_red, +/turf/open/floor/circuit/telecomms/server, +/area/station/science/server) +"oFF" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/science/research) +"oFQ" = ( +/obj/structure/table/wood/fancy/royalblue, +/obj/item/stack/spacecash/c500, +/obj/item/reagent_containers/cup/glass/bottle/vodka/badminka{ + pixel_x = 6; + pixel_y = 19 + }, +/obj/item/reagent_containers/cup/glass/drinkingglass/shotglass{ + pixel_x = -1; + pixel_y = 12 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/machinery/camera/motion/directional/west{ + c_tag = "Vault"; + network = list("vault") + }, +/turf/open/floor/engine, +/area/station/ai_monitored/command/nuke_storage) +"oFU" = ( +/obj/machinery/door/airlock/research/glass/incinerator/ordmix_exterior{ + name = "Burn Chamber Exterior Airlock" + }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, +/turf/open/floor/engine/vacuum, +/area/station/science/ordnance/burnchamber) +"oFZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/greater) +"oGk" = ( +/obj/machinery/recharge_station, +/obj/machinery/requests_console/directional/east{ + department = "EVA"; + name = "EVA Requests Console" + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/ai_monitored/command/storage/eva) +"oGw" = ( +/obj/effect/turf_decal/bot_red, +/obj/structure/bodycontainer/morgue{ + dir = 2 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"oGH" = ( +/obj/machinery/light/cold/directional/south, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"oGI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/greater) +"oGP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/radio/intercom/prison/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron/dark/small, +/area/station/security/prison/garden) +"oHc" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos/pumproom) +"oHi" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 10 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos/hfr_room) +"oHr" = ( +/turf/open/floor/engine/o2, +/area/station/engineering/atmos) +"oHs" = ( +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 6 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/textured, +/area/station/engineering/break_room) +"oHt" = ( +/obj/machinery/computer/records/security{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hop) +"oHv" = ( +/obj/structure/closet, +/obj/machinery/light/small/directional/south, +/obj/item/book/bible, +/obj/item/book/bible, +/obj/item/book/bible, +/turf/open/floor/carpet/stellar, +/area/station/service/chapel/office) +"oHJ" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/bot, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/aisat/atmos) +"oHO" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/dark_red/anticorner/contrasted{ + dir = 1 + }, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/stack/sheet/plasteel{ + amount = 20; + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/turf/open/floor/iron/dark/textured, +/area/station/science/robotics/lab) +"oHV" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/storage) +"oHW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/carpet/cyan, +/area/station/command/heads_quarters/blueshield) +"oIp" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Prison - Pool"; + dir = 2; + network = list("ss13","prison") + }, +/obj/effect/spawner/liquids_spawner, +/turf/open/floor/lowered/iron/pool, +/area/station/security/prison) +"oIv" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/window/fulltile, +/turf/open/floor/grass, +/area/station/hallway/primary/central) +"oIw" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "bankshutter"; + name = "Bank Shutter" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/noticeboard/directional/south, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/greater) +"oIE" = ( +/obj/structure/window/reinforced/spawner/directional/east{ + layer = 2.9 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"oIJ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 4 + }, +/area/station/hallway/secondary/command) +"oJr" = ( +/obj/structure/table/reinforced/rglass, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/item/aicard, +/obj/item/assembly/timer, +/obj/item/assembly/signaler, +/obj/effect/turf_decal/tile/purple/anticorner{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"oJw" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/aft) +"oJD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/large, +/area/station/hallway/primary/fore) +"oJG" = ( +/obj/effect/turf_decal/trimline/dark_red/filled/line, +/obj/machinery/camera/directional/south{ + c_tag = "Engineering - Construction Port" + }, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/secondary/construction) +"oJI" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/nova_decals/enclave/top/right{ + color = "#52B4E9" + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/command) +"oJT" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/machinery/firealarm/directional/east, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/power_room) +"oKn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/mess) +"oKJ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/large, +/area/station/commons/vacant_room/commissary) +"oKR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/science/ordnance_maint) +"oKY" = ( +/obj/structure/showcase/cyborg/old{ + dir = 4; + pixel_x = -9; + pixel_y = 2 + }, +/obj/item/radio/intercom/directional/west{ + freerange = 1; + frequency = 1447; + name = "Private Channel" + }, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/aisat_interior) +"oLh" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/textured_edge, +/area/station/hallway/primary/aft) +"oLn" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/vault, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Vault Storage" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/command/nuke_storage) +"oLo" = ( +/turf/closed/wall/r_wall, +/area/station/security/checkpoint/supply) +"oLp" = ( +/obj/structure/table, +/obj/item/storage/medkit/o2{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/medkit/o2, +/obj/item/storage/medkit/regular{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/window/reinforced/spawner/directional/east{ + layer = 2.9 + }, +/obj/machinery/status_display/evac/directional/west, +/obj/machinery/digital_clock/directional/north{ + pixel_y = 37 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/storage) +"oLK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/science/ordnance_maint) +"oLN" = ( +/obj/structure/bed/roller{ + dir = 4 + }, +/obj/machinery/iv_drip, +/obj/item/bedsheet/medical, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/box/blue, +/turf/open/floor/iron/white/herringbone, +/area/station/medical/virology) +"oLS" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/showroomfloor, +/area/station/medical/coldroom) +"oLT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/computer/pod/old/mass_driver_controller/trash{ + pixel_x = 24 + }, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/disposal) +"oMd" = ( +/obj/structure/frame/machine, +/turf/open/floor/iron/textured_large, +/area/station/hallway/secondary/construction) +"oMm" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/maintenance/disposal/incinerator) +"oMn" = ( +/obj/structure/table/wood, +/obj/item/storage/dice{ + pixel_x = 15 + }, +/obj/effect/spawner/random/bureaucracy/briefcase{ + pixel_x = -1; + spawn_loot_count = 2; + spawn_random_offset = 1 + }, +/obj/item/laser_pointer{ + pixel_x = 20 + }, +/obj/machinery/requests_console/auto_name/directional/north, +/obj/structure/window/spawner/directional/west, +/obj/machinery/cassette/adv_cassette_deck{ + pixel_y = 8 + }, +/turf/open/floor/carpet, +/area/station/service/library) +"oMs" = ( +/turf/closed/wall/r_wall, +/area/station/science/xenobiology) +"oMu" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/structure/sign/poster/official/build/directional/west, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"oMA" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/science/xenobiology) +"oMC" = ( +/turf/closed/wall, +/area/station/science/genetics) +"oML" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/grimy, +/area/station/commons/dorms) +"oMY" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/structure/sign/departments/medbay/alt/directional/south, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/hallway/primary/central) +"oNj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/item/stack/sheet/cardboard, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/crew_quarters/bar) +"oNu" = ( +/obj/machinery/light/warm/directional/east, +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/exit/departure_lounge) +"oNA" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/computer/security/mining, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 5 + }, +/turf/open/floor/iron/textured_corner{ + dir = 8 + }, +/area/station/cargo/miningdock) +"oNB" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/department/engine/atmos) +"oNL" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Medical Satellite Maintenance" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical/central) +"oNP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/security/prison/work) +"oNR" = ( +/obj/machinery/door/airlock{ + id_tag = "UnitB"; + name = "Unit B" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet) +"oNW" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/aft) +"oOb" = ( +/turf/closed/wall/mineral/plastitanium, +/area/station/maintenance/starboard/fore) +"oOg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/turf/open/floor/iron/diagonal, +/area/station/hallway/secondary/exit/departure_lounge) +"oOj" = ( +/obj/structure/sign/poster/official/do_not_question/directional/north, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 9 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/security/interrogation) +"oOo" = ( +/obj/machinery/conveyor{ + dir = 9; + id = "garbage" + }, +/obj/structure/window/spawner/directional/south, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/disposal) +"oOr" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/half{ + dir = 8 + }, +/area/station/hallway/primary/central) +"oOu" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/south, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/fore) +"oOG" = ( +/obj/structure/sign/warning/electric_shock/directional/north, +/obj/effect/turf_decal/bot, +/obj/machinery/power/smes/full, +/obj/structure/cable, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/station/tcommsat/server) +"oOK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/effect/spawner/random/maintenance/two, +/obj/item/storage/fancy/candle_box, +/turf/open/floor/wood, +/area/station/maintenance/port/aft) +"oON" = ( +/mob/living/basic/bear/wojtek, +/turf/open/floor/iron/textured_large, +/area/station/hallway/secondary/construction) +"oOX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/security/prison/work) +"oPm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Aft Central Primary Hallway" + }, +/turf/open/floor/iron/grimy, +/area/station/service/library) +"oPr" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/warm/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"oPM" = ( +/obj/machinery/vending/wardrobe/det_wardrobe, +/turf/open/floor/carpet, +/area/station/security/detectives_office) +"oPO" = ( +/obj/machinery/door/airlock/external{ + name = "External Solar Access" + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/solars/starboard/aft) +"oPQ" = ( +/obj/structure/tank_dispenser/oxygen, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/red/diagonal_centre, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/office) +"oPU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"oQh" = ( +/obj/machinery/door/airlock/engineering{ + name = "Port Bow Solar Access" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/solars/port/fore) +"oQl" = ( +/obj/machinery/status_display/ai, +/turf/closed/wall, +/area/station/cargo/lobby) +"oQo" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical/central) +"oQw" = ( +/obj/structure/chair/office/light, +/turf/open/floor/carpet/blue, +/area/station/command/heads_quarters/cmo) +"oQF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4; + name = "Quartermaster's Junction" + }, +/obj/effect/mapping_helpers/mail_sorting/supply/qm_office, +/turf/open/floor/iron/textured_large, +/area/station/cargo/storage) +"oQK" = ( +/obj/machinery/conveyor{ + dir = 9; + id = "cargounload" + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/storage) +"oRj" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/security/courtroom) +"oRx" = ( +/obj/effect/turf_decal/siding/green/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark/textured, +/area/station/service/hydroponics/garden) +"oRA" = ( +/obj/structure/rack, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/directions/engineering/directional/south{ + pixel_y = -40 + }, +/obj/structure/sign/directions/lavaland/directional/south{ + dir = 4 + }, +/obj/structure/sign/directions/supply/directional/south{ + dir = 4; + pixel_y = -24 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/box/white{ + color = "#EFB341" + }, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/aft) +"oRJ" = ( +/obj/structure/table, +/obj/item/food/grown/poppy/geranium, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/window/right/directional/east{ + name = "Hydroponics Desk"; + req_access = list("hydroponics") + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "hydroponics_counter"; + name = "Hydroponics Counter Shutters" + }, +/obj/machinery/reagentgrinder{ + pixel_y = 18; + pixel_x = 3 + }, +/turf/open/floor/iron, +/area/station/service/hydroponics) +"oRP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/structure/cable, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"oRY" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/station/science/xenobiology) +"oSa" = ( +/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/effect/landmark/event_spawn, +/obj/effect/landmark/blobstart, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/textured, +/area/station/science/research/abandoned) +"oSm" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sink/directional/west, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/structure/cable, +/turf/open/floor/iron/diagonal, +/area/station/hallway/secondary/service) +"oSr" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"oSw" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/mirror/directional/east, +/obj/structure/sink/directional/west, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 6 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"oSy" = ( +/obj/structure/table/wood, +/obj/machinery/status_display/evac/directional/east, +/obj/machinery/light/warm/directional/east, +/obj/item/flashlight/lamp{ + pixel_y = 4 + }, +/turf/open/floor/iron/grimy, +/area/station/hallway/primary/central/fore) +"oSD" = ( +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/lesser) +"oSK" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hop) +"oSL" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/table/reinforced/rglass, +/obj/machinery/vending/wallmed/directional/south, +/obj/item/storage/medkit/regular, +/obj/effect/turf_decal/tile/blue/anticorner, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"oSS" = ( +/obj/machinery/light_switch/directional/south, +/obj/structure/closet/emcloset, +/turf/open/floor/pod/dark, +/area/station/service/chapel/office) +"oTa" = ( +/obj/effect/spawner/random/trash/grille_or_waste, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine) +"oTb" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/main) +"oTc" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 9 + }, +/turf/open/floor/iron/dark/textured, +/area/station/bitrunning/den) +"oTe" = ( +/obj/structure/tank_holder, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/light_switch/directional/north, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/turf/open/floor/iron/dark/diagonal, +/area/station/engineering/transit_tube) +"oTf" = ( +/obj/structure/chair/comfy/brown{ + buildstackamount = 0; + color = "#B11111"; + dir = 4 + }, +/turf/open/floor/carpet/blue, +/area/station/command/bridge) +"oTp" = ( +/obj/structure/chair/sofa/bench{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"oTr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"oTu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/royalblack, +/area/station/command/heads_quarters/hos) +"oTz" = ( +/obj/effect/turf_decal/siding/dark_blue{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"oTE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/head_of_security, +/turf/open/floor/carpet/royalblack, +/area/station/command/heads_quarters/hos) +"oTF" = ( +/obj/item/radio/intercom, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/table/wood/fancy/purple, +/turf/open/floor/wood/large, +/area/station/security/courtroom) +"oTK" = ( +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"oTX" = ( +/obj/machinery/status_display/evac/directional/south, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/circuit/green, +/area/station/ai_monitored/command/nuke_storage) +"oUl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/red/diagonal_centre, +/turf/open/floor/iron/dark/diagonal, +/area/station/hallway/secondary/exit/departure_lounge) +"oUn" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/trimline/dark_green/filled/line{ + dir = 8 + }, +/obj/machinery/microwave{ + desc = "Cooks and boils stuff, somehow."; + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/medical/virology) +"oUo" = ( +/obj/structure/cable, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/security/brig) +"oUq" = ( +/obj/structure/cable, +/obj/effect/landmark/start/atmospheric_technician, +/obj/structure/chair/stool/directional/south, +/turf/open/floor/iron/textured_large, +/area/station/engineering/lobby) +"oUE" = ( +/obj/machinery/airalarm/directional/north, +/obj/effect/landmark/start/roboticist, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/recharge_floor, +/area/station/science/robotics/mechbay) +"oUG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/virology) +"oUR" = ( +/obj/structure/flora/bush/fullgrass, +/obj/structure/flora/bush/ferny, +/obj/structure/window/fulltile, +/turf/open/floor/grass, +/area/station/commons/lounge) +"oUV" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/obj/machinery/duct, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/machinery/firealarm/directional/east, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/iron/white/textured_large, +/area/station/science/lab) +"oVa" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/aft) +"oVe" = ( +/obj/machinery/light_switch/directional/south{ + pixel_x = -8 + }, +/obj/machinery/firealarm/directional/south{ + pixel_x = 5 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/filingcabinet/employment, +/obj/effect/turf_decal/bot, +/turf/open/floor/wood, +/area/station/service/lawoffice) +"oVk" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/obj/structure/window/reinforced/plasma/spawner/directional/west, +/obj/effect/turf_decal/tile/green/full, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Mix Outlet Pump" + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"oVp" = ( +/obj/structure/table/wood, +/obj/machinery/microwave{ + desc = "Cooks and boils stuff, somehow."; + pixel_x = -2; + pixel_y = 5 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/carpet/black, +/area/station/commons/dorms) +"oVv" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/table, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/effect/spawner/random/food_or_drink/donkpockets{ + pixel_y = 5 + }, +/turf/open/floor/iron/dark/textured, +/area/station/medical/break_room) +"oVw" = ( +/obj/structure/chair/sofa/corp/right{ + color = "#DE3A3A" + }, +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Research Division - Port"; + dir = 9; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/item/pai_card, +/turf/open/floor/wood/large, +/area/station/science/research) +"oVM" = ( +/obj/structure/railing, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 6 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"oVO" = ( +/obj/machinery/power/shuttle_engine/heater, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/obj/structure/window/reinforced/plasma/spawner/directional/west, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/aft) +"oVP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/door/airlock/public/glass{ + name = "Aft Central Primary Hallway" + }, +/turf/open/floor/iron/large, +/area/station/commons/fitness/recreation) +"oVS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/tile/purple/diagonal_centre, +/turf/open/floor/iron/white/diagonal, +/area/station/science/research) +"oVT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/steam_vent, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/aft) +"oVX" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/bookcase/random, +/turf/open/floor/wood, +/area/station/service/library/abandoned) +"oWd" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/red/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/office) +"oWn" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/ce) +"oWu" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/pen{ + pixel_y = 4 + }, +/obj/machinery/airalarm/directional/north, +/obj/machinery/computer/security/telescreen/minisat{ + dir = 4; + pixel_x = -32 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/textured, +/area/station/security/checkpoint/engineering) +"oWD" = ( +/obj/structure/flora/bush/pointy/style_random, +/obj/structure/flora/bush/sparsegrass/style_random, +/turf/open/floor/grass, +/area/station/service/chapel) +"oWG" = ( +/obj/structure/trash_pile, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/greater) +"oWM" = ( +/obj/machinery/power/shuttle_engine/heater, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/obj/structure/window/reinforced/plasma/spawner/directional/west, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine) +"oWQ" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/large, +/area/station/commons/dorms/laundry) +"oWR" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Theater Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/service/theatre, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/central) +"oWS" = ( +/obj/machinery/light/floor/has_bulb, +/turf/open/floor/engine/o2, +/area/station/engineering/atmos) +"oXc" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/spawner/random/vending/colavend, +/obj/machinery/status_display/ai/directional/west, +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured, +/area/station/medical/break_room) +"oXq" = ( +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/aisat_interior) +"oXv" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/grassy, +/obj/structure/flora/bush/flowers_br, +/obj/structure/window/reinforced/fulltile, +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "consultant"; + name = "curtain" + }, +/turf/open/floor/grass, +/area/station/command/heads_quarters/nt_rep) +"oXG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/popcorn, +/obj/effect/landmark/generic_maintenance_landmark, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"oXI" = ( +/turf/closed/wall, +/area/station/cargo/miningdock) +"oXL" = ( +/obj/item/storage/secure/safe/directional/east, +/obj/structure/dresser, +/obj/item/toy/figure/captain{ + pixel_y = 12 + }, +/obj/machinery/digital_clock/directional/north{ + pixel_y = 37 + }, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain/private) +"oXQ" = ( +/obj/machinery/door/airlock/external{ + name = "Brig Shuttle Airlock"; + space_dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/catwalk_floor, +/area/station/hallway/secondary/exit/departure_lounge) +"oXR" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/telecomms/broadcaster/preset_left, +/turf/open/floor/circuit/telecomms/server, +/area/station/tcommsat/server) +"oXT" = ( +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"oXW" = ( +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/upper) +"oYe" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/white/end{ + dir = 8 + }, +/obj/structure/closet/emcloset/wall{ + pixel_x = 32 + }, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 8 + }, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"oYj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/effect/turf_decal/siding/green/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/green/corner{ + dir = 1 + }, +/obj/machinery/light/warm/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/hydroponics/garden) +"oYr" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/ai) +"oYt" = ( +/obj/structure/tank_dispenser, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"oYv" = ( +/obj/machinery/light/floor/has_bulb, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/textured_corner{ + dir = 8 + }, +/area/station/engineering/atmos) +"oYB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft) +"oYN" = ( +/obj/item/clothing/head/cone, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine/atmos/lesser) +"oZc" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/effect/landmark/start/psychologist, +/turf/open/floor/carpet, +/area/station/medical/psychology) +"oZk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Departures" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/hallway/primary/central) +"oZl" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=1"; + location = "Disposals" + }, +/obj/structure/plasticflaps{ + name = "Disposals" + }, +/obj/machinery/conveyor{ + dir = 1; + id = "garbage" + }, +/obj/machinery/door/window/right/directional/south{ + name = "Disposal Deliveries"; + req_access = list("cargo") + }, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/upper) +"oZp" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/maintenance/disposal/incinerator) +"oZs" = ( +/obj/structure/chair/sofa/bench, +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/turf/open/floor/iron/diagonal, +/area/station/hallway/secondary/exit/departure_lounge) +"oZv" = ( +/turf/open/floor/iron/textured_large, +/area/station/science/ordnance) +"oZB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/random/structure/steam_vent, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/bar) +"oZE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 4 + }, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/lobby) +"oZF" = ( +/obj/structure/table/glass, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/exit/departure_lounge) +"oZR" = ( +/obj/structure/trash_pile, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/security/greater) +"oZW" = ( +/turf/open/floor/wood/large, +/area/station/hallway/secondary/exit/departure_lounge) +"oZY" = ( +/obj/structure/chair/sofa/left/maroon{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"pao" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/atmos) +"par" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/status_display/ai/directional/west, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/atmos/hfr_room) +"pau" = ( +/obj/effect/turf_decal/trimline/green/filled/warning, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/hallway/primary/central/aft) +"pav" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/hallway/primary/fore) +"paz" = ( +/mob/living/carbon/human/species/monkey, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/sign/poster/official/fruit_bowl/directional/west, +/turf/open/floor/grass, +/area/station/medical/virology) +"paA" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/bot, +/obj/machinery/vending/cigarette, +/obj/machinery/status_display/ai/directional/south, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/lobby) +"paM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured_large, +/area/station/science/ordnance/testlab) +"paS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible, +/obj/machinery/meter, +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ + dir = 6 + }, +/obj/machinery/bluespace_vendor/directional/south, +/turf/open/floor/iron/textured, +/area/station/science/ordnance) +"pbe" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/department/security/greater) +"pbl" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/primary/central/aft) +"pbp" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/atmos/hfr_room) +"pbG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/turf/open/floor/iron/white/diagonal, +/area/station/medical/medbay/central) +"pbH" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/security/brig) +"pbR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/greater) +"pbT" = ( +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/security/brig) +"pbW" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/camera/directional/east{ + c_tag = "Medbay - Operating Room"; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/obj/structure/curtain, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/medical/surgery) +"pcc" = ( +/obj/machinery/airalarm/directional/north, +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Security - Gear Room" + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/dark/textured_edge, +/area/station/security/lockers) +"pcf" = ( +/obj/machinery/conveyor{ + dir = 6; + id = "garbage" + }, +/obj/machinery/airalarm/directional/east{ + pixel_x = 32 + }, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/disposal) +"pci" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/engineering/atmos) +"pcl" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/machinery/requests_console/directional/north{ + department = "Medbay"; + name = "Medbay Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/item/storage/box/gloves{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/storage/box/beakers{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/storage/box/rxglasses{ + pixel_y = 1 + }, +/turf/open/floor/iron/white/textured_edge, +/area/station/medical/medbay/central) +"pcq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 5 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/corrections_officer) +"pcx" = ( +/obj/structure/sign/warning/cold_temp, +/turf/closed/wall, +/area/station/medical/coldroom) +"pcI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/carpet, +/area/station/commons/dorms) +"pcK" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/public/glass, +/turf/open/floor/iron/large, +/area/station/commons/fitness/recreation/entertainment) +"pcM" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/eva_shed/port) +"pcS" = ( +/obj/structure/table/glass, +/obj/machinery/computer/records/medical/laptop{ + dir = 4; + pixel_x = 3; + pixel_y = 2 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/machinery/camera/directional/west{ + c_tag = "Medbay - Exam Room"; + name = "medical camera"; + network = list("ss13","medical") + }, +/turf/open/floor/iron/white, +/area/station/medical/exam_room) +"pdc" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/hallway/secondary/command) +"pdg" = ( +/obj/structure/railing{ + dir = 8 + }, +/mob/living/basic/chicken{ + forced_gender = "female" + }, +/turf/open/floor/grass, +/area/station/service/hydroponics/upper) +"pdh" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"pdi" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/turf/open/floor/iron/white, +/area/station/science/lab) +"pdj" = ( +/obj/machinery/incident_display/delam, +/turf/closed/wall/r_wall, +/area/station/security/checkpoint/engineering) +"pdo" = ( +/obj/machinery/button/door/directional/south{ + id = "kitchen_counter"; + name = "Counter Shutters Control" + }, +/obj/structure/table, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/processor{ + pixel_y = 12 + }, +/obj/structure/railing, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"pdt" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/siding/green{ + dir = 10 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/commons/dorms) +"pdu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/maintenance/external/glass{ + name = "Space Bridge Access" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/department/security/brig) +"pdC" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall5"; + location = "hall4" + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"pdO" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/atmos) +"pdU" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/table/reinforced, +/obj/item/folder/white, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"pep" = ( +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/item/book/manual/hydroponics_pod_people{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/effect/turf_decal/bot, +/obj/item/pen{ + pixel_x = -6; + pixel_y = 4 + }, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/service/hydroponics) +"pev" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external/glass{ + name = "External Access"; + space_dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/catwalk_floor, +/area/station/hallway/primary/fore) +"pey" = ( +/obj/structure/sink/kitchen/directional/east, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/sign/poster/fluff/lizards_gas_payment/directional/west, +/obj/machinery/camera/directional/south{ + c_tag = "Arrivals - Shop"; + name = "arrivals camera" + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/wood, +/area/station/hallway/secondary/entry) +"peG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet{ + name = "Evidence Closet" + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/warden) +"peM" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/atmos/hfr_room) +"peN" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod"; + space_dir = 1 + }, +/obj/effect/landmark/navigate_destination/dockescpod2, +/turf/open/floor/catwalk_floor, +/area/station/science/research) +"peS" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/left, +/obj/effect/turf_decal/siding/green{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"pfm" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/requests_console/auto_name/directional/north, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/command/gateway) +"pfs" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Mix to Gas" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"pfD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured, +/area/station/command/cc_dock) +"pfE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + id_tag = "outerbrig"; + name = "Brig" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/entrance, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "brig-entrance-aft" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/landmark/navigate_destination/sec, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/brig) +"pfJ" = ( +/obj/structure/rack, +/obj/item/book/manual/wiki/engineering_hacking{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/book/manual/wiki/engineering_guide, +/obj/item/book/manual/wiki/engineering_construction{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/edge, +/area/station/commons/storage/primary) +"pfL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/tile/neutral/diagonal_centre, +/turf/open/floor/iron/diagonal, +/area/station/commons/dorms) +"pgc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge, +/area/station/hallway/primary/aft) +"pge" = ( +/obj/structure/table/wood, +/obj/item/folder/blue{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stamp/head/hop{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stack/package_wrap{ + pixel_y = -10 + }, +/obj/item/hand_labeler{ + pixel_y = -10 + }, +/obj/item/stamp/denied{ + pixel_x = -7; + pixel_y = 9 + }, +/obj/item/stamp{ + pixel_x = -7; + pixel_y = 1 + }, +/turf/open/floor/carpet/executive, +/area/station/command/heads_quarters/hop) +"pgq" = ( +/obj/machinery/door/airlock/maintenance{ + name = "CMO Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/cmo, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical/morgue) +"pgA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/exit/departure_lounge) +"pgB" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red/diagonal_centre, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/office) +"pgF" = ( +/obj/structure/flora/bush/grassy, +/obj/structure/flora/bush/flowers_yw, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "hopqueue"; + name = "HoP Queue Shutters" + }, +/turf/open/floor/grass, +/area/station/hallway/secondary/command) +"pgH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/ce{ + name = "Chief Engineer's Quarters" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/ce, +/obj/effect/turf_decal/siding/wood/end, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/ce) +"pgM" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/effect/turf_decal/stripes/red/box, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/science/xenobiology) +"pgP" = ( +/obj/machinery/airalarm/directional/north, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/medical/break_room) +"pgZ" = ( +/obj/machinery/computer/security/telescreen/entertainment/directional/west, +/obj/structure/bed/double, +/obj/item/bedsheet/rd/double, +/turf/open/floor/carpet/purple, +/area/station/command/heads_quarters/rd) +"pha" = ( +/turf/closed/wall/r_wall, +/area/station/command/heads_quarters/ce) +"phj" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/directions/lavaland/directional/north{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge, +/area/station/hallway/primary/aft) +"phu" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 2; + name = "Medbay Junction" + }, +/obj/effect/mapping_helpers/mail_sorting/medbay/general, +/turf/open/floor/iron/white/textured_corner, +/area/station/medical/medbay/central) +"phv" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/machinery/duct, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/south, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/white/textured_large, +/area/station/science/research) +"phD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/department/medical) +"phK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/random/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"pic" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/grassy, +/obj/structure/flora/bush/flowers_br, +/obj/machinery/door/poddoor/preopen{ + id = "hoslockdown"; + name = "Head of Security Blast Door" + }, +/obj/structure/window/reinforced/fulltile, +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "hoscurtain"; + name = "curtain" + }, +/obj/structure/cable, +/turf/open/floor/grass, +/area/station/command/heads_quarters/hos) +"pie" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/airlock/atmos/glass, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"pih" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp{ + pixel_x = -9; + pixel_y = 11 + }, +/obj/item/folder{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/item/reagent_containers/cup/glass/coffee{ + pixel_x = -4; + pixel_y = 2 + }, +/turf/open/floor/wood/large, +/area/station/service/library) +"pin" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"pir" = ( +/obj/structure/sign/warning/secure_area, +/turf/closed/wall/r_wall, +/area/station/maintenance/department/engine/atmos) +"pit" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/greater) +"piC" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Atmospherics Station" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/fore) +"piG" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/plasteel/twenty, +/obj/item/stack/rods/fifty, +/obj/item/storage/box/lights/mixed, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/construction/mining/aux_base) +"piR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical/central) +"piV" = ( +/obj/effect/turf_decal/tile/dark_red/half/contrasted, +/obj/effect/turf_decal/loading_area, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/science/robotics/lab) +"pjd" = ( +/obj/structure/table/wood/fancy/black, +/obj/item/reagent_containers/cup/glass/bottle/tequila{ + pixel_x = -9; + pixel_y = 9 + }, +/obj/item/reagent_containers/cup/glass/bottle/grappa{ + pixel_x = 7; + pixel_y = 12 + }, +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/item/reagent_containers/cup/glass/bottle/trappist{ + pixel_y = 2 + }, +/turf/open/floor/iron, +/area/station/service/bar) +"pjh" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/carpet/purple, +/area/station/command/heads_quarters/rd) +"pjp" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/gym{ + pixel_y = 32 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation/entertainment) +"pjz" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 8 + }, +/area/station/hallway/secondary/command) +"pjE" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/item/radio/intercom/directional/north, +/obj/machinery/computer/slot_machine, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/break_room) +"pjF" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/textured_large, +/area/station/hallway/primary/aft) +"pjG" = ( +/turf/open/floor/engine, +/area/station/security/execution/education) +"pjL" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/medical/medbay/lobby) +"pjT" = ( +/turf/closed/wall, +/area/station/cargo/drone_bay) +"pkp" = ( +/turf/open/floor/plating, +/area/space/nearstation) +"pkH" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured_large, +/area/station/engineering/main) +"pkN" = ( +/obj/structure/sign/warning/xeno_mining/directional/north, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/tile/purple/diagonal_centre, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/white/diagonal, +/area/station/science/research) +"pkR" = ( +/turf/closed/wall, +/area/station/maintenance/port) +"pkS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/carpet/blue, +/area/station/command/bridge) +"plm" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/sign/poster/official/report_crimes/directional/east, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"plo" = ( +/obj/structure/table/glass, +/obj/item/paper_bin/carbon{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/pen{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/medical/exam_room) +"plF" = ( +/obj/machinery/photocopier, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/item/clipboard, +/obj/item/book/manual/wiki/security_space_law, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/wood, +/area/station/service/lawoffice) +"plM" = ( +/obj/machinery/door/airlock{ + id_tag = "Cabin1"; + name = "Cabin 1" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/large, +/area/station/commons/dorms) +"plZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/monitored/air_output{ + dir = 4 + }, +/turf/open/floor/engine/air, +/area/station/engineering/atmos) +"pmg" = ( +/obj/structure/table, +/obj/item/storage/bag/plants/portaseeder, +/obj/item/hatchet, +/obj/item/cultivator, +/obj/item/shovel/spade, +/obj/machinery/newscaster/directional/east, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/service/hydroponics/garden) +"pmk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/science/xenobiology) +"pmu" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/medical/cmo, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/cmo/glass{ + name = "Chief Medical Officer's Office" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/command/heads_quarters/cmo) +"pmA" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/structure/closet/secure_closet/warden, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_edge, +/area/station/security/warden) +"pmL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/iron/grimy, +/area/station/service/library) +"pmU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/textured_large, +/area/station/command/cc_dock) +"pmV" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 9 + }, +/obj/machinery/light/floor/has_bulb, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"pmZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/command/teleporter) +"pnb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/ai_upload) +"png" = ( +/obj/machinery/computer/holodeck{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/commons/fitness/recreation) +"pnr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/white/textured_edge, +/area/station/science/explab) +"pnB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/disposal/incinerator) +"pnD" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall10"; + location = "hall9" + }, +/turf/open/floor/iron/half, +/area/station/hallway/primary/central) +"pnL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/window/right/directional/south{ + name = "Shuttle Deliveries"; + req_access = list("cargo") + }, +/obj/structure/window/reinforced/spawner/directional/east{ + layer = 2.9; + pixel_x = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/tile/brown/half, +/obj/effect/turf_decal/trimline/neutral/line, +/obj/effect/turf_decal/trimline/neutral/line, +/obj/effect/turf_decal/trimline/neutral/line, +/obj/effect/turf_decal/trimline/neutral/line, +/obj/effect/turf_decal/trimline/neutral/line, +/obj/effect/turf_decal/trimline/neutral/mid_joiner, +/obj/effect/turf_decal/trimline/neutral/mid_joiner, +/obj/effect/turf_decal/trimline/neutral/mid_joiner, +/obj/effect/turf_decal/trimline/neutral/mid_joiner, +/obj/effect/turf_decal/trimline/neutral/mid_joiner, +/turf/open/floor/iron/textured_large, +/area/station/cargo/sorting) +"pnN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Emergency EVA Storage" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/eva, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/large, +/area/station/hallway/secondary/exit/departure_lounge) +"pnP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos/storage/gas) +"pnU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"pnV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/command) +"poe" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera/directional/east{ + c_tag = "Aft Central Primary Hallway - Fore"; + name = "hallway camera" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/primary/central/aft) +"por" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 9 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"pow" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"poE" = ( +/obj/machinery/door/window/left/directional/west, +/turf/open/floor/carpet/purple, +/area/station/common/night_club) +"poP" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/spawner/random/engineering/tracking_beacon, +/turf/open/floor/carpet, +/area/station/security/courtroom) +"poV" = ( +/obj/structure/flora/bush/flowers_yw/style_random, +/obj/structure/flora/bush/sparsegrass/style_random, +/turf/open/floor/grass, +/area/station/service/chapel) +"poX" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/sign/poster/random/directional/west, +/turf/open/floor/wood/tile, +/area/station/service/bar) +"poZ" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning, +/obj/machinery/duct, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/science/research) +"ppb" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 10 + }, +/obj/structure/closet/firecloset/wall{ + pixel_x = -32 + }, +/obj/effect/turf_decal/trimline/white/end{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"ppf" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/firealarm/directional/west{ + pixel_x = -19 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/hallway/secondary/command) +"ppj" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/power_room) +"ppk" = ( +/obj/structure/barricade/wooden/crude, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance/external/glass, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/kitchen/abandoned) +"ppC" = ( +/obj/machinery/conveyor/inverted{ + dir = 10; + id = "mining" + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/miningdock) +"ppT" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_edge, +/area/station/science/research) +"pqc" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + dir = 4; + location = "QM #3" + }, +/turf/open/floor/iron/textured_edge, +/area/station/cargo/storage) +"pqh" = ( +/turf/closed/wall, +/area/station/cargo/warehouse) +"pql" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/pod/dark, +/area/station/service/chapel/funeral) +"pqo" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/light/small/directional/south, +/obj/machinery/camera/directional/south{ + c_tag = "Monastery Dock"; + network = list("ss13","monastery") + }, +/obj/machinery/power/smes/full, +/obj/structure/cable, +/turf/open/floor/pod/light, +/area/station/service/chapel) +"pqu" = ( +/obj/structure/window/reinforced/spawner/directional/north{ + pixel_y = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/caution/stand_clear/red{ + dir = 4 + }, +/obj/machinery/door/window/left/directional/west{ + name = "Range" + }, +/turf/open/floor/engine, +/area/station/science/auxlab/firing_range) +"pqA" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/lesser) +"pqH" = ( +/obj/machinery/atmospherics/components/tank/air{ + dir = 1 + }, +/turf/open/floor/pod, +/area/station/service/chapel/funeral) +"pqO" = ( +/turf/open/floor/grass, +/area/station/service/hydroponics/garden/abandoned) +"prp" = ( +/obj/machinery/status_display/ai, +/turf/closed/wall/r_wall, +/area/station/ai_monitored/turret_protected/aisat_interior) +"prr" = ( +/turf/open/floor/grass, +/area/station/service/chapel) +"prG" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/textured_large, +/area/station/hallway/secondary/entry) +"prO" = ( +/obj/machinery/light/warm/directional/south, +/obj/structure/noticeboard/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/machinery/suit_storage_unit/captain, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/captain/private) +"psi" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/storage_shared) +"psn" = ( +/obj/structure/window/spawner/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) +"psu" = ( +/turf/closed/wall/r_wall, +/area/station/service/lawoffice) +"psv" = ( +/obj/machinery/vending/wardrobe/law_wardrobe, +/obj/item/toy/figure/lawyer{ + pixel_y = 18 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/digital_clock/directional/north{ + pixel_y = 37 + }, +/turf/open/floor/wood, +/area/station/service/lawoffice) +"psA" = ( +/obj/structure/filingcabinet, +/turf/open/floor/pod/dark, +/area/station/service/chapel/office) +"psH" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/large, +/area/station/commons/fitness/recreation) +"psS" = ( +/obj/machinery/computer/cryopod/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/iron/white/textured_large, +/area/station/common/cryopods) +"psZ" = ( +/obj/machinery/door/airlock/medical/glass{ + id_tag = "MedbayFoyer"; + name = "Medbay" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/obj/effect/mapping_helpers/airlock/access/any/medical/morgue, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) +"pte" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured_large, +/area/station/engineering/storage_shared) +"ptC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/poddoor/shutters{ + dir = 1; + id = "medicalbridge"; + name = "Medical Pod Space Bridge" + }, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/department/medical) +"ptI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/fore) +"ptN" = ( +/obj/machinery/power/solar_control{ + dir = 4; + id = "portbowsolar"; + name = "Port Bow Solar Control" + }, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/solars/port/fore) +"ptO" = ( +/obj/machinery/door/airlock/maintenance{ + name = "The Office" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/effect/mapping_helpers/airlock/unres, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/commons/vacant_room/office) +"ptT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/machinery/camera/directional/north{ + c_tag = "Aft Primary Hallway - Cargo"; + name = "hallway camera" + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge, +/area/station/hallway/primary/aft) +"ptW" = ( +/obj/structure/window/reinforced/survival_pod/spawner/directional/north, +/obj/structure/window/reinforced/survival_pod/spawner/directional/east, +/obj/effect/turf_decal/trimline/dark_red, +/turf/open/floor/iron/dark/textured_large, +/area/station/commons/fitness/recreation/entertainment) +"ptX" = ( +/obj/structure/frame/machine, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/aft) +"ptY" = ( +/obj/effect/spawner/random/trash/mess, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/wood, +/area/station/maintenance/port/aft) +"pui" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/hallway/primary/fore) +"puj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/green, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured, +/area/station/service/hydroponics/garden/abandoned) +"puo" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "cargounload" + }, +/obj/machinery/door/poddoor{ + id = 68; + name = "Supply Dock Unloading Door" + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/storage) +"puq" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/mail_sorting/engineering/general, +/obj/structure/disposalpipe/sorting/mail{ + dir = 1; + name = "HoP Junction" + }, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/lobby) +"pus" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/atmos) +"puw" = ( +/obj/structure/sign/painting/parting{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/landmark/start/captain, +/obj/machinery/camera/directional/west{ + c_tag = "Bridge - Captain's Office"; + name = "command camera" + }, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain) +"puG" = ( +/obj/machinery/power/shuttle_engine/propulsion, +/obj/structure/window/reinforced/spawner/directional/west, +/turf/open/floor/plating, +/area/space/nearstation) +"puH" = ( +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"puL" = ( +/obj/structure/table/reinforced/rglass, +/obj/machinery/door/firedoor, +/obj/item/folder/white{ + pixel_x = -4 + }, +/obj/structure/desk_bell{ + pixel_x = 6; + pixel_y = 1 + }, +/obj/machinery/door/window/left/directional/west{ + name = "Medbay Front Desk"; + req_access = list("medical") + }, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "paramed_dispatch_desk"; + name = "Desk Shutters"; + dir = 8 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/lobby) +"puQ" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/grass, +/area/station/medical/medbay/lobby) +"puR" = ( +/obj/machinery/computer/records/medical, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/machinery/status_display/evac/directional/north, +/obj/effect/turf_decal/tile/green/half{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"pvc" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 5 + }, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) +"pvl" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/commons/fitness/recreation/entertainment) +"pvA" = ( +/obj/machinery/door/window/brigdoor/right/directional/east{ + name = "Departures Cell"; + req_access = list("brig_entrance") + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/secondary/exit/departure_lounge) +"pvB" = ( +/obj/structure/table, +/obj/item/stack/conveyor/thirty, +/obj/structure/cable, +/turf/open/floor/iron/textured_large, +/area/station/cargo/miningdock) +"pvF" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/nitrous_input{ + dir = 4 + }, +/turf/open/floor/engine/n2o, +/area/station/engineering/atmos) +"pvG" = ( +/obj/machinery/photocopier, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/camera/directional/east{ + c_tag = "Medbay - Chief Medical Officer's Quarter"; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/cmo) +"pvT" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/half{ + dir = 8 + }, +/area/station/hallway/primary/central) +"pwd" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, +/turf/closed/wall/r_wall, +/area/station/maintenance/disposal/incinerator) +"pwB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/radio{ + desc = "An old handheld radio. You could use it, if you really wanted to."; + icon_state = "radio"; + name = "old radio" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/fore) +"pwH" = ( +/obj/machinery/door/airlock/command{ + name = "Captain's Emergency Escape" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/any/command/captain, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/command/heads_quarters/captain) +"pwX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/command) +"pxe" = ( +/turf/closed/wall, +/area/station/maintenance/department/medical/central) +"pxn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/crate, +/obj/effect/spawner/random/entertainment/money, +/turf/open/floor/iron/textured, +/area/station/maintenance/port) +"pxy" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/closed/wall/r_wall, +/area/station/security/checkpoint/science/research) +"pxK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/purple/filled/warning, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/science/research) +"pxN" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/command) +"pxT" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/structure/filingcabinet/chestdrawer, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/cargo/warehouse) +"pyd" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) +"pye" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/status_display/ai/directional/east, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/atmos) +"pym" = ( +/obj/effect/turf_decal/tile/red/full, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/pod/dark, +/area/station/service/chapel/office) +"pyn" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 9 + }, +/obj/structure/table, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/item/clothing/shoes/wheelys/rollerskates{ + pixel_y = 3 + }, +/obj/item/clothing/shoes/wheelys/rollerskates{ + pixel_y = 8 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) +"pyC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/public/glass, +/turf/open/floor/iron/textured_large, +/area/station/commons/storage/primary) +"pyD" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/lesser) +"pyQ" = ( +/turf/open/floor/iron/stairs/medium{ + dir = 4 + }, +/area/station/medical/medbay/central) +"pzh" = ( +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/greater) +"pzr" = ( +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"pzD" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/co2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"pzG" = ( +/obj/structure/table/wood, +/obj/item/restraints/handcuffs, +/obj/item/book/manual/wiki/detective, +/obj/machinery/light/warm/directional/north, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/iron/grimy, +/area/station/security/detectives_office) +"pzK" = ( +/obj/structure/table, +/obj/item/clipboard{ + pixel_x = 4 + }, +/obj/item/book/manual/wiki/tcomms, +/obj/item/radio, +/obj/item/radio/intercom/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/turf/open/floor/engine, +/area/station/tcommsat/computer) +"pzL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/security/prison) +"pzS" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/status_display/evac/directional/north, +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_x = -7; + pixel_y = 4 + }, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron/freezer, +/area/station/security/checkpoint/medical) +"pzY" = ( +/obj/structure/closet/boxinggloves, +/obj/effect/landmark/start/hangover/closet, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/large, +/area/station/commons/fitness/recreation/entertainment) +"pAn" = ( +/obj/machinery/camera/directional/west{ + c_tag = "Telecomms - Chamber"; + name = "telecomms camera"; + network = list("ss13","tcomms") + }, +/obj/effect/turf_decal/bot, +/obj/machinery/telecomms/server/presets/science, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/station/tcommsat/server) +"pAw" = ( +/obj/machinery/duct, +/obj/effect/mapping_helpers/airlock/access/all/science/genetics, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Genetics Lab Maintenance" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/science/genetics) +"pAD" = ( +/obj/effect/turf_decal/siding/green{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/hydroponics/garden) +"pAE" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/item/folder/white{ + pixel_y = 4 + }, +/obj/item/flashlight/pen{ + pixel_y = 4 + }, +/obj/item/clothing/neck/stethoscope{ + pixel_y = 4 + }, +/obj/machinery/firealarm/directional/east, +/obj/machinery/light/cold/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/exam_room) +"pAI" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/effect/turf_decal/trimline/blue/filled/warning, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/atmos) +"pAK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/railing{ + dir = 9; + layer = 3.1 + }, +/obj/structure/table/reinforced/rglass, +/obj/item/reagent_containers/cup/beaker/large, +/obj/item/reagent_containers/cup/beaker/large, +/obj/item/reagent_containers/dropper, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/pharmacy) +"pAZ" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 1 + }, +/obj/structure/flora/bush/jungle/a/style_3, +/obj/effect/turf_decal/siding/thinplating{ + dir = 6 + }, +/turf/open/floor/grass, +/area/station/hallway/primary/central/fore) +"pBc" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/emergency, +/obj/item/wrench, +/obj/item/crowbar, +/obj/machinery/requests_console/auto_name/directional/east, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/command/teleporter) +"pBo" = ( +/obj/machinery/corral_corner{ + mapping_id = "4" + }, +/obj/machinery/slime_pen_controller{ + mapping_id = "4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/light/neon_lining{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"pBu" = ( +/obj/structure/table, +/obj/item/storage/box/lights/tubes{ + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/crew_quarters/bar) +"pBy" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/lesser) +"pBG" = ( +/obj/machinery/status_display/evac/directional/north, +/obj/effect/turf_decal/siding/blue, +/obj/machinery/photobooth, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/command) +"pBQ" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"pBR" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering Foyer" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/navigate_destination/engineering, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/textured_large, +/area/station/engineering/lobby) +"pBZ" = ( +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/station/maintenance/department/engine/atmos) +"pCd" = ( +/obj/machinery/duct, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/medical/virology) +"pCl" = ( +/obj/machinery/light/warm/directional/east, +/obj/structure/bed/double, +/obj/item/bedsheet/ian/double, +/turf/open/floor/carpet/executive, +/area/station/command/heads_quarters/hop) +"pCm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/fore) +"pCr" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/aisat_interior) +"pCt" = ( +/obj/effect/turf_decal/trimline/green/filled/warning, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/commons/fitness/recreation) +"pCy" = ( +/obj/machinery/suit_storage_unit/security, +/obj/structure/window/spawner/directional/west{ + pixel_x = -4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/blueshield) +"pCA" = ( +/obj/structure/fans/tiny/forcefield{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters{ + dir = 8; + id = "bsa"; + name = "BSA Shutters" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/hallway/secondary/construction) +"pCB" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical/morgue) +"pCD" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured, +/area/station/security/brig) +"pCO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/gravity_generator) +"pCQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/closed/wall/r_wall, +/area/station/maintenance/department/science/xenobiology) +"pDb" = ( +/obj/effect/turf_decal/trimline/dark_red/arrow_ccw, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/poster/random/directional/south, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central) +"pDg" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8; + name = "Waste to Filter" + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/atmos/pumproom) +"pDj" = ( +/obj/machinery/light/warm/directional/north, +/obj/machinery/camera/directional/north{ + c_tag = "Service - Cafeteria Fore"; + name = "service camera" + }, +/obj/machinery/firealarm/directional/north{ + pixel_x = 8 + }, +/obj/item/radio/intercom/directional/north{ + pixel_x = -6 + }, +/obj/structure/table, +/obj/item/plate, +/obj/item/food/sausage, +/turf/open/floor/iron/cafeteria, +/area/station/service/cafeteria) +"pDk" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/suit/utility/radiation, +/obj/item/clothing/head/utility/radiation, +/obj/item/geiger_counter, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/clothing/glasses/meson, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"pDo" = ( +/obj/structure/window/spawner/directional/west, +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/machinery/status_display/ai/directional/north, +/obj/effect/turf_decal/bot, +/turf/open/floor/wood/large, +/area/station/science/research) +"pDu" = ( +/obj/structure/chair/sofa/bench/left, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/fore) +"pDv" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/teal, +/turf/open/space/basic, +/area/space) +"pDx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/bar) +"pDV" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 4; + pixel_x = -5 + }, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/hallway/primary/central/aft) +"pEi" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/medical/treatment_center) +"pEn" = ( +/turf/closed/wall, +/area/station/maintenance/aft/greater) +"pEt" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/department/engine) +"pEu" = ( +/turf/closed/wall, +/area/station/security/prison/mess) +"pEv" = ( +/obj/structure/mirror/directional/north, +/obj/structure/closet/crate/wooden/toy, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_red/opposingcorners, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/station/service/theater) +"pEL" = ( +/obj/structure/chair/stool/directional/west, +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/effect/turf_decal/tile/red/opposingcorners{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/commons/lounge) +"pEQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 5 + }, +/turf/open/floor/iron/dark/textured, +/area/station/medical/medbay/central) +"pEX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/textured_large, +/area/station/hallway/primary/aft) +"pFg" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/newscaster/directional/east, +/obj/structure/closet/secure_closet/corrections_officer, +/obj/effect/turf_decal/tile/purple/fourcorners, +/turf/open/floor/iron/dark/textured, +/area/station/security/corrections_officer) +"pFi" = ( +/obj/item/card/emagfake, +/turf/open/floor/plating/foam{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"pFr" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/obj/machinery/computer/atmos_control/nitrous_tank{ + dir = 4 + }, +/obj/structure/window/reinforced/plasma/spawner/directional/west, +/obj/effect/turf_decal/tile/dark_red/full, +/obj/effect/turf_decal/tile/neutral/full, +/obj/effect/turf_decal/tile/neutral/full, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"pFG" = ( +/obj/effect/turf_decal/bot, +/obj/structure/tank_dispenser, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos/storage/gas) +"pGh" = ( +/turf/open/floor/iron/white/textured_large, +/area/station/hallway/primary/fore) +"pGk" = ( +/obj/machinery/light/warm/directional/south, +/obj/structure/chair/comfy/teal{ + dir = 4 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/carpet/cyan, +/area/station/command/heads_quarters/blueshield) +"pGl" = ( +/obj/effect/mapping_helpers/airlock/access/all/science/general, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Research Lab Maintenance" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/science/lab) +"pGu" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"pGB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/lobby) +"pGC" = ( +/obj/machinery/disposal/delivery_chute, +/obj/structure/sign/directions/engineering{ + pixel_y = 24 + }, +/obj/structure/disposalpipe/trunk, +/obj/structure/window/spawner/directional/east{ + pixel_x = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/textured_large, +/area/station/cargo/sorting) +"pGI" = ( +/obj/effect/landmark/start/assistant, +/obj/structure/chair/sofa/right/brown, +/obj/machinery/light/warm/directional/north, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/carpet/green, +/area/station/commons/dorms) +"pGW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/iron/terracotta, +/area/station/service/kitchen/abandoned) +"pGY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/maintenance_hatch, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port) +"pHa" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/turf_decal/trimline/green/arrow_cw{ + dir = 1 + }, +/obj/machinery/firealarm/directional/north, +/obj/effect/landmark/start/hangover/closet, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/small, +/area/station/commons/dorms) +"pHo" = ( +/obj/structure/chair/sofa/corp/left, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/radio/intercom/directional/north, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/iron/dark/textured, +/area/station/medical/break_room) +"pHu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/green/filled/warning, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/commons/fitness/recreation/entertainment) +"pHz" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/textured_edge, +/area/station/hallway/primary/aft) +"pHC" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/security/checkpoint/supply) +"pHG" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/grassy, +/obj/structure/flora/bush/sunny, +/obj/structure/flora/bush/flowers_pp, +/obj/machinery/light/floor/has_bulb, +/turf/open/floor/grass, +/area/station/hallway/primary/central) +"pHV" = ( +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/corner{ + dir = 8 + }, +/area/station/commons/fitness/recreation/entertainment) +"pId" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/o_plus{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/reagent_containers/blood/o_minus, +/obj/item/reagent_containers/blood/b_plus, +/obj/item/reagent_containers/blood/b_minus, +/obj/item/reagent_containers/blood/a_plus, +/obj/item/reagent_containers/blood/a_minus, +/obj/item/reagent_containers/blood/lizard, +/obj/item/reagent_containers/blood/ethereal, +/obj/item/reagent_containers/blood{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/reagent_containers/blood{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/reagent_containers/blood{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/trimline/dark_green/filled/line{ + dir = 1 + }, +/obj/machinery/iv_drip, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white/textured_edge, +/area/station/medical/virology) +"pIi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/green/arrow_ccw, +/obj/machinery/bluespace_vendor/directional/south, +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/small, +/area/station/commons/dorms) +"pIk" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/nt_rep) +"pIm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/airlock/engineering{ + name = "Starboard Quarter Solar Access" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/solars/starboard/aft) +"pII" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"pIJ" = ( +/obj/machinery/door/morgue{ + name = "Relic Closet"; + req_access = list("chapel_office") + }, +/turf/open/floor/pod/dark, +/area/station/service/chapel/office) +"pIN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/greater) +"pIY" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/airlock/security/glass{ + id_tag = "innerbrig"; + name = "Equipment Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/lockers) +"pJg" = ( +/obj/machinery/igniter/incinerator_ordmix, +/obj/effect/turf_decal/stripes/red/line{ + dir = 8 + }, +/mob/living/basic/chicken/teshari, +/turf/open/floor/engine/vacuum, +/area/station/science/ordnance/burnchamber) +"pJo" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 10 + }, +/turf/open/floor/iron/dark/textured, +/area/station/science/server) +"pJO" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/atmos) +"pJQ" = ( +/turf/closed/wall, +/area/station/command/heads_quarters/cmo) +"pKb" = ( +/obj/machinery/camera/directional/south{ + c_tag = "Bridge - Starboard"; + name = "command camera" + }, +/obj/effect/turf_decal/siding/dark_blue{ + dir = 6 + }, +/obj/structure{ + density = 1; + icon = 'icons/obj/machines/shuttle_manipulator.dmi'; + icon_state = "hologram_on"; + layer = 2.8; + light_color = "#2cb2e8"; + light_outer_range = 2; + mouse_opacity = 0; + name = "holographic projection"; + pixel_x = -32; + pixel_y = 17 + }, +/obj/structure{ + desc = "This is the ship we're on. It's amazing what Nanotrasen can do once they actually put more than ten seconds of effort into their projects."; + icon = 'icons/obj/machines/shuttle_manipulator.dmi'; + icon_state = "hologram_whiteship"; + layer = 4; + light_color = "#2cb2e8"; + light_outer_range = 7; + name = "Ship Hologram"; + pixel_x = -32; + pixel_y = 27 + }, +/obj/machinery/incident_display/delam/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"pKd" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/vending/hydronutrients, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/hydroponics) +"pKg" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/obj/structure/closet/secure_closet/medical1, +/turf/open/floor/iron/freezer, +/area/station/medical/pharmacy) +"pKl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical/central) +"pKn" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/landmark/start/librarian, +/turf/open/floor/iron/sepia, +/area/station/service/library) +"pKo" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/machinery/airalarm/directional/south, +/obj/machinery/camera/directional/south{ + c_tag = "Security Post - Science"; + network = list("ss13","rd") + }, +/obj/structure/table, +/obj/item/folder/red{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = 5; + pixel_y = 4 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/security/checkpoint/science/research) +"pKD" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) +"pKM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/crew_quarters/bar) +"pKY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/security/armory) +"pLl" = ( +/obj/machinery/button/flasher{ + id = "hopflash"; + pixel_x = -26 + }, +/obj/machinery/pdapainter, +/obj/machinery/button/door/directional/north{ + id = "hopqueue"; + name = "Queue Shutters Control"; + pixel_x = -6; + req_access = list("hop") + }, +/obj/machinery/button/door/directional/north{ + id = "hop"; + name = "Privacy Shutters Control"; + pixel_x = 6; + req_access = list("hop") + }, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/machinery/keycard_auth/directional/west{ + pixel_y = 25 + }, +/obj/machinery/button/ticket_machine{ + pixel_x = -6; + pixel_y = 36 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/button/photobooth{ + pixel_x = 6; + pixel_y = 36 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hop) +"pLH" = ( +/obj/effect/turf_decal/box/red, +/obj/structure/sign/warning/hot_temp/directional/north, +/obj/machinery/firealarm/directional/west, +/obj/machinery/portable_atmospherics/canister, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 9 + }, +/turf/open/floor/iron/textured, +/area/station/science/ordnance) +"pLI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/engine/atmos) +"pLL" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/aft) +"pLR" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/station/maintenance/starboard/lesser) +"pMf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/grimy, +/area/station/hallway/primary/central/fore) +"pMl" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Aft Primary Hallway - Hub"; + name = "hallway camera" + }, +/turf/open/floor/iron/textured_edge, +/area/station/hallway/primary/aft) +"pMm" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/lesser) +"pMp" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/carpet/blue, +/area/station/command/bridge) +"pMq" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/bot, +/turf/open/space/basic, +/area/space/nearstation) +"pMu" = ( +/obj/structure/table_frame, +/obj/item/stack/sheet/iron, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/science/ordnance_maint) +"pMA" = ( +/obj/structure/chair/sofa/right/brown{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/station/commons/dorms) +"pMG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"pMO" = ( +/obj/machinery/newscaster/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/textured, +/area/station/command/cc_dock) +"pMT" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Command Hallway Maintenance" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/fore) +"pNc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"pNh" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/warehouse) +"pNq" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/medical/medbay/lobby) +"pNs" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/sink/directional/south, +/obj/effect/turf_decal/siding/green, +/obj/machinery/firealarm/directional/north{ + pixel_x = -6 + }, +/turf/open/floor/iron/edge, +/area/station/service/hydroponics) +"pNw" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/cup/beaker{ + pixel_y = 4 + }, +/obj/item/reagent_containers/syringe{ + pixel_y = 4 + }, +/obj/item/reagent_containers/dropper{ + pixel_y = 4 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/iron/white/herringbone, +/area/station/medical/virology) +"pNx" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/science/explab) +"pNy" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/lesser) +"pND" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/grimy, +/area/station/service/library) +"pNL" = ( +/obj/structure/chair/plastic{ + dir = 1 + }, +/turf/open/floor/glass/reinforced, +/area/station/maintenance/port/fore) +"pNQ" = ( +/obj/structure/chair/sofa/bench/right, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/fore) +"pNU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured_large, +/area/station/science/ordnance/testlab) +"pNZ" = ( +/obj/effect/turf_decal/trimline/green/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 6 + }, +/turf/open/floor/iron, +/area/station/service/hydroponics) +"pOh" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/iron/textured, +/area/station/science/robotics/mechbay) +"pOs" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/button/crematorium{ + id = "crematoriumSecurity"; + pixel_y = 25 + }, +/obj/effect/turf_decal/trimline/dark/filled/warning{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/office) +"pOz" = ( +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"pON" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/hallway/primary/aft) +"pOT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/textured_large, +/area/station/cargo/storage) +"pOV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Delivery Office" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/supply/general, +/turf/open/floor/iron/textured_large, +/area/station/cargo/sorting) +"pOW" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 3 + }, +/obj/item/crowbar{ + pixel_y = 4 + }, +/obj/item/flashlight{ + pixel_y = 4 + }, +/obj/item/flashlight{ + pixel_y = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos/storage) +"pPh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/crate, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine/atmos/lesser) +"pPp" = ( +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical/morgue) +"pPy" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/closet/emcloset/wall{ + pixel_y = -32 + }, +/obj/effect/turf_decal/trimline/white/end{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/aft) +"pPE" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/obj/machinery/camera/directional/east{ + c_tag = "Atmospherics - Ports"; + name = "atmospherics camera" + }, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/atmos) +"pPN" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/effect/turf_decal/tile/green/anticorner{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"pQm" = ( +/turf/closed/wall, +/area/station/security/execution/transfer) +"pQn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"pQK" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/machinery/door/airlock/external, +/turf/open/floor/catwalk_floor, +/area/station/engineering/main) +"pQL" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/security/interrogation) +"pQS" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/warden) +"pQY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/dark_green/filled/line{ + dir = 8 + }, +/obj/machinery/airalarm/directional/west, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/medical/virology) +"pRr" = ( +/mob/living/basic/spider/giant/hunter/scrawny, +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/status_display/ai/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/electrical) +"pRv" = ( +/obj/effect/spawner/random/trash/moisture_trap, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/greater) +"pRD" = ( +/obj/machinery/modular_computer/preset/id{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hop) +"pRI" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/engineering/atmos/pumproom) +"pRL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/pod/dark, +/area/station/service/chapel/office) +"pRV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple/diagonal_centre, +/turf/open/floor/iron/white/diagonal, +/area/station/science/research) +"pRX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 6 + }, +/turf/open/floor/iron/textured, +/area/station/science/ordnance/office) +"pSj" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/atmos) +"pSm" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Prison - Fore"; + network = list("ss13","prison") + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/dark/textured_edge, +/area/station/security/prison) +"pSu" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/security/prison) +"pSw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/circuit/green, +/area/station/ai_monitored/command/nuke_storage) +"pSA" = ( +/obj/structure/closet/radiation, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/obj/structure/sign/warning/radiation/directional/north, +/obj/machinery/camera/directional/north{ + c_tag = "Engineering - Gravity Generator"; + name = "engineering camera" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/engineering/gravity_generator) +"pSC" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/turf/open/floor/iron/textured_large, +/area/station/science/ordnance) +"pSJ" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/science/research/abandoned) +"pSK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/spawner/random/structure/steam_vent, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"pSX" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/navigate_destination/library, +/obj/machinery/door/airlock/public/glass{ + name = "Aft Central Primary Hallway" + }, +/turf/open/floor/iron/grimy, +/area/station/service/library) +"pTa" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 4 + }, +/obj/structure/flora/grass/jungle/b, +/obj/effect/turf_decal/siding/thinplating{ + dir = 8 + }, +/turf/open/floor/grass, +/area/station/hallway/primary/central/fore) +"pTi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/secondary/entry) +"pTx" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/fyellow{ + pixel_y = 6 + }, +/obj/item/storage/toolbox/electrical, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/fore) +"pTB" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/break_room) +"pTK" = ( +/obj/item/mmi, +/obj/item/assembly/prox_sensor, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/turf/open/floor/iron/textured, +/area/station/science/research/abandoned) +"pUe" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/pod/dark, +/area/station/engineering/storage/tech) +"pUg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/textured_corner{ + dir = 1 + }, +/area/station/cargo/sorting) +"pUl" = ( +/obj/machinery/computer/slot_machine, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/wood/large, +/area/station/commons/fitness/recreation) +"pUu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/station/maintenance/aft/upper) +"pUJ" = ( +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/lobby) +"pUM" = ( +/turf/closed/wall, +/area/station/bitrunning/den) +"pVi" = ( +/obj/structure/chair/stool/directional/east, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/commons/fitness/recreation/entertainment) +"pVr" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/iron/stairs/right{ + dir = 1 + }, +/area/station/engineering/atmos) +"pVu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/crew_quarters/bar) +"pVy" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L3" + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4; + name = "Lawyers Junction" + }, +/obj/effect/mapping_helpers/mail_sorting/service/law_office, +/turf/open/floor/iron/large, +/area/station/hallway/primary/fore) +"pVE" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"pVK" = ( +/mob/living/simple_animal/bot/secbot/beepsky/armsky, +/obj/effect/landmark/event_spawn, +/obj/machinery/holopad/secure, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/security/armory) +"pVQ" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/commons/fitness/recreation/entertainment) +"pVU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/large, +/area/station/commons/fitness/recreation/entertainment) +"pVZ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/item/clipboard, +/obj/structure/table/reinforced/rglass, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/rd) +"pWe" = ( +/obj/structure/sign/poster/random/directional/north, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/large, +/area/station/hallway/secondary/service) +"pWf" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/pen{ + pixel_y = 4 + }, +/obj/machinery/status_display/evac/directional/north, +/obj/structure/railing, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/ai) +"pWi" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/fore) +"pWl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/stack/sheet/cardboard, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/security/greater) +"pWq" = ( +/turf/closed/wall, +/area/station/security/courtroom) +"pWs" = ( +/obj/structure/trash_pile, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/lesser) +"pWt" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/sign/nanotrasen{ + pixel_x = -32 + }, +/turf/open/floor/iron/white, +/area/station/science/research) +"pWC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/security/brig) +"pWG" = ( +/obj/structure/table/reinforced/rglass, +/obj/machinery/button/door{ + id = "bridgespace"; + name = "Bridge Space Lockdown"; + pixel_x = -5; + pixel_y = 6; + req_access = list("command") + }, +/obj/machinery/button/door{ + id = "bridgedoors"; + name = "Bridge Access Lockdown"; + pixel_x = -5; + pixel_y = -6; + req_access = list("command") + }, +/obj/item/lighter{ + pixel_x = 7 + }, +/turf/open/floor/carpet/blue, +/area/station/command/bridge) +"pWO" = ( +/obj/structure/chair/wood, +/turf/open/floor/iron/chapel{ + dir = 10 + }, +/area/station/service/chapel) +"pWQ" = ( +/obj/item/radio/intercom/directional/north, +/obj/machinery/camera/directional/north{ + c_tag = "Atmospherics - Starboard"; + name = "atmospherics camera"; + network = list("ss13","engine") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/obj/effect/turf_decal/bot, +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"pWZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/commons/fitness/recreation) +"pXc" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/science/lab) +"pXg" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_green/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/white/textured_corner{ + dir = 8 + }, +/area/station/medical/virology) +"pXj" = ( +/obj/effect/turf_decal/tile/red/anticorner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/pod/dark, +/area/station/service/chapel/office) +"pXk" = ( +/obj/effect/turf_decal/siding/thinplating_new/terracotta{ + dir = 4 + }, +/obj/effect/spawner/random/trash/botanical_waste, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"pXt" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 4; + height = 7; + name = "Cargo Bay"; + shuttle_id = "cargo_home"; + width = 12 + }, +/turf/open/space/basic, +/area/space/nearstation) +"pXz" = ( +/obj/item/storage/fancy/candle_box, +/obj/structure/table/wood, +/obj/item/clothing/under/misc/burial, +/obj/item/clothing/under/misc/burial, +/obj/item/clothing/under/misc/burial, +/obj/item/clothing/under/misc/burial, +/obj/machinery/computer/pod/old/mass_driver_controller/chapelgun{ + pixel_x = 24 + }, +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/pod/dark, +/area/station/service/chapel/funeral) +"pXA" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/power_room) +"pXB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/science/ordnance/office) +"pXE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port) +"pXG" = ( +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/sink/directional/south, +/obj/structure/mirror/directional/north, +/turf/open/floor/iron, +/area/station/commons/vacant_room) +"pXI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/ai) +"pXL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/arrows{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge, +/area/station/cargo/sorting) +"pXU" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/cargo/lobby) +"pXW" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/chair/sofa/left/brown{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/break_room) +"pYc" = ( +/obj/structure/girder, +/obj/structure/grille/broken, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/crew_quarters/bar) +"pYf" = ( +/obj/machinery/light/floor/has_bulb, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/turf/open/floor/iron/textured_corner, +/area/station/engineering/atmos) +"pYi" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/button/door/directional/east{ + id = "atmoshfr"; + name = "Radiation Shutters Control"; + req_access = list("engineering") + }, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/atmos/hfr_room) +"pYu" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/textured_large, +/area/station/hallway/secondary/entry) +"pYv" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/turf/open/floor/plating, +/area/station/engineering/atmos/pumproom) +"pYx" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/science/rd, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/rd{ + name = "Research Division Server Room" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/server) +"pYI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/siding/green/corner{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"pYJ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/wood, +/area/station/commons/vacant_room/office) +"pYY" = ( +/obj/machinery/libraryscanner, +/obj/machinery/light_switch/directional/east, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/carpet, +/area/station/service/library) +"pYZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/chair/comfy{ + color = "#596479"; + dir = 1 + }, +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/mess) +"pZa" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/west, +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/obj/effect/turf_decal/tile/neutral/full, +/obj/effect/turf_decal/tile/neutral/full, +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"pZe" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/primary/central/aft) +"pZf" = ( +/obj/structure/closet/secure_closet/exile, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/gateway) +"pZj" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/fore) +"pZr" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/engineering/atmos/storage) +"pZs" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"pZx" = ( +/obj/structure/closet/crate/solarpanel_small, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/solars/port/fore) +"pZy" = ( +/obj/structure/transit_tube/horizontal{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/pod/light, +/area/station/service/chapel) +"pZA" = ( +/obj/effect/turf_decal/box, +/obj/effect/landmark/start/roboticist, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/robotics/lab) +"pZC" = ( +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/textured_large, +/area/station/security/checkpoint/customs) +"pZE" = ( +/obj/item/kirbyplants/random, +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/tile/dark_green/diagonal_centre, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/iron/white/diagonal, +/area/station/medical/medbay/central) +"pZF" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/commons/fitness/recreation) +"pZH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/aft) +"pZI" = ( +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + dir = 5; + name = "blue line" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/prison) +"pZJ" = ( +/obj/structure/window/reinforced/spawner/directional/west{ + layer = 2.9 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/wood/large, +/area/station/security/courtroom) +"pZN" = ( +/turf/closed/wall, +/area/station/service/bar) +"pZQ" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"pZV" = ( +/obj/machinery/disposal/delivery_chute, +/obj/structure/window/spawner/directional/west, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/north, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/textured_large, +/area/station/cargo/storage) +"pZZ" = ( +/obj/machinery/light/small/directional/east, +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"qai" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/textured_corner{ + dir = 8 + }, +/area/station/engineering/atmos/hfr_room) +"qap" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/table, +/obj/item/restraints/handcuffs, +/obj/item/assembly/flash/handheld, +/obj/effect/turf_decal/siding/wood/end{ + dir = 4 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron/textured_large, +/area/station/security/brig) +"qat" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/supermatter/room) +"qaD" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/effect/turf_decal/trimline/green/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/mid_joiner{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/service/hydroponics) +"qaH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/large, +/area/station/hallway/primary/fore) +"qaJ" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"qaN" = ( +/obj/effect/landmark/generic_maintenance_landmark, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/greater) +"qaO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/aft/lesser) +"qaX" = ( +/obj/effect/decal/cleanable/insectguts, +/turf/open/floor/circuit, +/area/station/science/research/abandoned) +"qbb" = ( +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/head/utility/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/utility/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/utility/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/utility/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/utility/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/structure/closet/crate/internals, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 9 + }, +/obj/machinery/light_switch/directional/north, +/obj/machinery/light/directional/north, +/turf/open/floor/iron, +/area/station/commons/storage/primary) +"qbc" = ( +/obj/structure/toilet/greyscale{ + dir = 8 + }, +/obj/machinery/light/small/directional/east, +/obj/machinery/newscaster/directional/north, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 5 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"qbl" = ( +/obj/effect/turf_decal/siding/thinplating, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Aft Central Primary Hallway" + }, +/turf/open/floor/iron/large, +/area/station/commons/dorms) +"qbp" = ( +/turf/closed/wall, +/area/station/maintenance/department/engine) +"qbr" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/structure/reagent_dispensers/plumbed{ + dir = 1; + name = "engineering water reservoir" + }, +/obj/effect/turf_decal/delivery/blue, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine/atmos) +"qbt" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/effect/turf_decal/trimline/blue/filled/warning, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/atmos) +"qbu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/hallway/secondary/command) +"qbI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple/diagonal_centre, +/turf/open/floor/iron/white/diagonal, +/area/station/science/xenobiology) +"qbR" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"qbS" = ( +/turf/open/floor/iron/textured, +/area/station/maintenance/port) +"qbX" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/medical/virology) +"qca" = ( +/obj/machinery/cryopod{ + dir = 1 + }, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/machinery/airalarm/directional/east, +/obj/machinery/camera/directional/east{ + c_tag = "Dormitories - Cryogenic Storage" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/common/cryopods) +"qcf" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Departures Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/greater) +"qcj" = ( +/obj/item/stack/sheet/plasteel/twenty{ + pixel_x = -4 + }, +/obj/item/stack/sheet/rglass{ + amount = 30; + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/stack/rods/fifty, +/obj/item/crowbar, +/obj/structure/table/reinforced, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/command/storage/eva) +"qcq" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/duct, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/atmos) +"qct" = ( +/obj/effect/spawner/random/trash/garbage, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/medical/medbay/central) +"qcB" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"qcJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/small, +/area/station/common/pool) +"qcR" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/dark_blue{ + dir = 5 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"qcS" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"qcV" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 4 + }, +/obj/machinery/status_display/shuttle{ + pixel_x = -32; + shuttle_id = "arrivals_shuttle" + }, +/obj/machinery/light/warm/directional/west, +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"qcW" = ( +/obj/structure/sign/warning/electric_shock, +/turf/closed/wall/r_wall, +/area/station/engineering/supermatter) +"qda" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/chair/sofa/bench{ + dir = 4 + }, +/obj/machinery/requests_console/auto_name/directional/west, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"qdb" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/turf/open/floor/plating, +/area/station/maintenance/disposal/incinerator) +"qdr" = ( +/obj/machinery/atmospherics/components/binary/valve/digital{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/science/ordnance) +"qdv" = ( +/obj/structure/chair/stool/directional/east, +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/grimy, +/area/station/commons/lounge) +"qdD" = ( +/obj/structure/table, +/obj/machinery/processor{ + pixel_y = 8 + }, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/turf/open/floor/iron/kitchen, +/area/station/security/prison/mess) +"qdT" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos/hfr_room) +"qeo" = ( +/obj/machinery/conveyor/inverted{ + dir = 6; + id = "garbage" + }, +/obj/machinery/door/window/left/directional/east{ + name = "Danger: Conveyor Access"; + req_access = list("maint_tunnels") + }, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/disposal) +"qex" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ + dir = 4 + }, +/turf/open/floor/iron/textured_corner{ + dir = 8 + }, +/area/station/engineering/atmos) +"qeK" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/bot, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/disposal/incinerator) +"qeQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/duct, +/obj/effect/turf_decal/tile/purple/diagonal_centre, +/turf/open/floor/iron/white/diagonal, +/area/station/science/xenobiology) +"qeS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/aft) +"qeU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/trimline/blue/filled/warning, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/ai_monitored/command/storage/eva) +"qfe" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/atmos/storage) +"qff" = ( +/obj/structure/chair/stool/directional/south{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/lobby) +"qfk" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/item/kirbyplants/random, +/obj/machinery/light/directional/south, +/obj/machinery/station_map/engineering/directional/south, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/lobby) +"qft" = ( +/obj/machinery/duct, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) +"qfv" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer2{ + dir = 6 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/hallway/primary/aft) +"qfA" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/iron/textured_large, +/area/station/cargo/storage) +"qfD" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 1 + }, +/obj/structure/flora/bush/sparsegrass{ + pixel_x = 8 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 10 + }, +/turf/open/floor/grass, +/area/station/hallway/primary/central/fore) +"qfN" = ( +/obj/machinery/airalarm/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/pod/dark, +/area/station/service/chapel/funeral) +"qfQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/navigate_destination/dockaux, +/obj/machinery/door/airlock/external/glass{ + name = "Arrival Airlock"; + space_dir = 8 + }, +/turf/open/floor/catwalk_floor, +/area/station/hallway/secondary/entry) +"qfV" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/stairs/right{ + dir = 1 + }, +/area/station/command/cc_dock) +"qgc" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"qgu" = ( +/obj/structure/window/reinforced/survival_pod/spawner/directional/north, +/obj/machinery/door/window/survival_pod/left/directional/west{ + name = "Fitness Ring" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/floor/has_bulb, +/turf/open/floor/iron/dark/textured_large, +/area/station/commons/fitness/recreation/entertainment) +"qgv" = ( +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/binary/pump/on, +/obj/structure/closet/crate/freezer/blood, +/turf/open/floor/iron/showroomfloor, +/area/station/medical/coldroom) +"qgK" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/turf_decal/bot, +/obj/machinery/iv_drip, +/turf/open/floor/iron/freezer, +/area/station/medical/treatment_center) +"qgS" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/effect/turf_decal/bot, +/obj/machinery/computer/slime_market, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/science/xenobiology) +"qgT" = ( +/obj/machinery/atm/directional/north, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"qhe" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 9 + }, +/obj/structure/sink/directional/east, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"qhl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos/hfr_room) +"qht" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/flowers_pp, +/obj/structure/window/fulltile, +/turf/open/floor/grass, +/area/station/security/prison/garden) +"qhz" = ( +/obj/structure/table/reinforced, +/obj/structure/desk_bell{ + pixel_x = 7 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/brigdoor/left/directional/east{ + name = "Head of Personnel's Desk"; + req_access = list("hop") + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hop"; + name = "Privacy Shutters" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/window/right/directional/west{ + name = "Head of Personnel's Desk" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/hop) +"qhE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/airlock/maintenance_hatch, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/poddoor/preopen{ + id = "atmoslock"; + name = "Atmospherics Lockdown Blast Door" + }, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/department/engine/atmos/lesser) +"qhJ" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_edge, +/area/station/security/prison) +"qhK" = ( +/obj/effect/turf_decal/trimline/white/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"qhM" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/machinery/modular_computer/preset/command{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/nt_rep) +"qhT" = ( +/obj/machinery/door/airlock/external{ + name = "Departure Shuttle Airlock"; + space_dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/catwalk_floor, +/area/station/hallway/secondary/exit/departure_lounge) +"qhU" = ( +/obj/machinery/quantum_server, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/bitrunning/den) +"qhX" = ( +/obj/effect/landmark/start/medical_doctor, +/obj/structure/curtain, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/surgery) +"qic" = ( +/obj/structure/cable, +/turf/closed/wall/r_wall, +/area/station/maintenance/department/science/xenobiology) +"qid" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/machinery/computer/cargo/request{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_large, +/area/station/cargo/office) +"qih" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/engine, +/area/station/security/range) +"qil" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/main) +"qin" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/supermatter/room) +"qio" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/white/side{ + dir = 4 + }, +/area/station/science/lab) +"qiz" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/hallway/secondary/command) +"qiD" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/clothing/neck/stethoscope, +/obj/item/clothing/neck/stethoscope{ + pixel_y = 4 + }, +/obj/item/book/manual/wiki/medicine, +/turf/open/floor/iron/white/textured_edge, +/area/station/medical/medbay/central) +"qiF" = ( +/obj/machinery/light/floor/has_bulb, +/turf/open/floor/engine/co2, +/area/station/engineering/atmos) +"qiU" = ( +/turf/closed/wall/r_wall, +/area/station/medical/surgery) +"qiX" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/space, +/area/station/solars/starboard/aft) +"qji" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central) +"qjr" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/power_room) +"qjv" = ( +/obj/docking_port/stationary/mining_home/common{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"qjA" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"qjG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/tank_holder/extinguisher, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine/atmos/lesser) +"qjH" = ( +/obj/machinery/power/shuttle_engine/heater, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/west{ + layer = 2.9 + }, +/turf/open/floor/plating, +/area/space/nearstation) +"qkb" = ( +/obj/structure/bed/pod{ + desc = "An old medical bed, just waiting for replacement with something up to date."; + name = "medical bed" + }, +/obj/item/bedsheet/medical, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/medical/exam_room) +"qki" = ( +/obj/structure/table/reinforced, +/obj/item/assembly/voice{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/structure/desk_bell{ + pixel_x = -6 + }, +/obj/machinery/door/window/left/directional/west{ + name = "Research Lab Desk"; + req_access = list("science") + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rndlab1"; + name = "Research and Development Shutter" + }, +/turf/open/floor/iron/white/textured_large, +/area/station/science/lab) +"qkp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, +/obj/machinery/door/airlock/science/glass{ + name = "Ordnance Freezer Chamber" + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/junction/layer2, +/turf/open/floor/engine/vacuum, +/area/station/science/ordnance/freezerchamber) +"qks" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured_large, +/area/station/security/checkpoint/engineering) +"qkz" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/science/ordnance/testlab) +"qkB" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "roboticssurgery"; + name = "Robotics Shutters" + }, +/turf/open/floor/plating, +/area/station/science/robotics/lab) +"qkJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/tile/purple/diagonal_centre, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/diagonal, +/area/station/science/research) +"qkO" = ( +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/textured_corner{ + dir = 4 + }, +/area/station/hallway/primary/aft) +"qlA" = ( +/obj/effect/turf_decal/stripes/red/full, +/turf/open/floor/iron/textured_large, +/area/station/hallway/secondary/construction) +"qlB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/librarian, +/turf/open/floor/iron/grimy, +/area/station/service/library) +"qlN" = ( +/turf/closed/wall/r_wall, +/area/station/science/robotics/lab) +"qlR" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured_large, +/area/station/cargo/miningdock) +"qlS" = ( +/obj/machinery/door/airlock/research{ + name = "Circuit Testing Lab" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/research, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/science/auxlab) +"qmd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/machinery/camera/directional/north{ + c_tag = "Prison - Aft"; + dir = 2; + network = list("ss13","prison") + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/security/prison) +"qmg" = ( +/obj/machinery/status_display/ai, +/turf/closed/wall/r_wall, +/area/station/ai_monitored/turret_protected/ai) +"qmk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/moisture_trap, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/bar) +"qmn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/crate_abandoned, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/aft) +"qmp" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/pod/dark, +/area/station/service/chapel/office) +"qmD" = ( +/obj/structure/cable, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/siding/wood/end{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/textured_large, +/area/station/security/brig) +"qmE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/ai) +"qmI" = ( +/obj/machinery/flasher/directional/south{ + id = "Cell 6" + }, +/obj/machinery/light/small/broken/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/security/execution/transfer) +"qmM" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/maintenance/disposal/incinerator) +"qmZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/spawner/random/structure/steam_vent, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/fore) +"qnh" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_edge, +/area/station/medical/medbay/central) +"qni" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/structure/rack, +/obj/effect/turf_decal/box/white{ + color = "#A46106" + }, +/obj/effect/spawner/random/bureaucracy/birthday_wrap, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/cargo/sorting) +"qnm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/moisture_trap, +/turf/open/floor/iron/textured, +/area/station/maintenance/port) +"qnr" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/closed/wall, +/area/station/maintenance/aft/upper) +"qnC" = ( +/obj/structure/table/wood, +/obj/item/paper_bin/carbon{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/camera/detective{ + pixel_x = -10 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/item/taperecorder{ + pixel_x = 11; + pixel_y = 3 + }, +/turf/open/floor/iron/grimy, +/area/station/security/detectives_office) +"qnW" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 6 + }, +/obj/structure/bed/dogbed{ + anchored = 1; + name = "Poppy's bed" + }, +/obj/machinery/firealarm/directional/south, +/mob/living/basic/pet/poppy, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/textured, +/area/station/engineering/lobby) +"qok" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/lesser) +"qoE" = ( +/obj/machinery/digital_clock{ + pixel_y = 5 + }, +/turf/closed/wall, +/area/station/security/interrogation) +"qoG" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/medical/surgery) +"qoN" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/cmo) +"qoP" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/turf/open/floor/pod/dark, +/area/station/service/chapel/funeral) +"qoS" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/turf/open/floor/iron/textured, +/area/station/maintenance/port) +"qoT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/computer/mech_bay_power_console{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/circuit, +/area/station/science/research/abandoned) +"qoU" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/machinery/computer/security/telescreen{ + desc = "Used for monitoring the engine."; + dir = 4; + name = "Engine Monitor"; + network = list("engine"); + pixel_x = -32 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/security/checkpoint/engineering) +"qoV" = ( +/obj/structure/table/wood/fancy/cyan, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/machinery/recharger{ + pixel_x = 5; + pixel_y = 2 + }, +/obj/machinery/newscaster/directional/north, +/obj/machinery/light_switch/directional/north{ + pixel_x = 16 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/blueshield) +"qpe" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/duct, +/turf/open/floor/iron/white/textured_edge, +/area/station/medical/medbay/central) +"qpf" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/light_switch/directional/north, +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 9 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/execution/education) +"qpg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/textured_large, +/area/station/command/cc_dock) +"qpn" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured, +/area/station/science/server) +"qpq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos/storage) +"qpu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/warden) +"qpy" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/dark_red/half/contrasted, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/science/robotics/lab) +"qpM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/grunge{ + id_tag = "Cell4Privacy"; + name = "Cell 4" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/prison) +"qpR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/grimy, +/area/station/service/library) +"qpT" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/machinery/vending/sustenance, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/mess) +"qpU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/siding/green/corner{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"qpV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"qqa" = ( +/obj/effect/spawner/random/structure/barricade, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine/atmos) +"qqg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/random/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"qqs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/bartender, +/turf/open/floor/wood/tile, +/area/station/service/bar) +"qqv" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/aisat/atmos) +"qqM" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/main) +"qrF" = ( +/obj/effect/landmark/start/prisoner, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/prison) +"qrH" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"qrI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light_switch/directional/east{ + pixel_x = 23 + }, +/obj/structure/sink/directional/west, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, +/area/station/service/bar) +"qrK" = ( +/obj/machinery/teleport/station, +/obj/effect/turf_decal/bot, +/turf/open/floor/circuit, +/area/station/command/teleporter) +"qrR" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/textured_large, +/area/station/command/gateway) +"qsl" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/camera/directional/east{ + c_tag = "Telecomms - Monitoring"; + name = "telecomms camera"; + network = list("ss13","tcomms") + }, +/turf/open/floor/engine, +/area/station/tcommsat/computer) +"qso" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/green/corner, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/small, +/area/station/commons/dorms) +"qst" = ( +/obj/effect/turf_decal/vg_decals/atmos/nitrogen, +/turf/open/floor/engine/n2, +/area/station/engineering/atmos) +"qsw" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/security/greater) +"qsF" = ( +/obj/machinery/washing_machine, +/obj/effect/turf_decal/bot, +/obj/structure/bedsheetbin{ + pixel_y = 8 + }, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/kitchen{ + dir = 1 + }, +/area/station/security/prison/work) +"qsN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/button/door/directional/north{ + id = "medicalbridge"; + name = "Bridge Shutters" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical) +"qsW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Telecomms Foyer" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/all/engineering/tcoms, +/obj/effect/landmark/navigate_destination/tcomms, +/turf/open/floor/engine, +/area/station/tcommsat/computer) +"qta" = ( +/obj/effect/turf_decal/stripes/red/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"qtc" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Aft Central Primary Hallway" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/execution/transfer) +"qtl" = ( +/obj/effect/spawner/random/structure/crate_loot, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/science/ordnance_maint) +"qtp" = ( +/obj/machinery/door/window/left/directional/east{ + name = "Justice Storage"; + req_access = list("armory") + }, +/obj/structure/closet/crate, +/obj/item/tank/internals/oxygen/red{ + pixel_x = 3 + }, +/obj/item/tank/internals/oxygen/red{ + pixel_x = -3 + }, +/obj/item/wrench, +/obj/effect/turf_decal/bot_red, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/execution/education) +"qts" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/item/kirbyplants/random, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/fore) +"qtu" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"qtB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/lobby) +"qtC" = ( +/obj/effect/turf_decal/trimline/green/filled/warning, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/hallway/primary/fore) +"qtL" = ( +/turf/closed/mineral, +/area/space/nearstation) +"qtN" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"qtP" = ( +/obj/machinery/door/airlock/research{ + name = "Mech Bay" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/science/robotics, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/robotics/mechbay) +"qtQ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/hallway/primary/central/aft) +"qtW" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 10 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"qtZ" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/closet/emcloset/wall{ + pixel_y = -32 + }, +/obj/effect/turf_decal/trimline/white/end{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 1 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/medical/medbay/central) +"qud" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/filingcabinet, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/grimy, +/area/station/commons/vacant_room/office) +"quy" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/textured, +/area/station/command/cc_dock) +"quB" = ( +/obj/machinery/growing/soil, +/obj/item/seeds/watermelon/holy, +/turf/open/floor/grass, +/area/station/service/chapel) +"quG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/greater) +"quO" = ( +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/crew_quarters/bar) +"qvc" = ( +/obj/structure/table{ + name = "Jim Norton's Quebecois Coffee table" + }, +/obj/item/clothing/suit/apron/chef{ + name = "Jim Norton's Quebecois Coffee apron" + }, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/effect/turf_decal/siding/wood, +/obj/item/storage/fancy/coffee_condi_display{ + pixel_x = 4; + pixel_y = 2 + }, +/turf/open/floor/wood, +/area/station/hallway/secondary/entry) +"qvp" = ( +/obj/structure/disposalpipe/trunk, +/obj/structure/disposaloutlet{ + dir = 8; + name = "Cargo Deliveries" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/main) +"qvU" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/chair/sofa/corp{ + dir = 8; + pixel_x = 7 + }, +/turf/open/floor/wood/parquet, +/area/station/common/night_club) +"qwH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/science/ordnance_maint) +"qwS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/machinery/status_display/ai/directional/south, +/obj/effect/turf_decal/trimline/purple/filled/line, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/science/ordnance/testlab) +"qwV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/greater) +"qwZ" = ( +/obj/structure/table/wood, +/obj/item/food/grown/poppy/lily, +/obj/machinery/light/warm/directional/west, +/turf/open/floor/carpet/black, +/area/station/commons/dorms) +"qxc" = ( +/obj/structure/chair/stool/directional/east, +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/mess) +"qxp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/clown, +/turf/open/floor/wood/large, +/area/station/service/theater) +"qxs" = ( +/obj/structure/sign/warning/biohazard/directional/east, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"qxI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/warehouse) +"qxO" = ( +/turf/closed/wall/r_wall, +/area/station/security/checkpoint/medical) +"qxS" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/machinery/rnd/production/techfab/department/security, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/security/office) +"qyg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + id_tag = "innerbrig"; + name = "Brig" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/entrance, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "brig-entrance-aft" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/brig) +"qyj" = ( +/obj/structure/table, +/obj/item/crowbar, +/obj/item/shovel/spade, +/obj/item/hatchet, +/obj/item/cultivator, +/obj/item/reagent_containers/cup/bottle/nutrient/rh{ + pixel_x = 2; + pixel_y = 1 + }, +/obj/item/reagent_containers/cup/bottle/nutrient/ez, +/obj/machinery/requests_console/directional/east{ + department = "Garden"; + name = "Garden Requests Console" + }, +/turf/open/floor/iron/dark/textured, +/area/station/service/hydroponics/garden) +"qyk" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/window/fulltile, +/turf/open/floor/grass, +/area/station/science/auxlab/firing_range) +"qyq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/theater) +"qyr" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"qys" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch" + }, +/obj/effect/spawner/random/structure/barricade, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine/atmos) +"qyv" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/bot, +/obj/item/pipe_dispenser, +/obj/item/pipe_dispenser{ + pixel_x = 2; + pixel_y = -4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos/hfr_room) +"qyC" = ( +/turf/closed/wall/mineral/iron, +/area/station/service/chapel/funeral) +"qyE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/security/prison/work) +"qyN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/security/greater) +"qyQ" = ( +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"qyR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/textured_large, +/area/station/command/cc_dock) +"qyT" = ( +/obj/machinery/airalarm/directional/south, +/obj/machinery/light/warm/directional/south, +/turf/open/floor/pod/dark, +/area/station/engineering/storage/tech) +"qyW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/textured, +/area/station/command/cc_dock) +"qza" = ( +/obj/structure/flora/bush/flowers_yw/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/turf/open/floor/grass, +/area/station/service/chapel) +"qzr" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/hallway/primary/fore) +"qzs" = ( +/obj/machinery/mass_driver/trash{ + dir = 4 + }, +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/obj/machinery/door/window/left/directional/south{ + name = "Danger: Driver Access"; + req_access = list("maint_tunnels") + }, +/turf/open/floor/engine, +/area/station/maintenance/disposal) +"qzy" = ( +/obj/machinery/door/airlock/maintenance{ + critical_machine = 1; + name = "Kitchen Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/service/kitchen, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/greater) +"qzL" = ( +/obj/machinery/computer/records/security, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/effect/turf_decal/tile/dark_red/half{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"qAc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/chair/stool/directional/east{ + pixel_x = 6 + }, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/exit/departure_lounge) +"qAj" = ( +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/lobby) +"qAl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Security Hallway" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/primary/fore) +"qAt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"qAu" = ( +/obj/machinery/conveyor{ + dir = 5; + id = "cargoload" + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/storage) +"qAD" = ( +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/plating, +/area/station/maintenance/department/engine/atmos) +"qAI" = ( +/obj/structure/table/glass, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/break_room) +"qAJ" = ( +/turf/open/floor/light, +/area/station/common/night_club) +"qAN" = ( +/obj/structure/trash_pile, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine/atmos) +"qAR" = ( +/obj/effect/landmark/atmospheric_sanity/ignore_area, +/turf/closed/wall/mineral/iron, +/area/station/service/chapel/funeral) +"qBc" = ( +/obj/machinery/airalarm/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/kirbyplants/organic/plant21, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/carpet/blue, +/area/station/command/bridge) +"qBe" = ( +/obj/machinery/door/airlock/mining{ + name = "Mining Dock" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining, +/obj/effect/mapping_helpers/airlock/access/any/supply/bit_den, +/turf/open/floor/iron/textured, +/area/station/cargo/miningdock) +"qBh" = ( +/obj/effect/spawner/random/trash/mopbucket, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/fore) +"qBl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/spawner/random/structure/steam_vent, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"qBp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/gateway) +"qBt" = ( +/obj/machinery/plumbing/ooze_sucker{ + mapping_id = "2"; + dir = 1 + }, +/obj/machinery/light/floor/has_bulb, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"qBA" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"qBO" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/suit/hooded/ablative{ + pixel_y = 7 + }, +/obj/item/gun/energy/temperature/security{ + pixel_y = 5 + }, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east{ + layer = 2.9; + pixel_x = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/security/armory) +"qBR" = ( +/obj/structure/transit_tube, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"qBT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/hallway/secondary/command) +"qCd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge, +/area/station/hallway/secondary/entry) +"qCB" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/brig) +"qCH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/psychologist, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/turf/open/floor/iron/white/diagonal, +/area/station/medical/medbay/central) +"qCM" = ( +/obj/machinery/power/turbine/inlet_compressor, +/turf/open/floor/engine, +/area/station/maintenance/disposal/incinerator) +"qCP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/secondary/entry) +"qCR" = ( +/obj/effect/landmark/start/hangover, +/obj/effect/landmark/event_spawn, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall7"; + location = "hall6" + }, +/turf/open/floor/iron/textured_large, +/area/station/hallway/primary/aft) +"qCX" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/central) +"qDk" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/department/medical/morgue) +"qDl" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/window/right/directional/west{ + name = "Kitchen Deliveries"; + req_access = list("kitchen") + }, +/obj/structure/window/reinforced/spawner/directional/north, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/service/kitchen/coldroom) +"qDp" = ( +/obj/structure/chair/office/light, +/obj/effect/turf_decal/trimline/neutral/filled/warning, +/obj/effect/turf_decal/trimline/neutral/filled/warning, +/obj/effect/turf_decal/trimline/neutral/filled/warning, +/turf/open/floor/iron/large, +/area/station/commons/vacant_room/commissary) +"qDs" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/grassy, +/obj/structure/flora/bush/flowers_br, +/obj/machinery/light/floor/has_bulb, +/turf/open/floor/grass, +/area/station/hallway/primary/central) +"qDP" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/duct, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/science/lab) +"qDW" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rndlab1"; + name = "Research and Development Shutter" + }, +/turf/open/floor/plating, +/area/station/science/lab) +"qDX" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/status_display/door_timer{ + id = "Cell 1"; + name = "Cell 1"; + pixel_x = 33 + }, +/obj/machinery/door/window/brigdoor/security/cell/right/directional/south{ + id = "Cell 1"; + name = "Cell 1" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark/textured, +/area/station/security/brig) +"qEq" = ( +/obj/structure/sign/departments/aisat/directional/north, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/ai) +"qEr" = ( +/obj/effect/turf_decal/trimline/green/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/siding/green{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/service/hydroponics) +"qEC" = ( +/obj/structure/reagent_dispensers/watertank/high, +/obj/effect/turf_decal/stripes/line, +/obj/item/reagent_containers/cup/watering_can, +/obj/structure/window/spawner/directional/west{ + pixel_x = -4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/hydroponics) +"qEG" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/commons/fitness/recreation/entertainment) +"qEJ" = ( +/obj/machinery/flasher/directional/east{ + id = "AI"; + pixel_y = 26 + }, +/obj/machinery/holopad/secure, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "AI Core shutters"; + name = "AI Core Shutters" + }, +/obj/machinery/door/window/brigdoor/right/directional/west{ + name = "Tertiary AI Core Acces Door"; + req_access = list("ai_upload") + }, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/ai) +"qEL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/textured_large, +/area/station/hallway/primary/aft) +"qET" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall/r_wall, +/area/station/engineering/supermatter) +"qEU" = ( +/obj/effect/turf_decal/box, +/obj/item/robot_suit, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/robotics/lab) +"qFh" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/item/toy/figure/mime, +/obj/structure/noticeboard/directional/west, +/obj/machinery/newscaster/directional/south, +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/checker, +/area/station/service/theater) +"qFu" = ( +/obj/effect/turf_decal/box/red, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge, +/area/station/science/ordnance) +"qFz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/office, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/iron/grimy, +/area/station/commons/vacant_room/office) +"qFA" = ( +/turf/open/floor/iron/textured_large, +/area/station/hallway/secondary/construction) +"qFF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera/directional/north{ + c_tag = "AI Chamber - Entrance"; + network = list("aicore") + }, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/ai) +"qFH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/medical) +"qFI" = ( +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance_hatch, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/crew_quarters/bar) +"qFR" = ( +/obj/machinery/computer/accounting{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hop) +"qGv" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/dark/visible, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"qGO" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"qGT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/greater) +"qGW" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/fore) +"qHc" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/co2, +/obj/effect/turf_decal/tile/dark/full, +/obj/structure/window/reinforced/plasma/spawner/directional/west, +/obj/structure/window/reinforced/plasma/spawner/directional/north, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"qHe" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/storage) +"qHf" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/station/security/checkpoint/science/research) +"qHg" = ( +/obj/effect/turf_decal/box, +/obj/structure/mirror/directional/west, +/obj/structure/sink/directional/east, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/greater) +"qHh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/medical/medbay/central) +"qHi" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/ce) +"qHt" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/rack, +/obj/item/crowbar, +/obj/item/wrench, +/obj/item/clothing/mask/gas, +/obj/item/radio, +/obj/machinery/duct, +/obj/machinery/camera/directional/north{ + c_tag = "Medbay - Orderly's Office"; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/freezer, +/area/station/security/checkpoint/medical) +"qHx" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/tcommsat/computer) +"qHy" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/landmark/event_spawn, +/obj/effect/mapping_helpers/mail_sorting/supply/cargo_bay, +/obj/structure/disposalpipe/sorting/mail{ + dir = 1; + name = "Disposals Junction" + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/lobby) +"qHH" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/commons/fitness/recreation/entertainment) +"qHI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical) +"qHJ" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/siding/green{ + dir = 9 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/commons/dorms) +"qHT" = ( +/obj/machinery/space_heater, +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"qIa" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/chair/plastic{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood/large, +/area/station/commons/fitness/recreation/entertainment) +"qIb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, +/obj/item/kirbyplants/random, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"qIc" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/landmark/event_spawn, +/obj/machinery/light/floor/has_bulb, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"qIf" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/wood, +/area/station/commons/vacant_room/office) +"qIn" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 4 + }, +/turf/open/floor/iron/white/side{ + dir = 10 + }, +/area/station/science/research) +"qIv" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/obj/machinery/telecomms/server/presets/medical, +/obj/effect/turf_decal/bot, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/station/tcommsat/server) +"qIw" = ( +/obj/effect/landmark/start/assistant, +/obj/structure/chair/sofa/bench/left{ + dir = 4; + pixel_x = -5 + }, +/obj/machinery/light/cold/directional/west, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/structure/sign/poster/official/moth_epi/directional/west, +/turf/open/floor/iron/white/textured_large, +/area/station/hallway/primary/central/aft) +"qIx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/small, +/area/station/commons/dorms) +"qIH" = ( +/obj/item/stack/cable_coil, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/station/solars/port/aft) +"qIK" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 8 + }, +/obj/structure/lattice, +/obj/item/clothing/head/utility/hardhat{ + pixel_x = 1; + pixel_y = 12 + }, +/turf/open/space/basic, +/area/space/nearstation) +"qIS" = ( +/obj/effect/spawner/random/trash/grime, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/aft) +"qIT" = ( +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/white/diagonal, +/area/station/medical/medbay/central) +"qIU" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall6"; + location = "hall5" + }, +/turf/open/floor/iron/half{ + dir = 8 + }, +/area/station/hallway/primary/central) +"qIZ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/warning, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/science/ordnance) +"qJa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/maintenance{ + name = "Gamer Lair" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/fore) +"qJd" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/edge, +/area/station/commons/storage/primary) +"qJl" = ( +/obj/structure/table, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/item/radio{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/effect/turf_decal/siding/red{ + dir = 8 + }, +/turf/open/floor/iron/large, +/area/station/hallway/primary/fore) +"qJD" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 10 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos/storage/gas) +"qJZ" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 9 + }, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"qKf" = ( +/obj/machinery/chem_master/condimaster{ + desc = "Used to separate out liquids - useful for purifying botanical extracts. Also dispenses condiments."; + name = "SapMaster XP" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/hydroponics) +"qKi" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/lockers) +"qKl" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/caution/stand_clear{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron/textured_large, +/area/station/command/cc_dock) +"qKC" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/engine{ + name = "Holodeck Projector Floor" + }, +/area/station/holodeck/rec_center) +"qKM" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, +/obj/effect/turf_decal/trimline/dark_red/filled/corner, +/turf/open/floor/iron/textured_corner, +/area/station/science/ordnance) +"qKN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/science/ordnance/testlab) +"qKP" = ( +/obj/structure/window/reinforced/spawner/directional/north{ + pixel_y = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_red/half{ + dir = 4 + }, +/obj/structure/sign/nanotrasen{ + pixel_x = 32 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/rack, +/obj/effect/spawner/random/armory/disablers, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/ai_monitored/security/armory) +"qLf" = ( +/obj/machinery/light_switch/directional/east, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 6 + }, +/turf/open/floor/iron/dark/textured, +/area/station/command/teleporter) +"qLq" = ( +/obj/effect/mapping_helpers/airlock/access/all/medical/virology, +/obj/structure/cable, +/obj/machinery/door_buttons/access_button{ + dir = 1; + idDoor = "virology_airlock_exterior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_y = -26; + req_access = list("pathology") + }, +/obj/machinery/door/airlock/virology{ + autoclose = 0; + frequency = 1449; + id_tag = "virology_airlock_exterior"; + name = "Virology Exterior Airlock" + }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_green/diagonal_centre, +/obj/effect/turf_decal/tile/dark_green/diagonal_centre, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/virology) +"qLu" = ( +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/science/xenobiology) +"qLy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/small, +/area/station/commons/dorms) +"qLC" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/cargo/office) +"qLI" = ( +/obj/structure/table/reinforced/rglass, +/obj/machinery/recharger, +/turf/open/floor/carpet/blue, +/area/station/command/bridge) +"qLM" = ( +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + dir = 6; + name = "blue line" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/prison) +"qLS" = ( +/obj/item/restraints/handcuffs, +/obj/item/assembly/flash/handheld{ + pixel_x = -16; + pixel_y = 4 + }, +/obj/item/radio/headset/headset_sec/alt{ + pixel_x = 4; + pixel_y = 14 + }, +/obj/structure/table/reinforced/rglass, +/turf/open/floor/glass/reinforced, +/area/station/security/office) +"qLT" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 10 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/atmos) +"qLY" = ( +/turf/closed/wall, +/area/station/security/brig) +"qMk" = ( +/obj/structure/chair/pew/right{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/security/courtroom) +"qMn" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/effect/landmark/start/atmospheric_technician, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/atmos/storage/gas) +"qMB" = ( +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"qMC" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/iron, +/area/station/commons/storage/art) +"qMR" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hop) +"qMS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 10 + }, +/obj/machinery/duct, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"qMU" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/button/curtain{ + id = "theater_curtains"; + pixel_y = -24 + }, +/turf/open/floor/wood/large, +/area/station/service/theater) +"qNc" = ( +/obj/machinery/vending/cart, +/obj/item/storage/lockbox/loyalty{ + pixel_x = 2; + pixel_y = 18 + }, +/obj/effect/turf_decal/bot, +/obj/structure/sign/calendar/directional/south, +/obj/machinery/digital_clock/directional/east, +/turf/open/floor/carpet/executive, +/area/station/command/heads_quarters/hop) +"qNd" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/burgundy, +/turf/open/space, +/area/space/nearstation) +"qNj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/cargo/storage) +"qNW" = ( +/obj/structure/window/spawner/directional/west, +/obj/structure/window/spawner/directional/north, +/turf/open/floor/grass, +/area/station/service/hydroponics/garden) +"qNZ" = ( +/obj/machinery/vending/wardrobe/bar_wardrobe, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/machinery/light_switch/directional/east, +/obj/item/toy/figure/bartender{ + pixel_y = 18 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/wood/tile, +/area/station/service/bar) +"qOu" = ( +/obj/machinery/mech_bay_recharge_port{ + dir = 8 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Science - Mech Bay"; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/machinery/status_display/evac/directional/north, +/obj/effect/turf_decal/bot, +/turf/open/floor/circuit/red, +/area/station/science/robotics/mechbay) +"qPe" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/lesser) +"qPh" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/maintenance/port) +"qPn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/security/brig) +"qPI" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/supermatter/room) +"qPN" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/lobby) +"qPS" = ( +/obj/machinery/atmospherics/components/binary/valve/digital, +/turf/open/floor/iron/textured_large, +/area/station/science/ordnance) +"qPY" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/turf/open/floor/iron/textured_corner, +/area/station/engineering/atmos) +"qQb" = ( +/obj/structure/closet/firecloset/wall{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/purple/diagonal_centre, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/white/end{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 1 + }, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/white/diagonal, +/area/station/science/research) +"qQh" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"qQn" = ( +/obj/item/kitchen/rollingpin{ + pixel_y = 4 + }, +/obj/item/reagent_containers/cup/rag{ + pixel_y = 4 + }, +/obj/machinery/requests_console/directional/south{ + department = "Service Hall"; + name = "Service Hall Requests Console" + }, +/obj/item/radio/headset/headset_srv{ + pixel_x = -11; + pixel_y = 4 + }, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/table, +/turf/open/floor/iron/diagonal, +/area/station/hallway/secondary/service) +"qQu" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured_large, +/area/station/engineering/main) +"qQC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/plastic, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"qQJ" = ( +/obj/machinery/status_display/ai/directional/north, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/secondary/command) +"qQS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/blue/filled/warning, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/medical/medbay/central) +"qRh" = ( +/obj/item/clothing/head/cone, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/crew_quarters/bar) +"qRj" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/camera/directional/west{ + c_tag = "Medbay - Virology Access"; + name = "medical camera"; + network = list("ss13","medical") + }, +/obj/effect/turf_decal/tile/dark_green/diagonal_centre, +/turf/open/floor/iron/white/diagonal, +/area/station/medical/virology) +"qRv" = ( +/obj/structure/table, +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"qRD" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/commons/storage/primary) +"qRF" = ( +/turf/closed/wall, +/area/station/security/interrogation) +"qRO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/turf/open/floor/iron/dark/diagonal, +/area/station/hallway/primary/fore) +"qRZ" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/structure/sign/warning/radiation/rad_area/directional/east, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/atmos/hfr_room) +"qSc" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/sepia, +/area/station/service/library) +"qSd" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/computer/gateway_control{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/command/gateway) +"qSn" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/machinery/light/warm/directional/east, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/commons/fitness/recreation) +"qSs" = ( +/obj/structure/table, +/obj/item/plate/large, +/obj/item/plate, +/obj/item/plate/small{ + pixel_y = 1 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/item/reagent_containers/condiment/enzyme{ + pixel_x = 10; + pixel_y = 18 + }, +/obj/item/knife/butcher{ + pixel_x = 5 + }, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"qSu" = ( +/turf/open/floor/iron/large, +/area/station/hallway/primary/fore) +"qSw" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/corner{ + dir = 1 + }, +/area/station/hallway/primary/central) +"qSF" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/grassy, +/obj/structure/flora/bush/sunny, +/obj/structure/flora/bush/flowers_pp, +/turf/open/floor/grass, +/area/station/hallway/secondary/exit/departure_lounge) +"qSH" = ( +/obj/structure/closet/radiation, +/obj/effect/turf_decal/box, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos/hfr_room) +"qSN" = ( +/obj/machinery/door/airlock/security{ + name = "Armory" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/armory, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/ai_monitored/security/armory) +"qST" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/service/theater) +"qSU" = ( +/obj/item/clothing/shoes/magboots{ + pixel_x = -4 + }, +/obj/item/clothing/shoes/magboots{ + pixel_x = 3 + }, +/obj/item/clothing/shoes/magboots{ + pixel_y = 4 + }, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/rack/shelf, +/obj/structure/window/reinforced/spawner/directional/east{ + layer = 2.9 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 5 + }, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/command/storage/eva) +"qSW" = ( +/obj/machinery/door/airlock/research{ + name = "Research Division Access" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "rnd-enterance" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/general, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/duct, +/turf/open/floor/iron/white/textured_large, +/area/station/science/lab) +"qTe" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/lobby) +"qTh" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Arrivals" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/large, +/area/station/commons/storage/art) +"qTo" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"qTA" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/ce) +"qTC" = ( +/turf/closed/wall/r_wall, +/area/station/science/auxlab/firing_range) +"qTG" = ( +/obj/machinery/door/airlock/security{ + name = "Customs Desk" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/large, +/area/station/security/checkpoint/customs) +"qTJ" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/obj/effect/landmark/start/chaplain, +/turf/open/floor/carpet/black, +/area/station/service/chapel/office) +"qTQ" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/effect/turf_decal/trimline/blue/filled/warning, +/obj/machinery/atmospherics/pipe/smart/manifold/orange/visible{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/atmos) +"qUl" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/hallway/primary/aft) +"qUm" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/chair/stool/directional/south{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/lobby) +"qUn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/siding/green/corner, +/obj/structure/closet/crate/hydroponics, +/turf/open/floor/iron/textured, +/area/station/service/hydroponics/garden/abandoned) +"qUo" = ( +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/security/prison) +"qUt" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/bar) +"qUF" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/structure/sign/nanotrasen{ + pixel_x = -32 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"qUI" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 9 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos/pumproom) +"qUM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/sign/poster/random/directional/north, +/obj/effect/spawner/random/vending/snackvend, +/turf/open/floor/wood, +/area/station/commons/vacant_room/office) +"qUN" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/security/prison/work) +"qVj" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 8 + }, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/main) +"qVk" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Arrivals" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/commons/dorms) +"qVm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/small, +/area/station/commons/dorms) +"qVo" = ( +/obj/effect/turf_decal/siding/thinplating/corner, +/obj/machinery/light/floor/has_bulb, +/turf/open/misc/beach/sand, +/area/station/hallway/primary/central/fore) +"qVt" = ( +/obj/machinery/status_display/supply{ + pixel_x = 32 + }, +/obj/machinery/conveyor{ + dir = 1; + id = "cargoload" + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/storage) +"qVv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/gravity_generator) +"qVy" = ( +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/machinery/door/airlock/maintenance{ + name = "Library Maintenance" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/greater) +"qVC" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "lawyerprivacy"; + name = "Lawyer's Privacy Shutter" + }, +/turf/open/floor/plating, +/area/station/service/lawoffice) +"qVK" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/white/textured_large, +/area/station/security/medical) +"qVR" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "Cell6Privacy"; + name = "curtain" + }, +/turf/open/floor/plating, +/area/station/security/prison) +"qVT" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/storage) +"qVW" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 10 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/storage_shared) +"qWi" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/atmos) +"qWo" = ( +/obj/structure/table, +/obj/effect/spawner/random/trash/janitor_supplies, +/obj/effect/spawner/random/decoration/paint, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/greater) +"qWA" = ( +/obj/structure/chair/pew/right{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/wood/large, +/area/station/security/courtroom) +"qWR" = ( +/obj/structure/sign/warning/vacuum, +/turf/closed/wall, +/area/station/hallway/primary/aft) +"qWX" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/structure/closet/radiation, +/obj/effect/turf_decal/bot, +/obj/item/clothing/glasses/meson, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/atmos/storage) +"qXe" = ( +/turf/open/floor/grass, +/area/station/service/hydroponics/garden) +"qXk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/spawner/random/structure/steam_vent, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"qXm" = ( +/obj/structure/trash_pile, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine) +"qXo" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/command/heads_quarters/qm) +"qXq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/gateway) +"qXG" = ( +/obj/effect/mapping_helpers/airlock/access/all/engineering/tech_storage, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Tech Storage Maintenance" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/aft) +"qXO" = ( +/obj/structure/chair/sofa/bench, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/entry) +"qXP" = ( +/obj/effect/turf_decal/weather/sand, +/obj/effect/turf_decal/siding/thinplating{ + dir = 9 + }, +/obj/structure/flora/bush/sparsegrass{ + pixel_x = 8 + }, +/obj/structure/flora/bush/jungle/c, +/turf/open/floor/grass, +/area/station/hallway/primary/central/fore) +"qXR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/security/brig) +"qXW" = ( +/obj/structure/sink/directional/west, +/turf/open/floor/pod/light, +/area/station/service/chapel) +"qXY" = ( +/obj/structure/chair/comfy/brown{ + buildstackamount = 0; + dir = 1 + }, +/obj/machinery/button/door/directional/west{ + id = "Cabin1"; + name = "Dormitory Door Lock"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/carpet/cyan, +/area/station/commons/dorms) +"qYb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/sign/poster/random/directional/south, +/turf/open/floor/engine, +/area/station/medical/chemistry) +"qYo" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/maintenance/disposal/incinerator) +"qYq" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Security Equipment Room Maintenance" + }, +/turf/open/floor/plating, +/area/station/security/lockers) +"qYA" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/iron/textured_large, +/area/station/cargo/storage) +"qYK" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/iron/textured_large, +/area/station/command/heads_quarters/hos) +"qYP" = ( +/obj/effect/turf_decal/trimline/dark_red/arrow_cw{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/closet/emcloset/wall{ + pixel_x = -32 + }, +/obj/effect/turf_decal/trimline/white/end{ + dir = 4 + }, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"qZf" = ( +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/upper) +"qZl" = ( +/obj/machinery/smartfridge/chemistry/preloaded, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistry_shutters"; + name = "Pharmacy Shutters" + }, +/turf/open/floor/iron/freezer, +/area/station/medical/pharmacy) +"qZz" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/camera/directional/north{ + c_tag = "Chapel Crematorium"; + network = list("ss13","monastery") + }, +/obj/structure/chair/wood, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/pod/dark, +/area/station/service/chapel/office) +"qZA" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/grassy, +/obj/structure/flora/bush/flowers_yw, +/obj/structure/window/fulltile, +/turf/open/floor/grass, +/area/station/security/prison/garden) +"qZH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/duct, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"qZN" = ( +/obj/machinery/smartfridge, +/obj/machinery/splicer{ + pixel_y = 12; + pixel_x = -6 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/hydroponics) +"qZQ" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/structure/rack, +/obj/item/lightreplacer{ + pixel_y = 7 + }, +/obj/item/storage/box/lights/mixed, +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm/directional/north, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/storage_shared) +"qZS" = ( +/obj/machinery/smoke_machine, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/turf_decal/bot_red, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/engine, +/area/station/medical/chemistry) +"raM" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/pen{ + pixel_y = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/textured, +/area/station/cargo/warehouse) +"raP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light/neon_lining{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"raW" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/grimy, +/area/station/commons/lounge) +"raX" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/airlock/atmos/glass, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"rba" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical) +"rbc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/landmark/generic_maintenance_landmark, +/turf/open/floor/iron/textured, +/area/station/maintenance/eva_shed/starboard) +"rbf" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/light/small/directional/south, +/obj/machinery/computer/shuttle/mining/common{ + dir = 1 + }, +/turf/open/floor/iron/textured_large, +/area/station/hallway/primary/aft) +"rbh" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/machinery/light/small/directional/east, +/obj/structure/closet/emcloset/anchored, +/turf/open/floor/iron/textured, +/area/station/engineering/main) +"rbz" = ( +/obj/structure/chair/pew/left{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/wood/large, +/area/station/security/courtroom) +"rbF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge, +/area/station/hallway/primary/aft) +"rbJ" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/newscaster/directional/east, +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/science/research/abandoned) +"rbP" = ( +/obj/structure/barricade/wooden/crude, +/obj/machinery/door/airlock/maintenance/external/glass, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/kitchen/abandoned) +"rbW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/aft) +"rcf" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/science/ordnance_maint) +"rcg" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"rch" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"rcl" = ( +/turf/closed/wall, +/area/station/medical/coldroom) +"rcr" = ( +/obj/effect/spawner/random/structure/closet_empty, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/science/ordnance_maint) +"rcB" = ( +/obj/machinery/airlock_sensor/incinerator_atmos{ + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, +/turf/open/floor/engine, +/area/station/maintenance/disposal/incinerator) +"rcY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/command) +"rdd" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/station/engineering/atmos) +"rde" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/atmos) +"rdi" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_large, +/area/station/science/ordnance/office) +"rdj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/brown/filled/warning, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/cargo/storage) +"rdJ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/end{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/execution/education) +"rdT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/textured_corner{ + dir = 4 + }, +/area/station/science/ordnance/testlab) +"rdY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/large, +/area/station/commons/fitness/recreation/entertainment) +"rec" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/service/theater) +"rek" = ( +/obj/structure/chair/stool/directional/west, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood/large, +/area/station/commons/fitness/recreation) +"reQ" = ( +/obj/machinery/vending/wardrobe/chap_wardrobe, +/obj/item/toy/figure/chaplain{ + pixel_y = 16 + }, +/turf/open/floor/carpet/stellar, +/area/station/service/chapel/office) +"reT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/dark_red/half{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/ai_monitored/security/armory) +"rfk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/head/cone, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine) +"rfo" = ( +/obj/effect/turf_decal/vg_decals/atmos/air, +/turf/open/floor/engine/air, +/area/station/engineering/atmos) +"rfv" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/security/checkpoint/engineering) +"rfw" = ( +/obj/machinery/airalarm/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"rfy" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/pod/dark, +/area/station/engineering/storage/tech) +"rfD" = ( +/obj/machinery/camera/directional/north{ + dir = 9 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"rfG" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/primary/central/aft) +"rfR" = ( +/obj/machinery/computer/message_monitor{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/turf/open/floor/engine, +/area/station/tcommsat/computer) +"rga" = ( +/obj/effect/turf_decal/trimline/dark_red/arrow_cw{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central) +"rgt" = ( +/obj/structure/table/reinforced, +/obj/item/storage/fancy/cigarettes/cigars/cohiba{ + pixel_y = 3 + }, +/obj/item/lighter, +/turf/open/floor/carpet/purple, +/area/station/common/night_club) +"rgv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/textured_corner{ + dir = 4 + }, +/area/station/engineering/power_room) +"rgw" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/construction/mining/aux_base) +"rgD" = ( +/obj/structure/sign/painting/library{ + pixel_y = -32 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/large, +/area/station/service/library) +"rgE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance/two, +/obj/item/clothing/head/cone, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine) +"rgH" = ( +/obj/structure/frame/machine{ + anchored = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/science/research/abandoned) +"rgP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge, +/area/station/maintenance/disposal/incinerator) +"rgW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple/diagonal_centre, +/turf/open/floor/iron/white/diagonal, +/area/station/science/research) +"rhr" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"rhs" = ( +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/rock, +/turf/open/misc/asteroid, +/area/station/hallway/secondary/exit/departure_lounge) +"rhB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Library" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/prison/garden) +"rhF" = ( +/obj/machinery/door/airlock/bathroom{ + name = "Restroom" + }, +/turf/open/floor/iron/freezer, +/area/station/commons/dorms) +"rhM" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/science/research) +"rhS" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/burgundy, +/turf/open/space/basic, +/area/station/solars/aisat) +"rhW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall23"; + location = "hall22" + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/hallway/secondary/command) +"rhY" = ( +/obj/structure/cable, +/obj/machinery/modular_computer/preset/research, +/obj/effect/turf_decal/tile/purple/half{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"ria" = ( +/obj/structure/table/wood, +/obj/item/folder/blue{ + pixel_x = 4 + }, +/obj/item/stamp/head/captain{ + pixel_x = 4 + }, +/obj/item/stamp/denied{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/stamp{ + pixel_x = -6 + }, +/obj/item/coin/adamantine{ + pixel_x = -2; + pixel_y = 16 + }, +/obj/machinery/door/window/brigdoor/left/directional/east{ + name = "Captain's Desk"; + req_access = list("captain") + }, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain) +"rib" = ( +/obj/structure/trash_pile, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/fore) +"rie" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/aft/greater) +"rin" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 8 + }, +/turf/open/space/basic, +/area/space/nearstation) +"ris" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/commons/fitness/recreation/entertainment) +"riy" = ( +/obj/structure/closet/secure_closet/evidence{ + name = "Brig Officer's Locker"; + req_one_access = list("brig") + }, +/obj/machinery/requests_console/auto_name/directional/west, +/obj/machinery/light_switch/directional/south, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/purple/fourcorners, +/turf/open/floor/iron/dark/textured, +/area/station/security/corrections_officer) +"riB" = ( +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + dir = 1; + name = "blue line" + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/mid_joiner{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/prison) +"riE" = ( +/obj/structure/chair/sofa/left/brown{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/station/commons/dorms) +"riI" = ( +/obj/machinery/light/cold/directional/north, +/obj/effect/turf_decal/bot, +/obj/machinery/telecomms/bus/preset_three, +/turf/open/floor/circuit/telecomms/server, +/area/station/tcommsat/server) +"rjf" = ( +/obj/machinery/vending/wardrobe/curator_wardrobe, +/obj/machinery/light_switch/directional/west, +/obj/item/toy/figure/curator{ + pixel_y = 18 + }, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 9 + }, +/turf/open/floor/cult, +/area/station/service/library) +"rjh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 9 + }, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/secondary/command) +"rjn" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/security/prison/work) +"rjs" = ( +/obj/machinery/button/door/directional/south{ + id = "ChemStorage"; + name = "Shutter Control"; + req_access = list("pharmacy") + }, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) +"rju" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/siding/dark_blue{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/tile/blue/half{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"rjI" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/green/corner, +/obj/effect/turf_decal/siding/green/corner{ + dir = 8 + }, +/obj/machinery/door/airlock/hydroponics/glass{ + name = "Garden" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/hydroponics/garden) +"rjP" = ( +/obj/structure/table/reinforced, +/obj/item/crowbar{ + pixel_y = 3 + }, +/obj/item/wrench{ + pixel_y = 3 + }, +/obj/item/gps{ + pixel_y = 3 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 10 + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/iron, +/area/station/commons/storage/primary) +"rjQ" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/structure/sink/directional/east, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/medical/medbay/central) +"rjU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/science/xenobiology) +"rjX" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/fore) +"rkg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/aisat_interior) +"rkh" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/structure/closet/emcloset/wall{ + pixel_y = -32 + }, +/obj/effect/turf_decal/trimline/white/end{ + dir = 1 + }, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"rkw" = ( +/obj/item/radio/intercom/directional/east{ + pixel_y = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/machinery/modular_computer/preset/civilian{ + dir = 8 + }, +/obj/machinery/button/door/directional/east{ + id = "rdordnance"; + name = "Ordnance Containment Control"; + pixel_y = -8; + req_access = list("science") + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/science/ordnance/office) +"rky" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/wood/large, +/area/station/service/theater) +"rkG" = ( +/obj/effect/turf_decal/trimline/brown/filled/warning, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/cargo/storage) +"rkM" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/edge, +/area/station/commons/fitness/recreation/entertainment) +"rkR" = ( +/obj/structure/window/spawner/directional/north, +/obj/machinery/conveyor{ + dir = 8; + id = "garbage" + }, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/disposal) +"rla" = ( +/obj/effect/turf_decal/bot, +/obj/structure/disposaloutlet{ + dir = 4; + name = "Cargo Deliveries" + }, +/obj/structure/window/spawner/directional/south, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/hallway/secondary/service) +"rli" = ( +/turf/closed/wall, +/area/station/cargo/office) +"rlk" = ( +/obj/machinery/vending/wardrobe/robo_wardrobe, +/obj/item/toy/figure/roboticist{ + pixel_y = 18 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/iron/dark/textured, +/area/station/science/robotics/lab) +"rll" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/box, +/obj/machinery/airalarm/directional/north, +/obj/structure/sign/warning/no_smoking/directional/east, +/turf/open/floor/iron/textured, +/area/station/engineering/storage_shared) +"rls" = ( +/obj/machinery/light/floor/has_bulb, +/turf/open/floor/engine/air, +/area/station/engineering/atmos) +"rlC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/catwalk_floor, +/area/station/hallway/secondary/construction) +"rlT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/button/door/directional/north{ + id = "sciencebridge"; + name = "Bridge Shutters" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/fore) +"rml" = ( +/obj/machinery/status_display/ai/directional/east, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/grimy, +/area/station/commons/dorms) +"rmo" = ( +/obj/machinery/power/shuttle_engine/heater, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/obj/structure/window/reinforced/plasma/spawner/directional/east, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/aft) +"rmr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) +"rmD" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/textured, +/area/station/engineering/power_room) +"rmE" = ( +/obj/item/taperecorder, +/obj/structure/table/reinforced/rglass, +/obj/item/flashlight/seclite{ + pixel_x = 2; + pixel_y = -14 + }, +/turf/open/floor/glass/reinforced, +/area/station/security/office) +"rmH" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white/textured_edge, +/area/station/science/explab) +"rmP" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/effect/turf_decal/trimline/blue/filled/warning, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/atmos/storage/gas) +"rmV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured, +/area/station/command/cc_dock) +"rmY" = ( +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + name = "blue line" + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/mid_joiner{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/prison) +"rne" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/turf_decal/tile/dark/fourcorners, +/obj/machinery/camera/directional/north{ + c_tag = "Service - Janitorial Closet"; + dir = 9; + name = "service camera" + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/structure/mop_bucket/janitorialcart{ + dir = 4 + }, +/obj/item/reagent_containers/cup/bucket, +/obj/item/mop, +/turf/open/floor/noslip, +/area/station/service/janitor) +"rnf" = ( +/obj/machinery/research/anomaly_refinery, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/structure/sign/warning/secure_area/directional/north, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_edge, +/area/station/science/ordnance/testlab) +"rnF" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/storage/belt/medical, +/obj/item/storage/belt/medical{ + pixel_y = 3 + }, +/obj/item/storage/belt/medical{ + pixel_y = 6 + }, +/obj/item/reagent_containers/spray/cleaner, +/turf/open/floor/iron/white/textured_edge, +/area/station/medical/medbay/central) +"rnH" = ( +/obj/structure/table/wood, +/obj/structure/cable, +/obj/machinery/computer/security/wooden_tv{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/grimy, +/area/station/security/detectives_office) +"rnL" = ( +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/plating, +/area/station/maintenance/port) +"rnR" = ( +/obj/structure/rack, +/obj/effect/spawner/random/techstorage/ai_all, +/obj/machinery/light/small/directional/west, +/obj/structure/sign/warning/electric_shock/directional/west, +/obj/effect/turf_decal/bot, +/turf/open/floor/pod/dark, +/area/station/engineering/storage/tech) +"rnV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/hobo_squat, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"rog" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/textured_edge, +/area/station/hallway/primary/aft) +"rol" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"ron" = ( +/obj/machinery/atmospherics/components/binary/pump/off, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/aft) +"rop" = ( +/turf/closed/wall, +/area/station/cargo/sorting) +"roz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/corner, +/turf/open/floor/iron/large, +/area/station/service/hydroponics) +"roA" = ( +/mob/living/basic/chicken{ + name = "Featherbottom"; + real_name = "Featherbottom" + }, +/obj/structure/window/spawner/directional/north, +/turf/open/floor/grass, +/area/station/service/hydroponics/garden) +"roK" = ( +/obj/machinery/newscaster/directional/west, +/obj/structure/table/wood/fancy, +/turf/open/floor/pod/dark, +/area/station/service/chapel/office) +"roR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/neutral/filled/line, +/obj/effect/turf_decal/trimline/neutral/filled/line, +/obj/effect/turf_decal/trimline/neutral/filled/line, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/hallway/secondary/command) +"rpb" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Aft Primary Hallway Maintenance" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/unres, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/hallway/primary/aft) +"rpg" = ( +/obj/structure/transit_tube/horizontal{ + dir = 1 + }, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/upper) +"rpk" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/bar) +"rpr" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 4 + }, +/obj/machinery/conveyor_switch/oneway{ + id = "cargounload"; + name = "Unloading Conveyor" + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/cargo/storage) +"rpA" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft) +"rpE" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/textured_large, +/area/station/command/heads_quarters/hos) +"rpI" = ( +/obj/machinery/duct, +/obj/effect/landmark/start/medical_doctor, +/obj/structure/disposalpipe/junction/yjunction, +/obj/effect/turf_decal/trimline/blue/filled/warning, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/medical/treatment_center) +"rpJ" = ( +/obj/machinery/teleport/hub, +/obj/structure/sign/nanotrasen{ + pixel_x = -32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/aisat/service) +"rpN" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/clothing/glasses/sunglasses{ + pixel_y = 12 + }, +/obj/machinery/computer/security/telescreen{ + name = "Prisoner Telescreen"; + network = list("prison"); + pixel_y = 28 + }, +/obj/machinery/button/door/directional/east{ + id = "brigprison"; + name = "Prison Lockdown"; + req_access = list("brig") + }, +/obj/effect/turf_decal/tile/purple/fourcorners, +/turf/open/floor/iron/dark/textured, +/area/station/security/corrections_officer) +"rpS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/steam_vent, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/science/ordnance_maint) +"rqo" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/robotics/lab) +"rqD" = ( +/obj/machinery/computer/records/security, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/station/security/detectives_office) +"rqE" = ( +/obj/structure/curtain/cloth/fancy/mechanical/start_closed{ + desc = "A set of curtains serving as a fancy theater backdrop. They can only be opened by a button."; + id = "theater_curtains"; + name = "Theater Curtains" + }, +/turf/open/floor/wood/large, +/area/station/service/theater) +"rqR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 9 + }, +/obj/structure/drain, +/obj/machinery/shower/directional/north, +/turf/open/floor/iron/checker, +/area/station/engineering/power_room) +"rrb" = ( +/obj/structure/trash_pile, +/turf/open/floor/plating, +/area/station/maintenance/department/medical) +"rrg" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/textured, +/area/station/hallway/primary/aft) +"rri" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high/empty, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/lobby) +"rrm" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/medical/medbay/central) +"rrH" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/structure/filingcabinet/chestdrawer/wheeled, +/obj/machinery/requests_console/directional/east{ + department = "Research Lab"; + name = "Research Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/announcement, +/obj/effect/mapping_helpers/requests_console/ore_update, +/obj/effect/mapping_helpers/requests_console/information, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/machinery/camera/directional/east{ + c_tag = "Science - Research and Development"; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/science/lab) +"rrI" = ( +/obj/machinery/door/window/left/directional/west{ + name = "Animal Pen B"; + req_access = list("maint_tunnels") + }, +/turf/open/floor/grass, +/area/station/service/hydroponics/garden) +"rrX" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/textured_large, +/area/station/engineering/power_room) +"rsk" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 9 + }, +/obj/structure/closet/emcloset/wall{ + pixel_x = -32 + }, +/obj/effect/turf_decal/trimline/white/end{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/brig) +"rsC" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 9 + }, +/turf/open/floor/iron/textured, +/area/station/science/ordnance/testlab) +"rsM" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/table, +/obj/item/wallframe/apc, +/obj/structure/spider/stickyweb, +/obj/structure/sign/warning/no_smoking/directional/north, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/electrical) +"rtf" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/siding/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green/half, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_half, +/area/station/service/hydroponics/garden) +"rto" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/power_room) +"rtq" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/structure/table, +/obj/machinery/airalarm/directional/west, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"rtr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/obj/effect/spawner/random/maintenance/four, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/greater) +"rtv" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_large, +/area/station/cargo/warehouse) +"rtD" = ( +/obj/machinery/computer/cargo{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"rtG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/cargo/sorting) +"rtS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/commons/fitness/recreation) +"rud" = ( +/obj/structure/table, +/obj/machinery/chem_dispenser/drinks{ + dir = 8 + }, +/obj/machinery/light/blacklight/directional/east, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/carpet/purple, +/area/station/common/night_club) +"rue" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/captain, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain/private) +"rug" = ( +/obj/effect/landmark/carpspawn, +/turf/open/space/basic, +/area/space) +"rui" = ( +/obj/machinery/vending/assist, +/obj/effect/turf_decal/bot, +/turf/open/floor/pod/dark, +/area/station/engineering/storage/tech) +"ruu" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/gravity_generator) +"ruG" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/bluespace_sender, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos/hfr_room) +"ruH" = ( +/obj/machinery/airalarm/directional/west, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/machinery/disposal/bin, +/turf/open/floor/carpet, +/area/station/medical/psychology) +"ruQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/security/greater) +"ruV" = ( +/obj/machinery/door/airlock/external{ + name = "Mining Dock Airlock" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/mining, +/turf/open/floor/catwalk_floor, +/area/station/cargo/miningdock) +"ruX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "atmos-entrance" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/poddoor/preopen{ + id = "atmoslock"; + name = "Atmospherics Lockdown Blast Door" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos/storage) +"rva" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/entry) +"rvf" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/mess) +"rvi" = ( +/obj/structure/railing, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/machinery/light/blacklight/directional/west, +/obj/effect/spawner/random/entertainment/arcade{ + dir = 4 + }, +/turf/open/floor/wood/parquet, +/area/station/common/night_club) +"rvk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/firecloset, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/lesser) +"rvw" = ( +/obj/structure/window/spawner/directional/east, +/obj/structure/window/spawner/directional/north, +/obj/effect/turf_decal/bot, +/obj/machinery/mineral/stacking_machine{ + input_dir = 2 + }, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/disposal) +"rvJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/machinery/duct, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical) +"rvY" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Port Mix to Engine" + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"rwg" = ( +/obj/machinery/firealarm/directional/east, +/obj/structure/closet/firecloset, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"rwr" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/textured, +/area/station/medical/break_room) +"rwT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/atmos) +"rwV" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/maintenance/disposal/incinerator) +"rxe" = ( +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/turf/open/floor/iron/textured_large, +/area/station/engineering/storage) +"rxu" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/lesser) +"rxO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet, +/area/station/security/courtroom) +"rxV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet) +"ryo" = ( +/turf/open/floor/engine{ + name = "Holodeck Projector Floor" + }, +/area/station/holodeck/rec_center) +"ryt" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/reagent_containers/blood/random{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/random{ + pixel_x = -4; + pixel_y = -4 + }, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/greater) +"ryw" = ( +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/department/medical/central) +"ryE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/aft/upper) +"ryF" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 8 + }, +/turf/open/floor/cult, +/area/station/service/library) +"ryN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/requests_console/directional/east{ + department = "Law Office"; + name = "Law Office Requests Console" + }, +/turf/open/floor/iron/grimy, +/area/station/service/lawoffice) +"ryU" = ( +/obj/effect/landmark/start/botanist, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 8 + }, +/turf/open/floor/iron/large, +/area/station/service/hydroponics) +"ryV" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/white/textured_large, +/area/station/hallway/primary/fore) +"ryX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/trash_pile, +/obj/machinery/light/small/directional/west, +/turf/open/floor/iron/textured, +/area/station/maintenance/port) +"rzd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/station/command/heads_quarters/nt_rep) +"rzh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/station/maintenance/port/aft) +"rzo" = ( +/obj/structure/cable, +/turf/open/floor/circuit/green, +/area/station/engineering/storage/tech) +"rzr" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/textured_large, +/area/station/hallway/primary/aft) +"rzB" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/spawner/random/structure/table_or_rack, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/science/xenobiology) +"rzK" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"rzR" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/atmos) +"rzT" = ( +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/station/maintenance/aft) +"rAh" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/telecomms/server/presets/engineering, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/station/tcommsat/server) +"rAk" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/machinery/camera/directional/north{ + c_tag = "Solar - Fore Starboard"; + name = "solar camera" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/solars/starboard/fore) +"rAp" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hop) +"rAD" = ( +/obj/machinery/status_display/evac/directional/east, +/obj/machinery/newscaster/directional/south, +/obj/effect/turf_decal/bot, +/obj/structure/aquarium/lawyer, +/turf/open/floor/iron/grimy, +/area/station/service/lawoffice) +"rAU" = ( +/turf/closed/wall, +/area/station/engineering/main) +"rAV" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/iron/dark/textured, +/area/station/security/holding_cell) +"rAW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hop) +"rBd" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external/glass{ + name = "Supply Door Airlock" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/turf/open/floor/catwalk_floor, +/area/station/cargo/storage) +"rBo" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/glass/reinforced, +/area/station/medical/medbay/central) +"rBy" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/aft) +"rBA" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/vg_decals/department/sec, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/secondary/command) +"rBD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/medical/medbay/central) +"rBF" = ( +/obj/effect/turf_decal/trimline/dark_red/warning{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"rBO" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/freezer, +/area/station/security/checkpoint/medical) +"rBP" = ( +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + dir = 8; + name = "blue line" + }, +/obj/effect/turf_decal/trimline/blue/line, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/mid_joiner, +/obj/effect/turf_decal/trimline/blue/mid_joiner{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/prison) +"rCi" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/neutral/filled/warning, +/obj/effect/turf_decal/trimline/neutral/filled/warning, +/obj/effect/turf_decal/trimline/neutral/filled/warning, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall24"; + location = "hall23" + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/hallway/secondary/command) +"rCm" = ( +/turf/closed/wall, +/area/station/maintenance/department/security/brig) +"rCq" = ( +/obj/item/radio/intercom/directional/south, +/obj/structure/table/reinforced, +/obj/effect/spawner/random/food_or_drink/donkpockets{ + pixel_y = 5 + }, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/storage) +"rCr" = ( +/obj/structure/sign/painting/library_secure{ + pixel_y = 32 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/grimy, +/area/station/service/library) +"rCu" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood/large, +/area/station/service/library) +"rCy" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Xtestlab"; + name = "Test Chamber Blast Door" + }, +/obj/effect/decal/cleanable/blood/xtracks, +/obj/item/toy/toy_xeno, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/window/brigdoor/left/directional/north{ + name = "Secure Creature Pen"; + req_access = list("xenobiology") + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"rCB" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/airlock/public/glass{ + name = "Aft Central Primary Hallway" + }, +/turf/open/floor/iron/textured_large, +/area/station/commons/dorms) +"rCD" = ( +/obj/structure/table/wood, +/obj/item/camera_film{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/camera_film, +/obj/structure/window/spawner/directional/west, +/turf/open/floor/carpet, +/area/station/service/library) +"rCQ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/security/prison) +"rCY" = ( +/obj/effect/turf_decal/tile/green/half{ + dir = 8 + }, +/obj/structure/sink/directional/west, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/service/hydroponics/garden) +"rDa" = ( +/obj/structure/closet/secure_closet/psychology, +/obj/item/storage/pill_bottle/happinesspsych, +/obj/item/storage/pill_bottle/lsdpsych, +/obj/item/storage/pill_bottle/mannitol, +/obj/item/storage/pill_bottle/neurine, +/obj/item/storage/pill_bottle/paxpsych, +/obj/item/storage/pill_bottle/psicodine, +/obj/machinery/requests_console/auto_name/directional/north, +/obj/effect/turf_decal/bot, +/turf/open/floor/carpet, +/area/station/medical/psychology) +"rDl" = ( +/obj/structure/transit_tube/horizontal, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"rDm" = ( +/obj/effect/turf_decal/trimline/dark_red/filled/line, +/obj/structure/sign/poster/random/directional/south, +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/secondary/construction) +"rDo" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/obj/effect/turf_decal/siding/green{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"rDp" = ( +/turf/closed/wall/r_wall, +/area/station/ai_monitored/turret_protected/ai) +"rDr" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/lobby) +"rDu" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/hallway/secondary/command) +"rDz" = ( +/obj/structure/grille, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/electric_shock/directional/east, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/aft) +"rDL" = ( +/obj/structure/chair/sofa/corp/right, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/landmark/start/chemist, +/turf/open/floor/iron/dark/textured, +/area/station/medical/break_room) +"rDO" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/command/captain, +/obj/machinery/door/airlock/corporate{ + id_tag = "BSdoor"; + name = "Blueshield's Office" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/blueshield) +"rDP" = ( +/obj/machinery/computer/shuttle/mining{ + dir = 1; + req_access = null + }, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/construction/mining/aux_base) +"rDU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"rEe" = ( +/obj/machinery/status_display/evac/directional/west, +/obj/effect/turf_decal/siding/wood/end{ + dir = 1 + }, +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_large, +/area/station/command/heads_quarters/qm) +"rEk" = ( +/obj/effect/turf_decal/box, +/obj/machinery/atmospherics/components/unary/thermomachine/heater/on, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"rET" = ( +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/hallway/secondary/entry) +"rEV" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"rEW" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/engineering/atmos/storage) +"rFe" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/small/directional/north, +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"rFl" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/medical/medbay/lobby) +"rFo" = ( +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/hallway/primary/aft) +"rFx" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/carpet/blue, +/area/station/command/bridge) +"rFA" = ( +/obj/structure/table/wood/fancy, +/obj/item/storage/box/bodybags{ + pixel_y = 4 + }, +/turf/open/floor/pod/dark, +/area/station/service/chapel/office) +"rFB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/girder, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/crew_quarters/bar) +"rFD" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/medical/medbay/central) +"rFE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/station/security/courtroom) +"rFG" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 11; + height = 22; + name = "SS13: Auxiliary Dock, Station-Fore"; + shuttle_id = "whiteship_home"; + width = 35 + }, +/turf/open/space/basic, +/area/space/nearstation) +"rGi" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/grass, +/area/station/service/chapel) +"rGo" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/engineering_personal, +/obj/machinery/light/small/directional/south, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/storage) +"rGr" = ( +/obj/machinery/door/airlock/bathroom{ + name = "Captain's Restroom" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/freezer, +/area/station/command/heads_quarters/captain/private) +"rGH" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/medical/medbay/central) +"rGQ" = ( +/obj/structure/rack, +/obj/item/wrench, +/obj/item/crowbar, +/obj/item/watertank, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/service/hydroponics) +"rHc" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/security/prison) +"rHw" = ( +/obj/effect/turf_decal/trimline/dark_red/arrow_cw{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central) +"rHH" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/mid_joiner{ + dir = 1 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/storage) +"rHL" = ( +/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/effect/landmark/event_spawn, +/turf/open/floor/circuit/green, +/area/station/science/xenobiology) +"rHN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/ce) +"rHR" = ( +/obj/effect/turf_decal/trimline/yellow/filled/end{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/end{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos/hfr_room) +"rHX" = ( +/obj/effect/turf_decal/siding/green/corner{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"rIe" = ( +/obj/structure/trash_pile, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/greater) +"rIj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Owl Office" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/engine/atmos) +"rIq" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/obj/structure/sign/poster/official/periodic_table/directional/north, +/obj/machinery/light/cold/directional/north, +/obj/structure/table/reinforced/rglass, +/obj/machinery/reagentgrinder{ + pixel_y = 7 + }, +/obj/item/ph_booklet{ + pixel_x = -7; + pixel_y = -2 + }, +/obj/item/stack/sheet/mineral/plasma{ + pixel_y = -5; + pixel_x = 2 + }, +/turf/open/floor/iron/freezer, +/area/station/medical/pharmacy) +"rIF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/security/brig) +"rIN" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/machinery/smartfridge/organ, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"rIQ" = ( +/obj/machinery/airalarm/directional/south, +/turf/open/floor/wood/large, +/area/station/service/barber) +"rIU" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark/end{ + dir = 4 + }, +/obj/structure/drain, +/obj/machinery/shower/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/checker, +/area/station/science/lab) +"rJa" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/department/engine/atmos) +"rJe" = ( +/obj/effect/turf_decal/vg_decals/atmos/carbon_dioxide, +/turf/open/floor/engine/co2, +/area/station/engineering/atmos) +"rJf" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/warehouse) +"rJi" = ( +/obj/effect/turf_decal/siding/thinplating/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"rJo" = ( +/obj/machinery/light/neon_lining{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/camera/directional/west{ + c_tag = "Science - Xenobiology, Pen 6"; + name = "xenobiology camera"; + network = list("ss13","rd","xeno") + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"rJK" = ( +/obj/structure/flora/ocean/longseaweed, +/obj/effect/spawner/liquids_spawner{ + reagent_list = list(/datum/reagent/water=600) + }, +/turf/open/misc/asteroid, +/area/station/commons/dorms) +"rJY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/iron/textured_large, +/area/station/command/cc_dock) +"rKd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/textured_large, +/area/station/science/ordnance/office) +"rKf" = ( +/obj/item/target, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/end, +/obj/structure/window/reinforced/spawner/directional/north, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"rKu" = ( +/obj/structure/frame/computer, +/turf/open/floor/iron/textured_large, +/area/station/hallway/secondary/construction) +"rKD" = ( +/turf/open/floor/iron/textured_large, +/area/station/security/execution/transfer) +"rKG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm/directional/west, +/obj/item/stack/sheet/glass{ + amount = 20; + pixel_x = -3; + pixel_y = 6 + }, +/obj/item/stack/sheet/iron/twenty, +/obj/structure/rack, +/obj/effect/spawner/random/entertainment/money, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/science/research/abandoned) +"rKH" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/aft) +"rKL" = ( +/obj/structure/chair/sofa/corp/right{ + color = "#DE3A3A"; + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/cafeteria, +/area/station/service/cafeteria) +"rKM" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/security/greater) +"rKU" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/box, +/turf/open/floor/pod, +/area/station/service/chapel/funeral) +"rKZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/corner{ + dir = 8 + }, +/area/station/hallway/primary/central) +"rLl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/hallway/secondary/command) +"rLn" = ( +/obj/machinery/power/shuttle_engine/huge{ + dir = 8 + }, +/turf/open/space/basic, +/area/space/nearstation) +"rLq" = ( +/obj/effect/turf_decal/trimline/green/arrow_cw{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/box, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/small, +/area/station/commons/dorms) +"rLt" = ( +/obj/item/flashlight/lantern, +/turf/open/floor/iron/chapel{ + dir = 6 + }, +/area/station/service/chapel) +"rLB" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/freezer, +/area/station/security/checkpoint/medical) +"rLH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research/glass{ + name = "Pharmacy" + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/obj/effect/mapping_helpers/airlock/access/any/medical/chemistry, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"rLK" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/public/glass{ + name = "Aft Central Primary Hallway" + }, +/turf/open/floor/iron/large, +/area/station/commons/fitness/recreation) +"rLZ" = ( +/obj/structure/frame/computer{ + anchored = 1; + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/bot, +/obj/item/shard, +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/greater) +"rMc" = ( +/obj/structure/chair/office/light, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/purple, +/area/station/command/heads_quarters/rd) +"rMh" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/effect/turf_decal/trimline/green/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/mid_joiner{ + dir = 1 + }, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/service/hydroponics) +"rMk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/lesser) +"rMr" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"rMu" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/iv_drip, +/obj/machinery/duct, +/turf/open/floor/iron/freezer, +/area/station/medical/treatment_center) +"rMv" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "mining"; + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/cargo/miningdock) +"rMB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/closet/firecloset/wall{ + pixel_y = -32 + }, +/obj/effect/landmark/start/janitor, +/obj/effect/turf_decal/trimline/white/end{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/turf/open/floor/iron/diagonal, +/area/station/hallway/secondary/service) +"rMN" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/department/science/xenobiology) +"rNk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/grimy, +/area/station/security/detectives_office) +"rNy" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/obj/effect/turf_decal/trimline/purple/filled/corner, +/turf/open/floor/iron/white/side{ + dir = 9 + }, +/area/station/science/lab) +"rNC" = ( +/turf/open/floor/iron/textured, +/area/station/hallway/secondary/entry) +"rNH" = ( +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/white/diagonal, +/area/station/medical/medbay/central) +"rOa" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + id_tag = "innerbrig"; + name = "Brig" + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "brig-entrance-aft" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/entrance, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/brig) +"rOd" = ( +/obj/structure/closet/emcloset/wall{ + pixel_y = 32 + }, +/obj/effect/turf_decal/trimline/white/end, +/obj/effect/turf_decal/trimline/white/mid_joiner, +/turf/open/floor/iron/textured_edge, +/area/station/hallway/secondary/entry) +"rOe" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Cargo Maintenance" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/lesser) +"rOi" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/artifact_spawner, +/turf/open/floor/engine, +/area/station/science/explab) +"rOl" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"rOA" = ( +/turf/open/floor/glass/reinforced, +/area/station/science/research) +"rOB" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/textured_corner{ + dir = 1 + }, +/area/station/medical/medbay/central) +"rOM" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"rOQ" = ( +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine/atmos) +"rPp" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/white/textured_large, +/area/station/hallway/primary/fore) +"rPq" = ( +/turf/open/floor/glass/reinforced, +/area/station/security/execution/transfer) +"rPr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance/external/glass{ + name = "Space Bridge Access" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/port/fore) +"rPx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical/central) +"rPI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/warm/directional/south, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/iron/herringbone, +/area/station/service/theater) +"rPY" = ( +/turf/closed/wall/mineral/plastitanium, +/area/station/medical/medbay/central) +"rQb" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/machinery/camera/directional/north{ + c_tag = "Solar - Aft Starboard"; + name = "solar camera" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/solars/starboard/aft) +"rQf" = ( +/obj/machinery/atmospherics/components/binary/pump, +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/science/ordnance) +"rQi" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/duct, +/turf/open/floor/iron/freezer, +/area/station/medical/treatment_center) +"rQj" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/textured_edge, +/area/station/hallway/secondary/entry) +"rQk" = ( +/obj/machinery/computer/shuttle/labor{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/purple/fourcorners, +/turf/open/floor/iron/dark/textured, +/area/station/security/corrections_officer) +"rQr" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/science/research) +"rQA" = ( +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + dir = 1; + name = "blue line" + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/mid_joiner{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/prison) +"rQC" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/arrows/white{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood, +/area/station/hallway/secondary/entry) +"rQI" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/kitchen{ + dir = 1 + }, +/area/station/security/prison/work) +"rQO" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/main) +"rQZ" = ( +/obj/machinery/vending/engivend, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/main) +"rRe" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/hallway/primary/central) +"rRp" = ( +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Firing Range Maintenance" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/security/range) +"rRL" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/atmos/pumproom) +"rRS" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge, +/area/station/cargo/office) +"rRU" = ( +/obj/structure/window/spawner/directional/east, +/obj/structure/window/spawner/directional/north, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/machinery/vending/autodrobe/all_access, +/turf/open/floor/wood/large, +/area/station/commons/fitness/recreation/entertainment) +"rSu" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 9 + }, +/obj/machinery/vending/coffee, +/turf/open/space/basic, +/area/space/nearstation) +"rSz" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/pod/dark, +/area/station/engineering/storage/tech) +"rSB" = ( +/turf/open/floor/carpet/stellar, +/area/station/service/chapel) +"rSE" = ( +/obj/item/stack/cable_coil, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/station/solars/starboard/aft) +"rSG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/port) +"rSW" = ( +/obj/structure/table/glass, +/obj/item/storage/box/beakers, +/obj/item/storage/box/syringes{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/item/clothing/accessory/armband/hydro, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/camera/directional/east{ + c_tag = "Service - Hydroponics Back"; + dir = 6; + name = "service camera" + }, +/obj/effect/turf_decal/bot, +/obj/item/botanical_lexicon, +/obj/item/botanical_lexicon, +/obj/item/botanical_lexicon, +/obj/item/botanical_lexicon, +/obj/item/botanical_lexicon, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/service/hydroponics) +"rSX" = ( +/obj/structure/table, +/obj/item/reagent_containers/condiment/saltshaker{ + desc = "Salt. From space oceans, presumably. A staple of modern medicine."; + pixel_x = 8; + pixel_y = 12 + }, +/obj/item/reagent_containers/condiment/peppermill{ + desc = "Often used to flavor food or make people sneeze. Fashionably moved to the left side of the table."; + pixel_x = 8; + pixel_y = 2 + }, +/obj/effect/spawner/random/food_or_drink/cake_ingredients, +/obj/item/kitchen/rollingpin{ + pixel_x = -4 + }, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"rSZ" = ( +/obj/item/kirbyplants/random, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron/textured, +/area/station/hallway/secondary/entry) +"rTd" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/engineering_guide{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/book/manual/wiki/engineering_hacking{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/item/book/manual/wiki/engineering_construction{ + pixel_y = 3 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/lobby) +"rTf" = ( +/obj/machinery/light_switch/directional/north, +/obj/machinery/light/warm/directional/north, +/obj/structure/closet/secure_closet/engineering_chief, +/obj/item/rcl/pre_loaded, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/ce) +"rTp" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/turf/open/floor/iron/dark/textured_corner, +/area/station/hallway/secondary/command) +"rTq" = ( +/obj/structure/chair/stool/directional/west, +/turf/open/floor/iron/large, +/area/station/commons/fitness/recreation/entertainment) +"rTt" = ( +/obj/machinery/porta_turret/ai, +/obj/effect/turf_decal/stripes/white/box, +/obj/structure/sign/nanotrasen{ + pixel_x = -32 + }, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/ai) +"rTu" = ( +/obj/structure/sign/departments/evac, +/turf/closed/wall, +/area/station/hallway/secondary/exit/departure_lounge) +"rTv" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"rTD" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/circuit/green, +/area/station/ai_monitored/command/nuke_storage) +"rTF" = ( +/obj/structure/table, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/science/ordnance_maint) +"rTG" = ( +/obj/machinery/power/shuttle_engine/heater, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/obj/structure/window/reinforced/plasma/spawner/directional/east, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine) +"rTI" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/structure/sign/gym/right{ + pixel_y = 32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/large, +/area/station/commons/fitness/recreation/entertainment) +"rTW" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/structure/table, +/obj/item/storage/toolbox/electrical{ + pixel_y = 5 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -1; + pixel_y = -1 + }, +/obj/item/clothing/glasses/meson/engine, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/engineering/main) +"rTZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/machinery/meter, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"rUb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/cafeteria, +/area/station/service/cafeteria) +"rUf" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistry_shutters"; + name = "Pharmacy Shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/medical/pharmacy) +"rUj" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/obj/machinery/camera/directional/south{ + c_tag = "Fore Primary Hallway - Hub Aft"; + name = "hallway camera" + }, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/hallway/primary/fore) +"rUo" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/barber) +"rUr" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Brig Control" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/armory, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/warden) +"rUz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/secondary/entry) +"rUA" = ( +/obj/structure/curtain/cloth/fancy/mechanical/start_closed{ + desc = "A set of curtains serving as a fancy theater backdrop. They can only be opened by a button."; + id = "theater_curtains"; + name = "Theater Curtains" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/theater) +"rUC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/grunge{ + id_tag = "Cell5Privacy"; + name = "Cell 5" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/prison) +"rUE" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/lesser) +"rUO" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/pump{ + name = "Pure to Mix" + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/atmos) +"rUQ" = ( +/turf/open/floor/carpet/black, +/area/station/commons/dorms) +"rUS" = ( +/obj/effect/turf_decal/trimline/brown/filled/warning, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/cargo/lobby) +"rVl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/machinery/light_switch/directional/east, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/commons/storage/primary) +"rVm" = ( +/obj/structure/table/reinforced, +/obj/item/folder/white{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/structure/desk_bell{ + pixel_x = 7; + pixel_y = 6 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistry_shutters_south"; + name = "Pharmacy Shutters" + }, +/obj/machinery/door/window/left/directional/east{ + name = "Pharmacy Desk"; + req_access = list("pharmacy") + }, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/pharmacy) +"rVq" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L2" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/large, +/area/station/hallway/primary/fore) +"rVw" = ( +/obj/structure/chair/pew, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/security/courtroom) +"rVz" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 10 + }, +/obj/item/kirbyplants/random, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/textured, +/area/station/engineering/power_room) +"rVG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"rWc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/wood/tile, +/area/station/service/bar) +"rWd" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/red/filled/warning, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/security/lockers) +"rWs" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Research Maintenance" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/science/ordnance_maint) +"rWx" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/lesser) +"rWN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/atmos/storage) +"rWS" = ( +/obj/effect/spawner/random/structure/girder, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/lesser) +"rWU" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/turf/open/space/basic, +/area/space/nearstation) +"rWZ" = ( +/obj/structure/window/spawner/directional/north, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/commons/fitness/recreation/entertainment) +"rXo" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"rXp" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/tile/red/diagonal_centre, +/turf/open/floor/iron/dark/diagonal, +/area/station/hallway/secondary/exit/departure_lounge) +"rXt" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured_corner, +/area/station/hallway/primary/aft) +"rXv" = ( +/turf/closed/wall, +/area/station/medical/treatment_center) +"rXD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"rXI" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/grimy, +/area/station/service/library) +"rXL" = ( +/obj/effect/spawner/random/trash/garbage, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/bar) +"rXU" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"rYm" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/hallway/primary/aft) +"rYt" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/field/generator, +/turf/open/floor/engine, +/area/station/engineering/main) +"rYw" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/box, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/textured_large, +/area/station/hallway/primary/aft) +"rYy" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine) +"rYL" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/poster/official/random/directional/east, +/obj/effect/landmark/start/hangover, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/hallway/primary/aft) +"rYT" = ( +/obj/item/robot_suit, +/turf/open/floor/plating, +/area/station/science/research/abandoned) +"rYX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/aft/upper) +"rZw" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Power Monitoring" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/textured_large, +/area/station/engineering/power_room) +"rZz" = ( +/obj/machinery/camera/directional/east, +/turf/open/floor/iron/textured_large, +/area/station/cargo/miningdock) +"rZI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/security/prison) +"rZT" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/main) +"sah" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/security/courtroom) +"sak" = ( +/turf/closed/wall, +/area/station/service/library/abandoned) +"saw" = ( +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 10 + }, +/obj/machinery/light_switch/directional/west, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/large, +/area/station/commons/vacant_room/commissary) +"saA" = ( +/obj/structure/plaque/static_plaque/atmos, +/turf/closed/wall, +/area/station/engineering/atmos) +"saE" = ( +/turf/open/floor/iron/stairs/medium{ + dir = 8 + }, +/area/station/science/research) +"saF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/engineering/supermatter/room) +"saR" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"saU" = ( +/obj/machinery/computer/records/medical/laptop{ + pixel_y = 1 + }, +/obj/structure/table, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 5 + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/iron/white, +/area/station/science/genetics) +"sbv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/effect/turf_decal/tile/red/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/commons/lounge) +"sbH" = ( +/obj/effect/turf_decal/nova_decals/enclave/bottom/middle{ + color = "#52B4E9" + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/mid_joiner{ + dir = 1 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/lobby) +"sbU" = ( +/obj/machinery/power/smes, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/solars/port/aft) +"scd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/cable/layer3, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/circuit/green, +/area/station/ai_monitored/turret_protected/ai) +"scu" = ( +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"scE" = ( +/obj/effect/turf_decal/trimline/dark_green/filled/line{ + dir = 6 + }, +/obj/machinery/light_switch/directional/south, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/virology) +"scI" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/circuitboard/computer/secure_data, +/obj/item/circuitboard/computer/operating, +/obj/machinery/light/small/broken/directional/north, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/fore) +"scK" = ( +/obj/structure/window/spawner/directional/north, +/obj/structure/window/spawner/directional/east, +/obj/structure/flora/bush/sparsegrass, +/obj/structure/flora/bush/flowers_yw/style_2, +/turf/open/floor/grass, +/area/station/hallway/secondary/exit/departure_lounge) +"scP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/aft/greater) +"scQ" = ( +/obj/item/radio/intercom/directional/east, +/turf/open/floor/carpet/purple, +/area/station/common/night_club) +"scX" = ( +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/corner{ + dir = 4 + }, +/area/station/hallway/primary/central) +"sdb" = ( +/obj/effect/mapping_helpers/burnt_floor, +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/effect/spawner/random/maintenance, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/lesser) +"sdd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 9 + }, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"sdh" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Commissary Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/commons/vacant_room) +"sdi" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/item/target, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"sdl" = ( +/obj/effect/landmark/start/cook, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"sdt" = ( +/obj/docking_port/stationary/laborcamp_home{ + dir = 8 + }, +/turf/open/space/basic, +/area/space/nearstation) +"sdR" = ( +/obj/item/book/manual/nuclear, +/turf/open/floor/plating/foam{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"sea" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/telecomms/message_server/preset, +/obj/structure/cable, +/turf/open/floor/circuit/telecomms/server, +/area/station/tcommsat/server) +"see" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/crew_quarters/bar) +"seo" = ( +/obj/machinery/mech_bay_recharge_port{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/circuit/red, +/area/station/science/robotics/mechbay) +"set" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/command) +"sez" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/closet/lasertag/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/landmark/start/hangover/closet, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/edge, +/area/station/commons/fitness/recreation) +"seE" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/science/xenobiology) +"seH" = ( +/obj/machinery/light/warm/directional/west, +/obj/structure/sign/painting/library{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/camera/directional/west{ + c_tag = "Bridge - Consultant's Office"; + name = "command camera" + }, +/turf/open/floor/carpet/green, +/area/station/command/heads_quarters/nt_rep) +"sfc" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/hallway/primary/central) +"sfj" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"sfk" = ( +/obj/machinery/door/airlock/external{ + name = "Departure Shuttle Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/catwalk_floor, +/area/station/hallway/secondary/exit/departure_lounge) +"sfo" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/machinery/light_switch/directional/west, +/obj/structure/table, +/obj/item/clothing/suit/hazardvest, +/obj/item/pipe_dispenser, +/obj/item/clothing/glasses/meson/engine, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/power_room) +"sfv" = ( +/obj/structure/table/wood/fancy/green, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/flashlight/lamp/green{ + pixel_x = 7; + pixel_y = 10 + }, +/turf/open/floor/carpet/green, +/area/station/command/heads_quarters/nt_rep) +"sfx" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/landmark/start/virologist, +/turf/open/floor/iron/dark/textured, +/area/station/medical/break_room) +"sfG" = ( +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/corner{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"sfU" = ( +/obj/machinery/firealarm/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/red/line, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"sga" = ( +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/cargo/lobby) +"sgf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Transit Tube Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/minisat, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/landmark/navigate_destination/minisat_access_ai, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/transit_tube) +"sgh" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/large, +/area/station/commons/fitness/recreation) +"sgi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/iron/sepia, +/area/station/service/library) +"sgk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/closet_empty/crate, +/obj/effect/spawner/random/maintenance/three, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"sgl" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/cargo/miningoffice) +"sgn" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 1; + id = "briglockdown"; + name = "Warden Desk Shutters" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/warden) +"sgq" = ( +/obj/effect/mapping_helpers/airlock/access/all/service/janitor, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/dark/fourcorners, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/service{ + name = "Custodial Closet" + }, +/obj/effect/landmark/navigate_destination/janitor, +/turf/open/floor/noslip, +/area/station/service/janitor) +"sgt" = ( +/turf/open/floor/circuit/green, +/area/station/ai_monitored/turret_protected/ai) +"sgA" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/large, +/area/station/hallway/primary/fore) +"sgB" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/carpet/blue, +/area/station/command/heads_quarters/cmo) +"sgD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/large, +/area/station/hallway/primary/central/aft) +"sgE" = ( +/obj/structure/chair/stool/directional/west, +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/effect/turf_decal/tile/red/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/commons/lounge) +"sgG" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/white/textured_edge, +/area/station/science/research) +"shd" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/duct, +/turf/open/floor/iron/white/textured_large, +/area/station/science/xenobiology) +"shi" = ( +/obj/machinery/light/blacklight/directional/south, +/obj/structure/sign/poster/contraband/energy_swords/directional/south, +/turf/open/floor/light/colour_cycle/dancefloor_b, +/area/station/common/night_club) +"shj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/large, +/area/station/commons/storage/primary) +"shk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/structure/sign/poster/official/random/directional/west, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/hallway/secondary/command) +"shm" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/airalarm/directional/north, +/obj/structure/reagent_dispensers/water_cooler, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Medbay - Central Hallway"; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/turf/open/floor/iron/white/textured_edge, +/area/station/medical/medbay/central) +"shC" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/security/checkpoint/supply) +"shE" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"shJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain/bounty/start_closed, +/turf/open/floor/plating, +/area/station/bitrunning/den) +"shM" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"shV" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/medical/surgery) +"shZ" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/large, +/area/station/hallway/primary/central/aft) +"sid" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/turf/open/floor/iron/kitchen, +/area/station/security/prison/mess) +"sig" = ( +/obj/machinery/corral_corner{ + mapping_id = "2" + }, +/obj/machinery/light/neon_lining{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"siw" = ( +/obj/effect/turf_decal/siding/thinplating/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"siO" = ( +/turf/open/space, +/area/space) +"siT" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/science/ordnance/storage) +"sje" = ( +/obj/structure/railing{ + pixel_y = -5 + }, +/turf/open/floor/engine, +/area/station/science/auxlab/firing_range) +"sjl" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/item/radio/intercom/prison/directional/south, +/turf/open/floor/iron/kitchen, +/area/station/security/prison/mess) +"sjw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/fore) +"sjC" = ( +/obj/structure/table/wood, +/obj/item/food/chips, +/obj/item/reagent_containers/cup/soda_cans/cola, +/obj/machinery/pollution_scrubber{ + pixel_x = 6; + pixel_y = 1 + }, +/turf/open/floor/carpet/green, +/area/station/commons/dorms) +"sjE" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 9 + }, +/obj/machinery/light/warm/directional/north, +/obj/machinery/disposal/bin, +/obj/machinery/computer/security/telescreen/entertainment/directional/north, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) +"sjR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/crew_quarters/bar) +"sjV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/medical/medbay/central) +"sjW" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/sorting/mail{ + dir = 1; + name = "Janitor Junction" + }, +/obj/effect/mapping_helpers/mail_sorting/service/janitor_closet, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"ska" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/eva_shed/port) +"skf" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 6 + }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/machinery/light_switch/directional/east{ + pixel_y = 16 + }, +/obj/item/assembly/signaler{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/machinery/firealarm/directional/east{ + pixel_y = -13; + dir = 4; + pixel_x = 21 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/iron/white, +/area/station/science/explab) +"skC" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/hallway/secondary/exit/departure_lounge) +"skL" = ( +/obj/effect/turf_decal/tile/blue/full, +/obj/structure/sign/flag/nanotrasen/directional/north, +/turf/open/floor/iron/airless{ + icon_state = "dark_large" + }, +/area/space/nearstation) +"skP" = ( +/obj/structure/closet/crate/hydroponics, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/fore) +"sle" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/cargo/storage) +"sly" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/large, +/area/station/hallway/primary/fore) +"slJ" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/structure/closet/emcloset/wall{ + pixel_y = -32 + }, +/obj/effect/turf_decal/trimline/white/end{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/fore) +"slK" = ( +/obj/structure/chair/sofa/middle/brown, +/turf/open/floor/carpet/green, +/area/station/commons/dorms) +"slL" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/siding/green/corner, +/turf/open/floor/iron/edge, +/area/station/service/hydroponics) +"slM" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"slS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Orderly's Office" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/security/checkpoint/medical) +"sma" = ( +/obj/structure/table/wood, +/obj/item/clipboard{ + pixel_y = 3 + }, +/obj/item/folder{ + pixel_y = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/newscaster/directional/north{ + pixel_x = 9 + }, +/turf/open/floor/wood/large, +/area/station/science/research) +"smp" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/commons/fitness/recreation/entertainment) +"sms" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/line{ + dir = 1 + }, +/turf/open/floor/iron/white/side, +/area/station/science/research) +"smE" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/teal, +/turf/open/space/basic, +/area/space/nearstation) +"smV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured_large, +/area/station/engineering/lobby) +"snc" = ( +/obj/structure/trash_pile, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/fore) +"snm" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 6 + }, +/obj/structure/closet/firecloset/wall{ + pixel_x = 32 + }, +/obj/effect/turf_decal/trimline/white/end{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/secondary/command) +"snv" = ( +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Fore Primary Hallway Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/science/robotics/mechbay) +"sny" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/storage) +"snC" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/kitchen{ + dir = 1 + }, +/area/station/security/prison/work) +"snJ" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/item/radio/intercom/directional/west, +/obj/structure/sink/directional/east, +/turf/open/floor/iron/freezer, +/area/station/security/checkpoint/medical) +"snO" = ( +/obj/machinery/chem_dispenser/drinks{ + dir = 4 + }, +/obj/structure/table/wood/fancy/black, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/iron, +/area/station/service/bar) +"snP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/button/crematorium{ + id = "crematoriumChapel"; + pixel_x = 25 + }, +/turf/open/floor/pod/dark, +/area/station/service/chapel/office) +"snR" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/item/stack/sheet/iron/fifty{ + pixel_x = 4 + }, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = -4 + }, +/obj/item/stack/rods/fifty, +/obj/structure/cable, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/lobby) +"snS" = ( +/obj/machinery/vending/wardrobe/engi_wardrobe, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/main) +"snT" = ( +/obj/structure/closet/secure_closet/atmospherics, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/disposal/incinerator) +"sop" = ( +/obj/item/stack/cable_coil, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/station/solars/starboard/fore) +"sor" = ( +/obj/structure/chair/office{ + color = "#D381C9"; + dir = 1 + }, +/obj/effect/landmark/start/research_director, +/obj/structure/cable, +/obj/machinery/button/door/directional/south{ + id = "rdoffice"; + name = "Privacy Control"; + pixel_x = -8; + req_access = list("rd") + }, +/obj/machinery/light/directional/south, +/turf/open/floor/carpet/purple, +/area/station/command/heads_quarters/rd) +"soI" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/spawner/random/trash/garbage, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/central) +"soM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access = list("command") + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "bridge-left" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridgedoors"; + name = "Bridge Access Blast Door" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/effect/landmark/navigate_destination/bridge, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"soS" = ( +/obj/structure/dresser, +/obj/item/toy/figure/hos{ + pixel_x = -7; + pixel_y = 13 + }, +/obj/item/storage/pill_bottle/mannitol{ + pixel_x = 7; + pixel_y = 14 + }, +/turf/open/floor/carpet/royalblack, +/area/station/command/heads_quarters/hos) +"soY" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/medical/virology) +"soZ" = ( +/obj/effect/turf_decal/nova_decals/enclave/top/middle{ + color = "#52B4E9" + }, +/obj/effect/turf_decal/trimline/blue/line, +/obj/effect/turf_decal/trimline/blue/mid_joiner, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/command) +"spi" = ( +/obj/structure/table, +/obj/item/flashlight{ + pixel_y = 5 + }, +/obj/item/flashlight{ + pixel_y = 5 + }, +/obj/item/flashlight{ + pixel_y = 5 + }, +/obj/item/radio/off{ + pixel_y = 5 + }, +/obj/item/radio/off{ + pixel_y = 5 + }, +/obj/item/radio/off{ + pixel_y = 5 + }, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/turf/open/floor/iron/diagonal, +/area/station/hallway/secondary/exit/departure_lounge) +"spn" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/structure/chair/sofa/corp/right{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/mess) +"spp" = ( +/obj/structure/trash_pile, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/aft) +"spr" = ( +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/siding/green/corner, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"spv" = ( +/obj/item/mmi, +/obj/item/mmi, +/obj/item/bodypart/chest/robot, +/obj/structure/rack, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/effect/turf_decal/bot, +/turf/open/floor/pod/dark, +/area/station/engineering/storage/tech) +"spA" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/atmos/storage/gas) +"spB" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/medical/break_room) +"spI" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/grassy, +/obj/structure/flora/bush/sunny, +/obj/structure/flora/bush/flowers_pp, +/obj/structure/window/reinforced/fulltile, +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "consultant"; + name = "curtain" + }, +/turf/open/floor/grass, +/area/station/command/heads_quarters/nt_rep) +"spQ" = ( +/obj/item/stack/sheet/iron/fifty{ + pixel_y = 3 + }, +/obj/item/storage/toolbox/mechanical, +/obj/item/gps, +/obj/structure/table/reinforced, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/command/storage/eva) +"sqd" = ( +/obj/structure/railing{ + pixel_y = -5 + }, +/mob/living/basic/chicken/brown{ + forced_gender = "male" + }, +/turf/open/floor/grass, +/area/station/service/hydroponics/upper) +"sqo" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start/virologist, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/virology) +"sqD" = ( +/obj/structure/table/optable, +/obj/effect/turf_decal/tile/blue/full, +/obj/machinery/button/door/directional/east{ + id = "surgery"; + name = "Privacy Shutters Control"; + pixel_y = -7 + }, +/obj/machinery/defibrillator_mount/directional/east{ + pixel_y = 4 + }, +/obj/effect/turf_decal/box/blue, +/turf/open/floor/iron/freezer, +/area/station/medical/surgery) +"sqJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/engine/atmos) +"sqQ" = ( +/obj/machinery/power/solar{ + id = "aftport"; + name = "Aft-Port Solar Array" + }, +/obj/structure/cable, +/turf/open/floor/iron/solarpanel/airless, +/area/station/solars/port/fore) +"srd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/hallway/secondary/command) +"sre" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/cup/bottle/morphine, +/obj/item/reagent_containers/cup/bottle/toxin{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/reagent_containers/cup/bottle/epinephrine{ + pixel_x = 8 + }, +/obj/item/reagent_containers/cup/bottle/multiver{ + pixel_x = -5 + }, +/obj/item/reagent_containers/syringe/epinephrine, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistry_shutters"; + name = "Pharmacy Shutters" + }, +/obj/machinery/door/window/right/directional/west{ + name = "Pharmacy Desk"; + req_access = list("pharmacy") + }, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/pharmacy) +"srk" = ( +/obj/effect/landmark/start/prisoner, +/turf/open/floor/iron/dark/small, +/area/station/security/prison/work) +"srC" = ( +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical/morgue) +"srG" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"srL" = ( +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/item/stack/spacecash/c1{ + pixel_y = 9 + }, +/obj/structure/desk_bell{ + pixel_x = 7 + }, +/obj/item/reagent_containers/cup/rag, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/station/hallway/secondary/entry) +"srV" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8; + name = "Unfiltered & Air to Mix" + }, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"srZ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/entry) +"ssc" = ( +/obj/effect/turf_decal/siding/thinplating/corner{ + dir = 4 + }, +/obj/machinery/light/floor/has_bulb, +/turf/open/misc/beach/sand, +/area/station/hallway/primary/central/fore) +"ssv" = ( +/obj/machinery/door/airlock/research{ + name = "Research Division Access" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "rnd-enterance" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/general, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/landmark/navigate_destination/research, +/turf/open/floor/iron/white/textured_large, +/area/station/science/research) +"ssL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"ssQ" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/gbp_redemption, +/turf/open/floor/iron/textured_edge, +/area/station/cargo/lobby) +"ssU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/department/engine/atmos) +"ssV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/greater) +"stk" = ( +/obj/structure/bed, +/obj/item/bedsheet/red, +/obj/effect/landmark/start/prisoner, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 5 + }, +/obj/machinery/button/curtain{ + id = "Cell2Privacy"; + pixel_x = -4; + pixel_y = 24 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"sts" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/landmark/start/assistant, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/auxlab/firing_range) +"stA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/landmark/start/scientist, +/obj/structure/chair/office/light, +/turf/open/floor/iron/large, +/area/station/science/lab) +"stJ" = ( +/obj/machinery/door/airlock/wood{ + name = "Closet" + }, +/obj/effect/turf_decal/siding/wood/end, +/turf/open/floor/wood, +/area/station/commons/dorms) +"stN" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"sud" = ( +/obj/structure/table, +/obj/machinery/computer/records/medical/laptop, +/obj/structure/noticeboard/directional/west, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/greater) +"sug" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Detective's Office" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/detective, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/poddoor/preopen{ + id = "detectivewindows"; + name = "Detective Privacy Blast Door" + }, +/obj/effect/landmark/navigate_destination/det, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/security/detectives_office) +"sur" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 10 + }, +/obj/structure/window/reinforced/spawner/directional/west{ + layer = 2.9; + pixel_x = -4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"suv" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"suy" = ( +/obj/effect/turf_decal/trimline/green/warning{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/small, +/area/station/commons/dorms) +"suG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/tank_holder, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/lesser) +"suM" = ( +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + name = "Medical Maintenance" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/medical/medbay/lobby) +"svh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/lawyer, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/station/service/lawoffice) +"svj" = ( +/obj/machinery/light/neon_lining{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/camera/directional/east{ + c_tag = "Science - Xenobiology, Pen 2"; + name = "xenobiology camera"; + network = list("ss13","rd","xeno") + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"svC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine/atmos) +"svD" = ( +/obj/machinery/status_display/evac/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/purple, +/area/station/command/heads_quarters/rd) +"svE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Holodeck Door" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "holodeck" + }, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) +"svH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible, +/obj/machinery/meter, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/atmos) +"svT" = ( +/obj/machinery/atmospherics/components/unary/passive_vent{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/station/engineering/supermatter/room) +"svU" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/curtain, +/turf/open/floor/iron/freezer, +/area/station/medical/treatment_center) +"swu" = ( +/obj/structure/sign/warning/vacuum/external/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/pod/dark, +/area/station/service/chapel/office) +"swB" = ( +/obj/effect/turf_decal/siding/thinplating, +/obj/structure/hedge{ + pixel_y = 6 + }, +/obj/structure/window/spawner/directional/south, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/exit/departure_lounge) +"swL" = ( +/obj/structure/table/glass, +/obj/item/storage/box/monkeycubes{ + pixel_x = -5; + pixel_y = 1 + }, +/obj/item/storage/box/monkeycubes{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/machinery/firealarm/directional/south, +/obj/item/vacuum_pack, +/obj/item/vacuum_pack, +/obj/item/vacuum_pack, +/obj/item/vacuum_pack, +/obj/item/vacuum_pack, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/science/xenobiology) +"swP" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/effect/turf_decal/tile/dark_red/half/contrasted{ + dir = 1 + }, +/obj/structure/table, +/obj/machinery/cell_charger{ + pixel_y = 3 + }, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/dark/textured_edge, +/area/station/science/robotics/lab) +"swZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/camera/directional/south{ + c_tag = "Arrivals - Port"; + name = "arrivals camera" + }, +/obj/item/kirbyplants/random, +/obj/machinery/status_display/ai/directional/south, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/secondary/entry) +"sxd" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/security/checkpoint/engineering) +"sxe" = ( +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/hallway/secondary/command) +"sxf" = ( +/obj/machinery/power/shuttle_engine/propulsion, +/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/floor/plating, +/area/space/nearstation) +"sxs" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/effect/turf_decal/trimline/neutral/filled/line, +/obj/effect/turf_decal/trimline/neutral/filled/line, +/obj/effect/turf_decal/trimline/neutral/filled/line, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/hallway/secondary/command) +"sxD" = ( +/obj/structure/disposaloutlet{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"sxJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/mess) +"sxN" = ( +/obj/machinery/firealarm/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/orange, +/area/station/command/heads_quarters/ce) +"syd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/structure/cable, +/obj/machinery/camera/directional/north{ + c_tag = "Engineering Supermatter Aft"; + network = list("ss13","engine"); + pixel_x = 23 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"sye" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/trimline/blue/filled/warning, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/ai_monitored/command/storage/eva) +"syg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/carpet/blue, +/area/station/command/bridge) +"syq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured_large, +/area/station/engineering/power_room) +"sys" = ( +/obj/structure/rack/shelf, +/obj/effect/spawner/random/techstorage/security_all, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/turf/open/floor/pod/dark, +/area/station/engineering/storage/tech) +"syE" = ( +/turf/closed/wall, +/area/station/commons/vacant_room/commissary) +"syJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_large, +/area/station/cargo/lobby) +"syT" = ( +/obj/structure/cable, +/obj/machinery/computer/monitor{ + dir = 8; + name = "backup power monitoring console" + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/fore) +"syV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/brigdoor/right/directional/east{ + name = "Armory Desk"; + req_access = list("armory") + }, +/obj/machinery/door/window/left/directional/west{ + name = "Armory Desk"; + req_access = list("security") + }, +/obj/structure/window/reinforced/spawner/directional/north, +/turf/open/floor/engine, +/area/station/ai_monitored/security/armory) +"szi" = ( +/obj/structure/frame/computer{ + anchored = 1; + dir = 8 + }, +/obj/item/circuitboard/computer/stationalert, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/greater) +"szj" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/lobby) +"szk" = ( +/obj/structure/table, +/obj/machinery/coffeemaker, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron/textured_large, +/area/station/cargo/miningoffice) +"szl" = ( +/obj/machinery/camera/directional/north, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"szx" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/medical/medbay/central) +"sAc" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/turf/open/floor/iron/textured_corner{ + dir = 8 + }, +/area/station/engineering/power_room) +"sAi" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/iron/textured_large, +/area/station/cargo/miningdock) +"sAk" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/pod/dark, +/area/station/service/chapel/funeral) +"sAx" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Engineering Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/poddoor/preopen{ + id = "engielock"; + name = "Engineering Lockdown Blast Door" + }, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/department/engine) +"sAA" = ( +/obj/structure/chair/stool/directional/south, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/grimy, +/area/station/commons/lounge) +"sAL" = ( +/obj/effect/spawner/random/trash/garbage, +/turf/closed/wall/r_wall, +/area/station/maintenance/department/science/xenobiology) +"sAM" = ( +/turf/closed/wall, +/area/station/maintenance/department/medical) +"sBl" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/window/fulltile, +/turf/open/floor/grass, +/area/station/commons/storage/primary) +"sBq" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/atmos/pumproom) +"sBr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/bush/ferny/style_random, +/obj/machinery/growing/soil, +/turf/open/floor/grass, +/area/station/service/hydroponics/garden/abandoned) +"sBt" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_corner, +/area/station/engineering/atmos) +"sBB" = ( +/obj/machinery/computer/prisoner/gulag_teleporter_computer{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/dark_red/diagonal_centre, +/obj/effect/turf_decal/tile/neutral/diagonal_centre, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/execution/transfer) +"sBX" = ( +/obj/structure/table, +/obj/item/assembly/signaler{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/assembly/signaler{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/assembly/signaler{ + pixel_y = 8 + }, +/obj/item/assembly/signaler{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/textured_edge, +/area/station/science/ordnance/testlab) +"sCe" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/theater) +"sCk" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/engine/air, +/area/station/engineering/atmos) +"sCm" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark_blue/end{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue/full, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/blueshield) +"sCw" = ( +/obj/machinery/door/airlock/maintenance_hatch, +/obj/effect/mapping_helpers/airlock/abandoned, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/greater) +"sCG" = ( +/obj/machinery/digital_clock/directional/north{ + pixel_y = 37 + }, +/turf/open/floor/iron/textured_edge, +/area/station/hallway/secondary/entry) +"sCH" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/machinery/newscaster/directional/west, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/item/kirbyplants/random, +/turf/open/floor/wood/large, +/area/station/medical/psychology) +"sCN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/department/security/brig) +"sCQ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/solars/starboard/aft) +"sCR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/greater) +"sCV" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/layer_manifold/yellow/visible{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"sCX" = ( +/obj/effect/turf_decal/trimline/white/mid_joiner, +/obj/machinery/incident_display/delam/directional/north, +/turf/open/floor/iron/textured_edge, +/area/station/hallway/secondary/entry) +"sCZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/mess) +"sDw" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/power_room) +"sDB" = ( +/obj/structure/dresser, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/carpet/black, +/area/station/commons/dorms) +"sDI" = ( +/obj/machinery/power/solar{ + id = "aftport"; + name = "Aft-Port Solar Array" + }, +/obj/structure/cable, +/turf/open/floor/iron/solarpanel/airless, +/area/station/solars/port/aft) +"sDJ" = ( +/obj/machinery/door/airlock{ + id_tag = "Cabin3"; + name = "Cabin 3" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/large, +/area/station/commons/dorms) +"sDL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/table, +/obj/item/clothing/under/rank/civilian/lawyer/black{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/under/rank/civilian/lawyer/black, +/obj/item/clothing/neck/tie/black{ + pixel_x = 6 + }, +/obj/item/clothing/neck/tie/red, +/obj/item/clothing/mask/animal/small/jackal, +/obj/item/clothing/mask/animal/small/jackal, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/greater) +"sDM" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "cargoload" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/poddoor{ + id = 69; + name = "Supply Dock Loading Door" + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/storage) +"sDV" = ( +/obj/structure/toilet{ + pixel_y = 8 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/pod/light, +/area/station/service/chapel) +"sDX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/fore) +"sEa" = ( +/obj/machinery/atmospherics/components/binary/valve/digital{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/science/ordnance/storage) +"sEc" = ( +/obj/structure/chair/sofa/middle/maroon{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"sEd" = ( +/obj/machinery/firealarm/directional/south, +/obj/machinery/light/warm/directional/south, +/obj/effect/turf_decal/bot, +/obj/structure/table, +/obj/item/storage/toolbox/electrical{ + pixel_y = 7 + }, +/obj/item/stock_parts/cell/high{ + pixel_x = -4; + pixel_y = -5 + }, +/obj/item/stock_parts/cell/high{ + pixel_x = 8; + pixel_y = -5 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"sEf" = ( +/turf/closed/wall/mineral/iron, +/area/station/service/chapel) +"sEn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/iron/textured_large, +/area/station/command/cc_dock) +"sEo" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Holodeck - Fore"; + name = "holodeck camera" + }, +/turf/open/floor/engine{ + name = "Holodeck Projector Floor" + }, +/area/station/holodeck/rec_center) +"sEq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "bsa"; + name = "BSA Shutters" + }, +/turf/open/floor/iron/textured_large, +/area/station/hallway/secondary/construction) +"sEs" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/station/engineering/atmos) +"sEz" = ( +/obj/structure/table/reinforced, +/obj/item/electropack, +/obj/item/assembly/signaler, +/obj/item/clothing/head/helmet/sec, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/effect/turf_decal/tile/dark_red/fourcorners, +/turf/open/floor/iron/dark/textured, +/area/station/security/execution/education) +"sEF" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/structure/table/wood, +/obj/machinery/fax{ + fax_name = "Psychology Office"; + name = "Psychology Office Fax Machine"; + pixel_y = 3 + }, +/turf/open/floor/carpet, +/area/station/medical/psychology) +"sEK" = ( +/obj/machinery/door/poddoor/incinerator_atmos_main, +/turf/open/floor/engine, +/area/station/maintenance/disposal/incinerator) +"sEL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Aft Primary Hallway Maintenance" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/greater) +"sEQ" = ( +/obj/structure/table, +/obj/item/storage/box/lights/mixed{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/item/storage/box/lights/mixed{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/item/grenade/chem_grenade/cleaner{ + pixel_x = -7; + pixel_y = 12 + }, +/obj/item/grenade/chem_grenade/cleaner{ + pixel_x = -7; + pixel_y = 12 + }, +/obj/item/grenade/chem_grenade/cleaner{ + pixel_x = -7; + pixel_y = 12 + }, +/obj/item/reagent_containers/spray/cleaner, +/obj/effect/turf_decal/tile/dark/fourcorners, +/obj/machinery/requests_console/directional/south{ + department = "Janitorial"; + name = "Janitor's Request Console" + }, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/turf_decal/trimline/green/filled/line, +/turf/open/floor/noslip, +/area/station/service/janitor) +"sFa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 6 + }, +/turf/open/floor/iron/dark/textured, +/area/station/command/gateway) +"sFi" = ( +/turf/closed/wall, +/area/station/cargo/storage) +"sFk" = ( +/turf/closed/wall, +/area/station/maintenance/solars/starboard/aft) +"sFn" = ( +/obj/structure/table, +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/tile/red/diagonal_centre, +/obj/item/storage/toolbox/emergency{ + pixel_y = -13 + }, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/pen{ + pixel_y = 4 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/hallway/secondary/exit/departure_lounge) +"sFt" = ( +/obj/effect/turf_decal/tile/dark/fourcorners, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 10 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/machinery/disposal/bin, +/turf/open/floor/noslip, +/area/station/service/janitor) +"sFv" = ( +/obj/structure/table, +/obj/item/flashlight/lamp{ + pixel_y = 12 + }, +/obj/item/folder/red{ + pixel_y = -8 + }, +/obj/item/pen{ + pixel_y = -8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/interrogation) +"sFw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/plastic, +/turf/open/floor/glass/reinforced, +/area/station/maintenance/port/fore) +"sFE" = ( +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/solars/port/fore) +"sFN" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access = list("command") + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "bridge-left" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridgedoors"; + name = "Bridge Access Blast Door" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"sFU" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "cargounload" + }, +/obj/structure/plasticflaps, +/turf/open/floor/iron/textured_large, +/area/station/cargo/storage) +"sGa" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, +/turf/open/floor/iron/textured_large, +/area/station/engineering/supermatter/room) +"sGb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/engine) +"sGd" = ( +/obj/machinery/photocopier, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 2; + name = "Genetics Junction" + }, +/obj/effect/turf_decal/bot, +/obj/effect/mapping_helpers/mail_sorting/science/genetics, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/rd) +"sGk" = ( +/obj/structure/sign/poster/contraband/mothic_rations, +/turf/closed/wall, +/area/station/service/kitchen/abandoned) +"sGC" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/security/brig) +"sGF" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/chair{ + dir = 1; + name = "Bailiff" + }, +/turf/open/floor/wood/large, +/area/station/security/courtroom) +"sGH" = ( +/turf/open/floor/iron/dark/textured_large, +/area/station/service/theater) +"sGN" = ( +/turf/open/floor/wood/large, +/area/station/service/library) +"sGQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/textured_large, +/area/station/hallway/primary/aft) +"sHo" = ( +/obj/machinery/camera/directional/east{ + c_tag = "Chapel Office"; + network = list("ss13","monastery") + }, +/turf/open/floor/carpet/stellar, +/area/station/service/chapel/office) +"sHp" = ( +/obj/machinery/plumbing/ooze_sucker{ + mapping_id = "4"; + dir = 1 + }, +/obj/machinery/light/floor/has_bulb, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"sHu" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 9 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"sHv" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/port/greater) +"sHA" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 5 + }, +/obj/effect/landmark/start/paramedic, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"sHC" = ( +/obj/structure/table, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 6 + }, +/obj/item/storage/toolbox/artistic, +/obj/item/camera_film, +/obj/item/camera, +/turf/open/floor/iron, +/area/station/commons/storage/art) +"sHG" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/railing, +/obj/effect/turf_decal/siding/green, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"sHI" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white/small, +/area/station/common/pool) +"sId" = ( +/obj/structure/spider/stickyweb, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/electrical) +"sIj" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"sIy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured_large, +/area/station/command/cc_dock) +"sID" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/aft) +"sIE" = ( +/obj/structure/chair/sofa/bench/left, +/obj/item/radio/intercom/directional/east, +/obj/machinery/requests_console/auto_name/directional/north, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/turf/open/floor/iron/diagonal, +/area/station/hallway/secondary/exit/departure_lounge) +"sIG" = ( +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + dir = 4; + name = "blue line" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/prison) +"sIK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/vg_decals/department/mining, +/turf/open/floor/iron/textured_large, +/area/station/hallway/primary/aft) +"sIL" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/line, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"sIN" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_corner{ + dir = 8 + }, +/area/station/engineering/atmos/storage/gas) +"sIS" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Departures Maintenance" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/greater) +"sIZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/large, +/area/station/hallway/primary/fore) +"sJd" = ( +/turf/closed/wall, +/area/station/commons/vacant_room/office) +"sJg" = ( +/obj/structure/table, +/obj/item/stock_parts/subspace/crystal, +/obj/item/stock_parts/subspace/crystal, +/obj/item/stock_parts/subspace/crystal, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/storage/tcomms) +"sJk" = ( +/obj/effect/landmark/start/clown, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_red/opposingcorners, +/turf/open/floor/iron, +/area/station/service/theater) +"sJl" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 10 + }, +/obj/structure/table, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/machinery/newscaster/directional/west, +/obj/machinery/camera/directional/south{ + c_tag = "Vacant Room" + }, +/turf/open/floor/iron, +/area/station/commons/vacant_room) +"sJy" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/greater) +"sJK" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/obj/structure/table/reinforced, +/obj/item/tank/jetpack/carbondioxide{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/tank/jetpack/carbondioxide, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/iron/textured, +/area/station/engineering/storage) +"sJM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_red/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/sign/warning/vacuum/external/directional/east, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"sJO" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/main) +"sJR" = ( +/obj/item/storage/bag/plants{ + pixel_y = 2 + }, +/obj/item/reagent_containers/cup/watering_can{ + pixel_y = 3 + }, +/obj/machinery/newscaster/directional/south, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/table, +/turf/open/floor/iron/diagonal, +/area/station/hallway/secondary/service) +"sKs" = ( +/obj/effect/spawner/random/structure/steam_vent, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/lesser) +"sKu" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/central) +"sKy" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/machinery/microwave{ + desc = "Cooks and boils stuff, somehow."; + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/floor/iron/kitchen, +/area/station/security/prison/mess) +"sKA" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/kitchen/abandoned) +"sKD" = ( +/obj/machinery/light_switch/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 9 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"sKL" = ( +/obj/machinery/power/shuttle_engine/heater{ + dir = 8 + }, +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/window/reinforced/plasma/spawner/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/department/science/xenobiology) +"sKT" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "consultant"; + name = "curtain" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/command/heads_quarters/nt_rep) +"sLa" = ( +/obj/machinery/nuclearbomb/selfdestruct, +/obj/item/toy/figure/syndie{ + pixel_x = -1; + pixel_y = 15 + }, +/turf/open/floor/iron/textured_large, +/area/station/ai_monitored/command/nuke_storage) +"sLc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/aft) +"sLg" = ( +/obj/machinery/portable_atmospherics/canister/water_vapor, +/obj/effect/turf_decal/tile/dark/fourcorners, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/directional/west, +/turf/open/floor/noslip, +/area/station/service/janitor) +"sLk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/freezer, +/area/station/medical/pharmacy) +"sLq" = ( +/obj/machinery/turretid{ + control_area = "/area/station/ai_monitored/turret_protected/ai_upload"; + icon_state = "control_stun"; + name = "AI Upload turret control"; + pixel_y = 32 + }, +/obj/structure/table, +/obj/item/folder/blue{ + pixel_y = 4 + }, +/obj/item/pen{ + pixel_y = 4 + }, +/obj/machinery/light/small/directional/east, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the AI Upload."; + dir = 4; + name = "AI Upload Monitor"; + network = list("aiupload"); + pixel_x = -29 + }, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/ai_upload) +"sLs" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 10 + }, +/obj/machinery/status_display/supply{ + pixel_y = -32 + }, +/obj/machinery/computer/cargo{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/textured, +/area/station/cargo/office) +"sLA" = ( +/obj/machinery/light/neon_lining{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/science/xenobiology) +"sLC" = ( +/obj/effect/spawner/random/structure/steam_vent, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/crew_quarters/bar) +"sLD" = ( +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/solars/port/aft) +"sLH" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Power Station" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/fore) +"sLI" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/obj/structure/musician/piano/minimoog, +/turf/open/floor/wood/large, +/area/station/service/theater) +"sLM" = ( +/obj/effect/spawner/random/trash/mess, +/obj/machinery/growing/soil, +/turf/open/floor/grass, +/area/station/service/hydroponics/garden/abandoned) +"sLO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/textured_large, +/area/station/hallway/secondary/entry) +"sLP" = ( +/obj/structure/table, +/obj/effect/turf_decal/bot, +/obj/item/clothing/suit/hazardvest, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/pipe_dispenser, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/power_room) +"sLS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/security/greater) +"sLU" = ( +/obj/effect/turf_decal/trimline/yellow/filled/end{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"sLX" = ( +/obj/structure/railing, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/brown/filled/line, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/security/prison) +"sMi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured_large, +/area/station/command/cc_dock) +"sMl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"sMs" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/structure/sign/departments/chemistry/pharmacy/directional/south, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"sMC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/command/nuke_storage) +"sMD" = ( +/obj/structure/table, +/obj/effect/spawner/random/entertainment/deck, +/obj/item/food/ready_donk/donkhiladas{ + pixel_y = 11; + pixel_x = 1 + }, +/obj/item/food/ready_donk/nachos_grandes{ + pixel_y = 7 + }, +/obj/item/food/ready_donk/mac_n_cheese{ + pixel_y = 3; + pixel_x = 2 + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/miningoffice) +"sMN" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 10 + }, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/secondary/exit/departure_lounge) +"sMO" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/white/textured_corner{ + dir = 1 + }, +/area/station/science/xenobiology) +"sMQ" = ( +/obj/machinery/camera/directional/north{ + c_tag = "AI Chamber - Core"; + network = list("aicore") + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "AI Core shutters"; + name = "AI Core Shutters" + }, +/obj/machinery/airalarm/directional/north{ + pixel_y = 19 + }, +/obj/machinery/newscaster/directional/south{ + pixel_x = 4 + }, +/obj/machinery/door/window/brigdoor/left/directional/east{ + name = "Primary AI Core Acces Door"; + req_access = list("ai_upload") + }, +/obj/structure/cable, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/ai) +"sNa" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"sNc" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/table/wood/fancy, +/obj/structure/sign/painting/library_secure{ + pixel_y = 32 + }, +/obj/effect/spawner/random/decoration/statue{ + spawn_loot_chance = 35 + }, +/turf/open/floor/carpet, +/area/station/service/library) +"sNj" = ( +/obj/structure/table/wood, +/obj/item/storage/briefcase{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/briefcase, +/turf/open/floor/carpet, +/area/station/commons/dorms) +"sNq" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/box/white{ + color = "#52B4E9" + }, +/obj/structure/sign/poster/official/science/directional/south, +/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/anesthetic_mix, +/turf/open/floor/iron/showroomfloor, +/area/station/medical/coldroom) +"sNz" = ( +/obj/structure/flora/rock/pile/jungle/large, +/obj/structure/flora/bush/large, +/obj/effect/spawner/xmastree, +/turf/open/misc/beach/sand, +/area/station/hallway/primary/central/fore) +"sNG" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/iron/textured_edge, +/area/station/hallway/secondary/construction) +"sNI" = ( +/obj/structure/closet/secure_closet/medical1, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/gateway) +"sNJ" = ( +/obj/item/radio/intercom/directional/south, +/obj/structure/table/reinforced/rglass, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/obj/structure/noticeboard/staff{ + dir = 8; + pixel_x = -32 + }, +/obj/effect/turf_decal/siding/dark_blue{ + dir = 10 + }, +/obj/effect/turf_decal/tile/blue/half{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"sNU" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 4 + }, +/obj/effect/landmark/start/geneticist, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/science/genetics) +"sNW" = ( +/obj/machinery/chem_dispenser{ + layer = 2.7 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/bot_red, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/chemistry) +"sOc" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "roboticsprivacy"; + name = "Robotics Shutters" + }, +/turf/open/floor/plating, +/area/station/science/robotics/lab) +"sOd" = ( +/obj/effect/turf_decal/trimline/dark_red/arrow_cw{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central) +"sOh" = ( +/obj/effect/landmark/observer_start, +/turf/open/floor/iron/large, +/area/station/hallway/primary/fore) +"sOo" = ( +/obj/machinery/light/floor/has_bulb, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/textured_corner{ + dir = 1 + }, +/area/station/engineering/atmos) +"sOp" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L7" + }, +/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/large, +/area/station/hallway/primary/fore) +"sOq" = ( +/turf/closed/wall, +/area/station/command/heads_quarters/captain/private) +"sOs" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/structure/sign/poster/official/moth_piping/directional/west, +/turf/open/floor/engine, +/area/station/engineering/atmos/storage/gas) +"sOy" = ( +/obj/machinery/atmospherics/components/tank/air{ + dir = 8 + }, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/science/xenobiology) +"sOG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/sink/directional/south, +/obj/structure/sign/poster/official/cleanliness/directional/north, +/obj/effect/turf_decal/tile/dark_green/diagonal_centre, +/turf/open/floor/iron/white/diagonal, +/area/station/medical/virology) +"sOJ" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/commons/fitness/recreation/entertainment) +"sOM" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/camera/directional/north{ + c_tag = "Arrivals - Bay Fore Port"; + name = "arrivals camera" + }, +/turf/open/floor/iron/textured_large, +/area/station/command/cc_dock) +"sOS" = ( +/obj/structure/noticeboard/directional/south, +/obj/machinery/camera/directional/south{ + c_tag = "Service - Stage Entrance"; + name = "library camera" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/theater) +"sOZ" = ( +/obj/machinery/corral_corner{ + mapping_id = "6" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/light/neon_lining{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"sPg" = ( +/mob/living/basic/mothroach, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"sPi" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/upper) +"sPF" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/suit/utility/radiation, +/obj/item/clothing/head/utility/radiation, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/geiger_counter, +/obj/item/clothing/glasses/meson, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"sPK" = ( +/obj/structure/chair/sofa/corp/left, +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/mess) +"sPT" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/retaliate/goose/vomit, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/station/commons/vacant_room/office) +"sQc" = ( +/obj/structure/bed, +/obj/item/bedsheet/red, +/obj/effect/landmark/start/prisoner, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 9 + }, +/obj/machinery/button/curtain{ + id = "Cell4Privacy"; + pixel_x = -4; + pixel_y = 24 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"sQk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/green{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/hydroponics/garden) +"sQH" = ( +/obj/effect/turf_decal/trimline/dark_red/arrow_ccw, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"sQJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured_edge, +/area/station/bitrunning/den) +"sQO" = ( +/obj/structure/bookcase/random/religion, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/service/library) +"sRa" = ( +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ + dir = 8; + filter_type = list(/datum/gas/nitrogen) + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"sRk" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/station/engineering/atmos) +"sRJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera/directional/south{ + c_tag = "Command Hallway - Aft"; + name = "hallway camera" + }, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/hallway/secondary/command) +"sRK" = ( +/obj/effect/spawner/random/maintenance, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/fore) +"sRM" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/docking, +/turf/open/floor/plating, +/area/station/hallway/secondary/exit/departure_lounge) +"sRO" = ( +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/edge, +/area/station/hallway/primary/central/aft) +"sRR" = ( +/turf/closed/wall/r_wall, +/area/station/engineering/storage) +"sRY" = ( +/obj/structure/chair/stool/directional/west, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/grimy, +/area/station/commons/lounge) +"sSc" = ( +/obj/effect/spawner/random/trash/botanical_waste, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/green{ + dir = 4 + }, +/turf/open/floor/iron/textured, +/area/station/service/hydroponics/garden/abandoned) +"sSd" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/machinery/light/directional/north, +/obj/structure/table, +/obj/machinery/light_switch/directional/north{ + pixel_x = 13 + }, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"sSf" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/window/brigdoor/left/directional/south{ + name = "Security Medical"; + req_access = list("brig") + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/security/medical) +"sSj" = ( +/obj/structure/lattice, +/obj/structure/transit_tube/crossing, +/turf/open/space/basic, +/area/space/nearstation) +"sSm" = ( +/obj/structure/flora/bush/jungle/a/style_3, +/obj/structure/window/fulltile, +/turf/open/floor/grass, +/area/station/service/kitchen) +"sSn" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/structure/table, +/obj/item/storage/box/shipping{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/folder/yellow{ + pixel_x = -15; + pixel_y = 3 + }, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/cargo/sorting) +"sSt" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"sSx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/lobby) +"sSF" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4; + name = "Dormitories Junction" + }, +/obj/effect/mapping_helpers/mail_sorting/service/dormitories, +/turf/open/floor/iron/small, +/area/station/commons/dorms) +"sSH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/aft) +"sSI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/maintenance{ + name = "Costume Storage" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/fore) +"sSJ" = ( +/obj/machinery/photocopier, +/obj/structure/sign/painting/large/library{ + dir = 1 + }, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/grimy, +/area/station/service/library) +"sSK" = ( +/obj/machinery/corral_corner{ + mapping_id = "1" + }, +/obj/machinery/light/neon_lining{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"sSV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Custom Agent's Office" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/textured_large, +/area/station/security/checkpoint/supply) +"sTj" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/pen{ + pixel_y = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/sign/poster/official/anniversary_vintage_reprint/directional/west, +/obj/machinery/requests_console/auto_name/directional/north, +/turf/open/floor/wood/large, +/area/station/science/research) +"sTo" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/line, +/turf/open/floor/iron/white/side{ + dir = 1 + }, +/area/station/science/research) +"sTw" = ( +/obj/effect/turf_decal/siding/thinplating/corner{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"sTy" = ( +/obj/structure/closet, +/obj/effect/spawner/random/maintenance/three, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/aft) +"sUo" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/poster/official/random/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge, +/area/station/hallway/primary/aft) +"sUs" = ( +/obj/machinery/disposal/delivery_chute, +/obj/structure/sign/directions/science{ + pixel_y = 24 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/window/spawner/directional/east{ + pixel_x = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/textured_large, +/area/station/cargo/sorting) +"sUt" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/turf/open/floor/iron/freezer, +/area/station/medical/pharmacy) +"sUu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/grass, +/area/station/security/prison/garden) +"sUx" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/blue/corner, +/obj/machinery/duct, +/turf/open/floor/iron/white/textured_corner{ + dir = 8 + }, +/area/station/medical/storage) +"sUy" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/textured_large, +/area/station/hallway/primary/aft) +"sUB" = ( +/turf/open/floor/engine/n2o, +/area/station/engineering/atmos) +"sUC" = ( +/obj/structure/sink/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"sUF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/highsecurity{ + name = "Gravity Generator Room" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/gravity_generator) +"sUV" = ( +/obj/machinery/vending/boozeomat, +/turf/open/floor/carpet/purple, +/area/station/common/night_club) +"sVg" = ( +/obj/machinery/door/airlock/security/old{ + glass = 1; + name = "Garden" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/prison/garden) +"sVi" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/port/fore) +"sVn" = ( +/obj/structure/bookcase/random/religion, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/service/library) +"sVp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/small, +/area/station/commons/dorms) +"sVy" = ( +/obj/structure/chair{ + dir = 1; + name = "Accused" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/courtroom) +"sVD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/purple/filled/line, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/science/robotics/mechbay) +"sVE" = ( +/obj/machinery/door/poddoor/preopen{ + id = "justicechamber"; + name = "Justice Chamber Blast Door" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/window/brigdoor/right/directional/north{ + name = "Justice Chamber"; + req_access = list("armory") + }, +/obj/machinery/door/window/brigdoor/right/directional/south{ + name = "Justice Chamber"; + req_access = list("armory") + }, +/turf/open/floor/engine, +/area/station/security/execution/education) +"sVP" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/station/security/courtroom) +"sVW" = ( +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/head/utility/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/utility/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/utility/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/structure/closet/crate/internals, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/storage) +"sVX" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/chem_master/condimaster{ + desc = "Looks like a knock-off chem-master. Perhaps useful for separating liquids when mixing drinks precisely. Also dispenses condiments."; + name = "HoochMaster Deluxe" + }, +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/item/reagent_containers/cup/glass/shaker, +/turf/open/floor/iron, +/area/station/service/bar) +"sWB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/tank_holder/extinguisher, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/crew_quarters/bar) +"sWE" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Central Primary Hallway - Hub"; + name = "hallway camera" + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron/edge, +/area/station/hallway/primary/central) +"sWI" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/aft) +"sWQ" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/window/fulltile, +/turf/open/floor/grass, +/area/station/service/hydroponics) +"sXd" = ( +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/atmos) +"sXh" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/status_display/door_timer{ + id = "Cell 2"; + name = "Cell 2"; + pixel_x = 32 + }, +/obj/machinery/door/window/brigdoor/security/cell/right/directional/south{ + id = "Cell 2"; + name = "Cell 2" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark/textured, +/area/station/security/brig) +"sXl" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/machinery/modular_computer/preset/id, +/obj/effect/turf_decal/tile/green/half{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"sXF" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/mop_bucket/janitorialcart{ + dir = 4 + }, +/turf/open/floor/iron/kitchen{ + dir = 1 + }, +/area/station/commons/dorms/laundry) +"sXP" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood/large, +/area/station/service/theater) +"sXX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/poster/official/enlist/directional/south, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/hallway/secondary/command) +"sYe" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/circuit/red, +/area/station/science/robotics/mechbay) +"sYg" = ( +/obj/machinery/newscaster/directional/north, +/obj/effect/turf_decal/box/red, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge, +/area/station/science/ordnance) +"sYm" = ( +/obj/machinery/light/neon_lining{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 10 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"sYn" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/white/textured_edge, +/area/station/science/xenobiology) +"sYt" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/greater) +"sYC" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 8 + }, +/obj/machinery/requests_console/directional/west{ + department = "Ordnance Lab"; + name = "Ordnance Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/information, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/turf_decal/bot, +/obj/machinery/camera/directional/west{ + c_tag = "Science - Ordnance Lab Port"; + name = "science camera"; + network = list("ss13","rd") + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/science/ordnance) +"sYS" = ( +/obj/effect/mapping_helpers/ianbirthday, +/turf/open/floor/carpet/executive, +/area/station/command/heads_quarters/hop) +"sYU" = ( +/mob/living/basic/slime, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"sYX" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine/atmos/lesser) +"sYY" = ( +/obj/effect/turf_decal/tile/red/diagonal_centre, +/turf/open/floor/iron/dark/diagonal, +/area/station/hallway/secondary/exit/departure_lounge) +"sZm" = ( +/obj/effect/turf_decal/trimline/green/corner{ + dir = 8 + }, +/turf/open/floor/iron/large, +/area/station/service/hydroponics) +"sZv" = ( +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/solars/starboard/aft) +"sZB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/glass{ + amount = 4 + }, +/obj/item/stack/sheet/iron/five, +/obj/structure/girder, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/crew_quarters/bar) +"sZC" = ( +/obj/effect/turf_decal/trimline/dark_green/filled/line{ + dir = 4 + }, +/obj/machinery/light/warm/directional/east, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/medical/virology) +"sZG" = ( +/obj/machinery/computer/records/security, +/obj/structure/sign/calendar/directional/north, +/obj/effect/turf_decal/bot, +/turf/open/floor/carpet/royalblack, +/area/station/command/heads_quarters/hos) +"sZO" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/textured_large, +/area/station/hallway/primary/aft) +"sZR" = ( +/obj/structure/table, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/mineral/plasma{ + amount = 35 + }, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/aisat/atmos) +"sZZ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/wood, +/area/station/security/prison/garden) +"tac" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/science/research) +"taf" = ( +/turf/closed/wall, +/area/station/maintenance/starboard/fore) +"tat" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/obj/machinery/light/warm/directional/east, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"tau" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/machinery/airalarm/directional/south, +/obj/structure/table, +/obj/item/taperecorder, +/obj/machinery/camera/directional/south{ + c_tag = "Security - Interrogation" + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/security/interrogation) +"taA" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/hallway/secondary/command) +"taC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/plating, +/area/station/maintenance/department/engine) +"taI" = ( +/obj/machinery/light/floor/has_bulb, +/turf/open/floor/engine/n2, +/area/station/engineering/atmos) +"taK" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/main) +"taL" = ( +/obj/machinery/light/small/directional/west, +/obj/machinery/camera/directional/west{ + c_tag = "Chapel Port"; + network = list("ss13","monastery") + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"taN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior, +/obj/effect/mapping_helpers/airlock/locked, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/turf/open/floor/engine, +/area/station/maintenance/disposal/incinerator) +"taX" = ( +/obj/structure/weightmachine/weightlifter, +/obj/structure/sign/gym{ + pixel_y = 32 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/security/prison) +"tbl" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"tbm" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/cargo/miningdock) +"tbn" = ( +/obj/structure/girder, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/crew_quarters/bar) +"tbp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/textured_large, +/area/station/cargo/miningdock) +"tbq" = ( +/obj/structure/chair/pew/right, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/security/courtroom) +"tbw" = ( +/obj/structure/table, +/obj/effect/turf_decal/bot, +/obj/item/storage/toolbox/mechanical, +/obj/item/flashlight, +/obj/item/clothing/glasses/meson/engine, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/main) +"tbD" = ( +/obj/effect/turf_decal/trimline/dark_red/arrow_ccw, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central) +"tbL" = ( +/obj/structure/table, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -1; + pixel_y = 6 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/clothing/glasses/welding, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/white/textured_edge, +/area/station/science/lab) +"tbQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/camera/directional/south{ + c_tag = "Arrivals - Bay Aft Starboard"; + name = "arrivals camera" + }, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/textured_large, +/area/station/command/cc_dock) +"tcl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"tcm" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/science/general, +/obj/machinery/door/airlock/research/glass{ + name = "Research Satellite Access" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/science/research) +"tcz" = ( +/obj/structure/window/reinforced/survival_pod/spawner/directional/south, +/obj/structure/window/reinforced/survival_pod/spawner/directional/west, +/obj/effect/turf_decal/trimline/dark_blue, +/turf/open/floor/iron/dark/textured_large, +/area/station/commons/fitness/recreation/entertainment) +"tcA" = ( +/obj/item/book/bible, +/obj/structure/altar_of_gods, +/turf/open/floor/carpet/stellar, +/area/station/service/chapel) +"tcQ" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/seed_extractor, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/siding/green, +/turf/open/floor/iron/textured, +/area/station/service/hydroponics/garden/abandoned) +"tcV" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/holding_cell) +"tdf" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/corner, +/turf/open/floor/iron/large, +/area/station/service/hydroponics) +"tdn" = ( +/obj/structure/table, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "kitchen_counter"; + name = "Kitchen Counter Shutters" + }, +/obj/item/storage/bag/tray, +/obj/item/reagent_containers/condiment/saltshaker{ + pixel_x = -3 + }, +/obj/item/reagent_containers/condiment/peppermill{ + pixel_x = 3 + }, +/obj/item/food/pie/cream{ + pixel_y = 13 + }, +/turf/open/floor/iron/large, +/area/station/service/kitchen) +"tdr" = ( +/obj/effect/turf_decal/vg_decals/atmos/nitrous_oxide, +/turf/open/floor/engine/n2o, +/area/station/engineering/atmos) +"tdv" = ( +/turf/closed/wall/r_wall, +/area/station/science/ordnance/testlab) +"tdB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/dark_green/filled/warning{ + dir = 4 + }, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/medical/virology) +"tdG" = ( +/obj/structure/chair/stool/directional/west{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/cafeteria, +/area/station/service/cafeteria) +"tdL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/plating, +/area/station/maintenance/port) +"tdY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/textured, +/area/station/security/range) +"teb" = ( +/obj/machinery/dryer{ + dir = 8; + pixel_x = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet) +"tec" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/closet/emcloset/wall{ + pixel_x = -32 + }, +/obj/effect/turf_decal/trimline/white/end{ + dir = 4 + }, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron/dark/textured, +/area/station/security/office) +"ted" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/structure/displaycase/labcage, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/rd) +"teh" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/item/storage/secure/safe/hos{ + pixel_x = 32 + }, +/obj/effect/landmark/start/head_of_security, +/obj/machinery/light/directional/east, +/turf/open/floor/carpet/royalblack, +/area/station/command/heads_quarters/hos) +"tek" = ( +/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"teI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/aft) +"teN" = ( +/obj/structure/sign/poster/official/random/directional/west, +/obj/structure/disposaloutlet{ + dir = 4; + name = "Cargo Deliveries" + }, +/obj/structure/window/spawner/directional/north, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/science/research) +"teP" = ( +/obj/machinery/porta_turret/ai, +/obj/effect/turf_decal/stripes/white/box, +/obj/structure/sign/nanotrasen{ + pixel_x = -32 + }, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/aisat_interior) +"teQ" = ( +/obj/structure/table/wood, +/obj/item/paper_bin/carbon{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/book/manual/wiki/detective, +/obj/item/restraints/handcuffs, +/turf/open/floor/carpet, +/area/station/security/detectives_office) +"teR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/lesser) +"teX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/grime, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"tfc" = ( +/obj/item/radio/intercom/directional/east, +/obj/structure/rack/shelf, +/obj/item/reagent_containers/cup/bottle/potassium{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/reagent_containers/cup/bottle/phosphorus{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/reagent_containers/cup/bottle/sodium{ + pixel_x = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) +"tfi" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 10 + }, +/obj/machinery/light_switch/directional/west, +/obj/structure/closet/secure_closet/security, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/station/security/checkpoint/customs) +"tfA" = ( +/obj/structure/window/spawner/directional/east, +/obj/structure/window/spawner/directional/south, +/obj/structure/flora/bush/sparsegrass, +/obj/structure/flora/bush/flowers_br/style_3, +/turf/open/floor/grass, +/area/station/hallway/secondary/exit/departure_lounge) +"tfF" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white/textured_large, +/area/station/commons/fitness/recreation/entertainment) +"tfQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/airlock/highsecurity{ + name = "Atmospherics Emergency Access" + }, +/obj/machinery/door/firedoor/heavy, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/poddoor/preopen{ + id = "atmoslock"; + name = "Atmospherics Lockdown Blast Door" + }, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine/atmos) +"tga" = ( +/obj/structure/drain, +/obj/item/soap/deluxe, +/obj/item/bikehorn/rubberducky, +/obj/structure/curtain, +/obj/machinery/shower{ + name = "emergency shower"; + pixel_y = 16 + }, +/obj/structure/window/spawner/directional/east, +/obj/machinery/door/window/brigdoor/left/directional/south{ + name = "Shower" + }, +/turf/open/floor/iron/freezer, +/area/station/command/heads_quarters/captain/private) +"tgh" = ( +/obj/structure/table, +/obj/item/wirecutters, +/obj/item/screwdriver, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/fore) +"tgy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/airalarm/directional/south, +/obj/machinery/camera{ + c_tag = "Service - Kitchen"; + name = "service camera" + }, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"tgQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/science/xenobiology) +"tgT" = ( +/obj/machinery/light/neon_lining{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/camera/directional/west{ + c_tag = "Science - Xenobiology, Pen 4"; + network = list("ss13","rd","xeno"); + name = "xenobiology camera" + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"tgU" = ( +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"thd" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/power_room) +"the" = ( +/obj/machinery/suit_storage_unit/engine, +/obj/effect/turf_decal/box, +/obj/machinery/incident_display/delam/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/storage) +"thf" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Science Hallway"; + name = "hallway camera" + }, +/obj/structure/closet/firecloset/wall{ + pixel_y = 32 + }, +/obj/effect/turf_decal/trimline/white/end, +/obj/effect/turf_decal/trimline/white/mid_joiner, +/turf/open/floor/iron/white/textured_edge, +/area/station/hallway/primary/fore) +"thv" = ( +/obj/structure/lattice, +/obj/structure/sign/nanotrasen{ + pixel_x = 32 + }, +/turf/open/space/basic, +/area/space/nearstation) +"thz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/station/engineering/supermatter) +"thN" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/fore) +"thY" = ( +/obj/structure/table, +/obj/item/stock_parts/micro_laser{ + desc = "A tiny laser used in certain devices. A lil left."; + pixel_x = -6 + }, +/obj/item/stock_parts/micro_laser{ + desc = "A tiny laser used in certain devices. A lil left."; + pixel_x = -6 + }, +/obj/item/stock_parts/micro_laser{ + desc = "A tiny laser used in certain devices. A lil left."; + pixel_x = -6 + }, +/obj/item/stock_parts/micro_laser{ + desc = "A tiny laser used in certain devices. A lil left."; + pixel_x = -6 + }, +/obj/item/stock_parts/micro_laser{ + desc = "A tiny laser used in certain devices. A lil left."; + pixel_x = -6 + }, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/capacitor{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/machinery/light/small/directional/east, +/obj/machinery/status_display/ai/directional/north, +/obj/structure/sign/poster/contraband/random/directional/east, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/storage/tcomms) +"tig" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 4 + }, +/obj/structure/sign/directions/science/directional/west, +/obj/structure/sign/directions/arrival/directional/west{ + dir = 2; + pixel_y = -8 + }, +/obj/structure/sign/directions/command/directional/west{ + dir = 1; + pixel_y = 8 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"tir" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/spawner/random/vendor_meal_sides, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/greater) +"tit" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"tiz" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/primary/central/aft) +"tiL" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 6 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/lockers) +"tiO" = ( +/turf/open/floor/iron/chapel{ + dir = 10 + }, +/area/station/service/chapel) +"tiR" = ( +/obj/structure/flora/bush/fullgrass, +/obj/structure/flora/bush/ferny, +/obj/structure/window/fulltile, +/turf/open/floor/grass, +/area/station/commons/storage/art) +"tiS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Science Hallway" + }, +/turf/open/floor/iron/white/textured_large, +/area/station/hallway/primary/fore) +"tiX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Holodeck Door" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "holodeck" + }, +/turf/open/floor/iron/large, +/area/station/commons/fitness/recreation) +"tjr" = ( +/turf/closed/wall/r_wall, +/area/station/engineering/atmos/hfr_room) +"tjw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/aft) +"tjy" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/command/minisat, +/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Atmospherics" + }, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/aisat/atmos) +"tjC" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "roboticsprivacy"; + name = "Robotics Shutters"; + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/station/science/robotics/lab) +"tjR" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/closet/preopen, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap{ + pixel_y = 2 + }, +/obj/item/stack/package_wrap{ + pixel_y = 5 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/cargo/lobby) +"tkn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured_large, +/area/station/cargo/office) +"tkz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/pod/dark, +/area/station/service/chapel/office) +"tkI" = ( +/obj/structure/closet/crate, +/obj/item/reagent_containers/cup/bowl, +/obj/effect/spawner/random/contraband/prison, +/obj/item/reagent_containers/cup/bowl, +/obj/item/reagent_containers/cup/bowl, +/obj/item/reagent_containers/cup/bowl, +/obj/item/reagent_containers/cup/bowl, +/obj/item/reagent_containers/cup/bowl, +/obj/item/reagent_containers/cup/bowl, +/obj/item/reagent_containers/cup/bowl, +/obj/item/kitchen/fork/plastic, +/obj/item/kitchen/fork/plastic, +/obj/item/kitchen/fork/plastic, +/obj/item/storage/box/drinkingglasses, +/obj/item/kitchen/spoon/plastic, +/obj/item/kitchen/spoon/plastic, +/obj/item/kitchen/spoon/plastic, +/obj/item/knife/plastic, +/obj/item/knife/plastic, +/obj/item/knife/plastic, +/obj/item/storage/bag/tray/cafeteria, +/obj/item/storage/bag/tray/cafeteria, +/obj/item/storage/bag/tray/cafeteria, +/obj/item/storage/bag/tray/cafeteria, +/obj/item/storage/box/drinkingglasses, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/effect/spawner/random/contraband/prison, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/kitchen, +/area/station/security/prison/mess) +"tkK" = ( +/obj/effect/turf_decal/siding/thinplating/corner{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"tld" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Pool Maintenance" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/lesser) +"tli" = ( +/obj/structure/transit_tube/curved/flipped, +/turf/open/space/basic, +/area/space/nearstation) +"tlq" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "roboticssurgery"; + name = "Robotics Shutters" + }, +/turf/open/floor/plating, +/area/station/science/robotics/lab) +"tlD" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/hallway/primary/aft) +"tlS" = ( +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/turf/open/floor/iron/textured, +/area/station/security/checkpoint/engineering) +"tlW" = ( +/obj/structure/sign/nanotrasen{ + pixel_x = -32 + }, +/turf/open/space/basic, +/area/space) +"tmb" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/department/security/greater) +"tmc" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible{ + dir = 4 + }, +/obj/machinery/camera/directional/west{ + c_tag = "Atmospherics - Distribution Loop"; + name = "atmospherics camera" + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/atmos/pumproom) +"tme" = ( +/obj/structure/table/glass, +/obj/structure/sign/calendar/directional/north, +/obj/machinery/computer/records/medical/laptop, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/turf/open/floor/iron/white, +/area/station/medical/office) +"tmu" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/effect/landmark/secequipment, +/obj/effect/turf_decal/tile/red/diagonal_centre, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/office) +"tmC" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/pen{ + pixel_y = 4 + }, +/turf/open/floor/iron/large, +/area/station/security/checkpoint/customs) +"tmP" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"tmQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/fake_stairs/wood/directional/east, +/turf/open/floor/wood/large, +/area/station/service/barber) +"tne" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "brig-entrance-fore" + }, +/obj/machinery/door/airlock/security/glass{ + id_tag = "outerbrig"; + name = "Brig" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/security/entrance, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/office) +"tnl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"tnm" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atm/directional/south, +/turf/open/floor/wood/large, +/area/station/service/theater) +"tnp" = ( +/obj/effect/decal/cleanable/greenglow, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/lesser) +"tnx" = ( +/turf/closed/wall, +/area/station/hallway/primary/central/aft) +"tnD" = ( +/obj/machinery/power/solar_control{ + dir = 4; + id = "starboardsolar"; + name = "Port Quarter Solar Control" + }, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/solars/port/aft) +"tod" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/cardboard/metal, +/obj/item/clothing/suit/utility/fire/firefighter, +/obj/item/clothing/mask/gas, +/obj/effect/spawner/random/entertainment/money, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/security/greater) +"tof" = ( +/obj/effect/spawner/random/trash/grille_or_waste, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/upper) +"toj" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/ai) +"tok" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/diagonal_centre, +/turf/open/floor/iron/diagonal, +/area/station/commons/dorms) +"toq" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/department/engine/atmos/lesser) +"tos" = ( +/obj/effect/turf_decal/trimline/blue/line, +/obj/machinery/duct, +/obj/effect/turf_decal/trimline/blue/mid_joiner, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/storage) +"tot" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/machinery/button/door/directional/west{ + id = "atmoshfr"; + name = "Radiation Shutters Control"; + req_access = list("atmospherics") + }, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"toL" = ( +/turf/open/floor/engine/n2, +/area/station/engineering/atmos) +"toO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"toS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/corner{ + dir = 4 + }, +/area/station/hallway/primary/central) +"toU" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/structure/cable, +/obj/effect/landmark/start/cyborg, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/ai_upload) +"toY" = ( +/obj/structure/sign/warning/vacuum/external/directional/south, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 5 + }, +/obj/machinery/camera/directional/west{ + dir = 10 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/main) +"tps" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/manifold/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + dir = 10; + name = "blue line" + }, +/turf/open/floor/engine/vacuum, +/area/station/science/ordnance/freezerchamber) +"tpt" = ( +/obj/machinery/holopad, +/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/hydroponics/garden) +"tpu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/machinery/duct, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/medical/medbay/central) +"tpv" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"tpB" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/textured_corner, +/area/station/cargo/warehouse) +"tpL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/girder, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/aft) +"tpQ" = ( +/obj/machinery/door/airlock/external{ + name = "External Solar Access" + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/solars/starboard/aft) +"tpR" = ( +/obj/structure/plasticflaps/opaque{ + name = "Research Deliveries" + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + dir = 4; + location = "Medbay" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/white/textured_large, +/area/station/maintenance/department/crew_quarters/bar) +"tpS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"tpZ" = ( +/obj/effect/turf_decal/trimline/dark/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/security/office) +"tqf" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured, +/area/station/hallway/primary/aft) +"tqi" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 10 + }, +/obj/structure/flora/bush/sparsegrass{ + pixel_x = 8 + }, +/turf/open/floor/grass, +/area/station/hallway/primary/central/fore) +"tqu" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/closet/crate, +/obj/effect/spawner/random/maintenance/four, +/turf/open/floor/iron/textured_large, +/area/station/cargo/warehouse) +"tqv" = ( +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/aft) +"tqA" = ( +/obj/structure/window/spawner/directional/south, +/obj/structure/flora/bush/sparsegrass, +/obj/structure/flora/bush/ferny, +/turf/open/floor/grass, +/area/station/hallway/secondary/exit/departure_lounge) +"tqB" = ( +/obj/structure/railing{ + pixel_y = -5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/red/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/science/auxlab/firing_range) +"tqC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 6 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"tqM" = ( +/obj/machinery/pdapainter/security, +/obj/machinery/newscaster/directional/east, +/obj/effect/turf_decal/siding/wood/end{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_large, +/area/station/command/heads_quarters/hos) +"tqU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/aft/greater) +"tqV" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/security/office) +"tqZ" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 10 + }, +/obj/machinery/firealarm/directional/south, +/obj/machinery/light_switch/directional/south{ + pixel_x = 9 + }, +/obj/machinery/dna_infuser, +/turf/open/floor/iron/white, +/area/station/science/genetics) +"trb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/textured_large, +/area/station/hallway/primary/aft) +"tri" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/security/prison) +"trl" = ( +/obj/machinery/atmospherics/components/tank, +/turf/open/floor/engine, +/area/station/science/ordnance/storage) +"tru" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock{ + id_tag = "Toilet2"; + name = "Toilet Unit 2" + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet) +"trw" = ( +/obj/structure/table/wood, +/obj/machinery/light/small/directional/west, +/obj/item/instrument/violin, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/grimy, +/area/station/service/chapel) +"trA" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering Storage" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/engine_equipment, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/turf/open/floor/iron/textured_large, +/area/station/engineering/storage) +"trL" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 4; + pixel_x = -5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/greater) +"tsb" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/sign/logo{ + icon_state = "nanotrasen_sign2"; + pixel_y = 32 + }, +/obj/effect/landmark/start/assistant, +/obj/structure/chair/sofa/bench/right, +/turf/open/floor/iron/white/textured_edge, +/area/station/medical/medbay/lobby) +"tsi" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating/airless, +/area/station/science/lab) +"tsl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/aft/greater) +"tss" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"tsB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/lobby) +"tsG" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "briglockdown"; + name = "Warden Desk Shutters" + }, +/obj/item/storage/fancy/donut_box, +/obj/machinery/door/window/brigdoor/left/directional/west{ + name = "Brig Control Desk"; + req_access = list("armory") + }, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/machinery/door/window/right/directional/east{ + name = "Brig Control Window" + }, +/obj/item/hand_labeler{ + pixel_y = -1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/warden) +"tsM" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"tsN" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/engine/atmos/lesser) +"tsX" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate/secure/loot, +/obj/effect/spawner/random/entertainment/money, +/turf/open/floor/iron/textured_large, +/area/station/cargo/warehouse) +"ttf" = ( +/obj/structure/table, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 5 + }, +/obj/item/clothing/gloves/cargo_gauntlet{ + pixel_y = 7 + }, +/obj/item/clothing/gloves/cargo_gauntlet{ + pixel_y = 4 + }, +/obj/item/clothing/gloves/cargo_gauntlet{ + pixel_y = 1 + }, +/obj/item/radio/intercom/directional/north, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) +"ttj" = ( +/obj/machinery/computer/camera_advanced/base_construction/aux{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/construction/mining/aux_base) +"ttu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_red/arrow_cw{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"ttw" = ( +/turf/open/space/basic, +/area/space) +"ttC" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/atmos) +"ttD" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 1 + }, +/obj/structure/flora/grass/jungle/b, +/obj/effect/turf_decal/siding/thinplating, +/turf/open/floor/grass, +/area/station/hallway/primary/central/fore) +"ttG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research/glass{ + name = "Pharmacy" + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/obj/effect/mapping_helpers/airlock/access/any/medical/pharmacy, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/landmark/navigate_destination/chemfactory, +/turf/open/floor/iron/freezer, +/area/station/medical/pharmacy) +"ttO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/science/xenobiology) +"tuk" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/lesser) +"tuq" = ( +/turf/closed/wall, +/area/station/hallway/secondary/exit/departure_lounge) +"tuu" = ( +/obj/effect/spawner/random/trash/bin, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron/kitchen/small, +/area/station/service/kitchen/abandoned) +"tuC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/light/cold/directional/west, +/obj/machinery/status_display/ai/directional/west, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"tuF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/dark/diagonal, +/area/station/engineering/transit_tube) +"tuU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue/half{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"tvc" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/box, +/obj/machinery/light_switch/directional/west{ + pixel_y = -15 + }, +/obj/machinery/button/door/directional/west{ + id = "medexamshutter"; + name = "Privacy Shutter Control" + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/turf/open/floor/iron/white, +/area/station/medical/exam_room) +"tve" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/box, +/obj/item/radio/intercom/directional/east, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/disposal/incinerator) +"tvg" = ( +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/obj/structure/table/reinforced/rglass, +/obj/item/stack/ducts/fifty, +/obj/item/stack/ducts/fifty, +/obj/item/stack/ducts/fifty, +/obj/item/stack/ducts/fifty, +/obj/item/stack/ducts/fifty, +/obj/item/stack/ducts/fifty, +/obj/item/stack/ducts/fifty, +/obj/item/stack/ducts/fifty, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/screwdriver{ + pixel_y = 6 + }, +/obj/item/storage/toolbox/mechanical, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/obj/item/clothing/head/utility/welding, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"tvm" = ( +/obj/effect/turf_decal/tile/blue/full, +/turf/open/floor/iron/airless{ + icon_state = "dark_large" + }, +/area/space/nearstation) +"tvo" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/entry) +"tvH" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/parquet, +/area/station/common/night_club) +"tvM" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 6 + }, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) +"tvN" = ( +/obj/structure/flora/rock, +/obj/effect/spawner/liquids_spawner{ + reagent_list = list(/datum/reagent/water=600) + }, +/turf/open/misc/asteroid, +/area/station/commons/dorms) +"tvP" = ( +/obj/machinery/light/neon_lining{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/science/xenobiology) +"twa" = ( +/obj/machinery/airalarm/directional/west, +/obj/structure/rack, +/obj/item/storage/toolbox/drone, +/obj/item/restraints/handcuffs, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/purple/fourcorners, +/turf/open/floor/iron/dark/textured, +/area/station/security/corrections_officer) +"twb" = ( +/obj/machinery/air_sensor/ordnance_freezer_chamber, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2, +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + dir = 8; + name = "blue line" + }, +/turf/open/floor/engine/vacuum, +/area/station/science/ordnance/freezerchamber) +"twc" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/science/ordnance/storage) +"twd" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/donut_box, +/obj/machinery/pollution_scrubber{ + pixel_x = -15 + }, +/turf/open/floor/carpet, +/area/station/commons/dorms) +"twe" = ( +/obj/structure/table, +/obj/item/clipboard{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/item/book/manual/wiki/atmospherics{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/storage/belt/utility{ + pixel_y = 3 + }, +/obj/item/t_scanner{ + pixel_y = 3 + }, +/obj/item/t_scanner{ + pixel_y = 3 + }, +/obj/item/t_scanner{ + pixel_y = 3 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"twq" = ( +/obj/structure/flora/bush/fullgrass, +/obj/structure/flora/bush/ferny, +/obj/structure/window/fulltile, +/turf/open/floor/grass, +/area/station/service/hydroponics/garden) +"twz" = ( +/obj/structure/chair/office, +/obj/effect/landmark/start/scientist, +/obj/structure/cable, +/turf/open/floor/iron/white/textured_large, +/area/station/science/auxlab) +"twB" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/textured_large, +/area/station/cargo/storage) +"twP" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/white/textured_large, +/area/station/commons/fitness/recreation/entertainment) +"twU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/railing{ + dir = 10 + }, +/obj/item/reagent_containers/cup/beaker/large, +/obj/item/reagent_containers/cup/beaker/large, +/obj/item/reagent_containers/dropper, +/obj/structure/table/reinforced/rglass, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/pharmacy) +"twX" = ( +/obj/structure/closet/wardrobe/black, +/obj/effect/landmark/start/hangover/closet, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/large, +/area/station/commons/fitness/recreation/entertainment) +"twZ" = ( +/obj/machinery/digital_clock{ + pixel_y = 6 + }, +/turf/closed/wall/r_wall, +/area/station/security/office) +"txh" = ( +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/arrows{ + dir = 1 + }, +/turf/open/floor/iron/textured, +/area/station/cargo/sorting) +"txi" = ( +/obj/item/folder/blue{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/folder/red{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/lighter{ + pixel_x = -15 + }, +/obj/structure/table/reinforced/rglass, +/obj/item/food/donut/jelly/choco{ + pixel_x = -10; + pixel_y = -11 + }, +/turf/open/floor/glass/reinforced, +/area/station/security/office) +"txt" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/trimline/dark_green/filled/line{ + dir = 4 + }, +/obj/item/storage/box/beakers{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/syringes, +/obj/structure/sign/warning/biohazard/directional/east, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/medical/virology) +"txu" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/port/fore) +"txN" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine/atmos) +"txV" = ( +/obj/structure/table, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/crew_quarters/bar) +"txX" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/dark/diagonal, +/area/station/hallway/primary/fore) +"tyg" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 10 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/main) +"tyj" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/main) +"tym" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "External Gas to Loop" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/supermatter/room) +"tyt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance/three, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/lesser) +"tyF" = ( +/obj/structure/chair/stool/bar, +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/effect/landmark/start/prisoner, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/mess) +"tyI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet) +"tyN" = ( +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating/dark/end{ + dir = 1 + }, +/obj/structure/drain, +/obj/machinery/shower/directional/north, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/checker, +/area/station/engineering/atmos) +"tyQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos/storage) +"tyY" = ( +/obj/effect/turf_decal/trimline/dark_blue/end{ + dir = 4 + }, +/obj/item/soap, +/obj/machinery/shower/directional/east, +/turf/open/floor/iron/freezer, +/area/station/security/prison) +"tza" = ( +/obj/machinery/modular_computer/preset/id{ + dir = 8 + }, +/obj/machinery/keycard_auth/directional/east{ + pixel_x = 21; + pixel_y = -25 + }, +/obj/machinery/requests_console/directional/south{ + department = "Chief Engineer's Desk"; + name = "Chief Engineer's Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/announcement, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/turf_decal/bot, +/turf/open/floor/carpet/orange, +/area/station/command/heads_quarters/ce) +"tzk" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/integrated_circuit/loaded/speech_relay, +/obj/item/integrated_circuit/loaded/hello_world, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/science/auxlab) +"tzl" = ( +/obj/machinery/door/airlock/security{ + name = "Interrogation" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/iron/dark/textured, +/area/station/security/interrogation) +"tzr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/purple/filled/end, +/turf/open/floor/iron/dark/textured, +/area/station/security/corrections_officer) +"tzs" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 4 + }, +/obj/machinery/photocopier, +/obj/machinery/light/warm/directional/north, +/obj/effect/turf_decal/bot_white, +/obj/structure/noticeboard/directional/north, +/turf/open/floor/wood/tile, +/area/station/service/library) +"tzB" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/status_display/evac/directional/east, +/obj/machinery/light/warm/directional/east, +/turf/open/floor/iron/stairs/medium, +/area/station/hallway/secondary/command) +"tzH" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/dark_red/diagonal_centre, +/obj/effect/turf_decal/tile/neutral/diagonal_centre, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/execution/transfer) +"tzI" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/exit/departure_lounge) +"tzN" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/office) +"tzT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/spawner/random/trash/garbage, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Prison Satellite Maintenance" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/fore) +"tzY" = ( +/obj/structure/mirror/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/sink/directional/west, +/turf/open/floor/iron/freezer, +/area/station/command/heads_quarters/captain/private) +"tAa" = ( +/obj/structure/table, +/obj/item/stock_parts/subspace/treatment, +/obj/item/stock_parts/subspace/treatment, +/obj/item/stock_parts/subspace/treatment, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/storage/tcomms) +"tAb" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"tAc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 9 + }, +/turf/open/floor/iron/textured, +/area/station/maintenance/disposal/incinerator) +"tAl" = ( +/obj/machinery/duct, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"tAn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, +/area/station/service/bar) +"tAr" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/obj/structure/chair/office/light{ + dir = 8 + }, +/turf/open/floor/iron/freezer, +/area/station/medical/pharmacy) +"tAw" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 10 + }, +/obj/machinery/firealarm/directional/south, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/obj/machinery/light/small/directional/west, +/turf/open/floor/iron/textured, +/area/station/hallway/secondary/construction) +"tAD" = ( +/obj/machinery/door/airlock/external{ + name = "External Solar Access" + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/solars/port/aft) +"tAH" = ( +/turf/open/floor/iron/textured_large, +/area/station/cargo/lobby) +"tAJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Mix Bypass" + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"tAO" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"tAQ" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Central Hallway" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/directions/science/directional/west{ + dir = 1; + pixel_y = 8 + }, +/obj/structure/sign/directions/dorms/directional/west{ + dir = 1 + }, +/obj/structure/sign/directions/medical/directional/west{ + dir = 1; + pixel_y = -8 + }, +/turf/open/floor/iron/textured_large, +/area/station/hallway/primary/aft) +"tAS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"tAU" = ( +/turf/closed/wall, +/area/station/command/heads_quarters/hop) +"tBq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/security/interrogation) +"tBt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/closed/wall/r_wall, +/area/station/science/xenobiology) +"tBC" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating/airless, +/area/station/engineering/atmos) +"tBD" = ( +/obj/machinery/growing/tray, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/hydroponics/garden) +"tBQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/station/commons/vacant_room/office) +"tBT" = ( +/obj/effect/turf_decal/siding/thinplating/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"tBV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "roboticssurgery"; + name = "Robotics Shutters" + }, +/turf/open/floor/plating, +/area/station/science/robotics/lab) +"tCa" = ( +/obj/structure/sign/warning/vacuum, +/turf/closed/wall/r_wall, +/area/station/science/ordnance/testlab) +"tCx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Research Satellite Maintenance" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/science/ordnance_maint) +"tCy" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/chair/office/light{ + color = "#9FED58"; + dir = 1 + }, +/obj/effect/turf_decal/tile/green/half, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"tCJ" = ( +/obj/structure/chair/comfy/brown{ + color = "#9FED58"; + dir = 8 + }, +/turf/open/floor/carpet/blue, +/area/station/command/bridge) +"tCL" = ( +/obj/effect/turf_decal/trimline/green/filled/warning, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/commons/fitness/recreation/entertainment) +"tDe" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"tDA" = ( +/obj/structure/table, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"tDI" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/iron/white/textured_corner{ + dir = 4 + }, +/area/station/science/xenobiology) +"tDW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/obj/effect/spawner/random/maintenance/four, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/lesser) +"tEd" = ( +/obj/structure/transit_tube/horizontal{ + dir = 1 + }, +/obj/effect/spawner/structure/window/hollow/reinforced/middle, +/turf/open/floor/plating, +/area/station/service/chapel) +"tEw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/exit/departure_lounge) +"tEz" = ( +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 5 + }, +/obj/structure/rack, +/obj/item/wrench, +/obj/item/screwdriver, +/obj/machinery/light_switch/directional/north{ + pixel_x = 7 + }, +/obj/machinery/button/door/directional/north{ + id = "commissarydoor"; + name = "Commissary Door Lock"; + normaldoorcontrol = 1; + pixel_x = -5; + pixel_y = 26; + specialfunctions = 4 + }, +/obj/machinery/button/door/directional/north{ + id = "commissaryshutters"; + name = "Commissary Shutters"; + pixel_x = -5; + pixel_y = 38 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/station/commons/vacant_room) +"tEA" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 1; + id = "ordnance"; + name = "Ordnance Lab Shutters" + }, +/turf/open/floor/plating, +/area/station/science/ordnance/storage) +"tEH" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/machinery/firealarm/directional/north, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + dir = 4; + location = "QM #4" + }, +/obj/effect/turf_decal/box, +/mob/living/simple_animal/bot/mulebot, +/turf/open/floor/iron/textured_edge, +/area/station/cargo/storage) +"tEK" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow{ + dir = 10 + }, +/turf/open/floor/engine, +/area/station/science/explab) +"tEL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white/small, +/area/station/common/pool) +"tER" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/aft) +"tFf" = ( +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance_hatch, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/science/ordnance_maint) +"tFg" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hop) +"tFh" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4 + }, +/turf/open/floor/iron/textured_corner{ + dir = 4 + }, +/area/station/engineering/atmos) +"tFk" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/camera/directional/east{ + c_tag = "Science - Aft Entrance Access"; + name = "science camera"; + network = list("ss13","rd") + }, +/turf/open/floor/iron/white, +/area/station/science/research) +"tFt" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/department/engine/atmos) +"tFA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/dark/fourcorners, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/structure/sink/directional/south, +/turf/open/floor/noslip, +/area/station/service/janitor) +"tFC" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/railing, +/obj/effect/turf_decal/siding/green, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"tFF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/black, +/area/station/command/heads_quarters/qm) +"tFG" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/service/chapel/office) +"tFW" = ( +/obj/effect/turf_decal/trimline/dark_red/arrow_cw{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central) +"tGa" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/structure/closet/firecloset/wall{ + pixel_y = -32 + }, +/obj/effect/turf_decal/trimline/white/end{ + dir = 1 + }, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"tGg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Workshop" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/prison/work) +"tGk" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/service/chapel/funeral) +"tGn" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/greater) +"tGo" = ( +/obj/machinery/portable_atmospherics/scrubber/huge, +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"tGp" = ( +/obj/machinery/atmospherics/components/trinary/mixer{ + dir = 1; + name = "plasma mixer" + }, +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/science/ordnance/storage) +"tGq" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8; + name = "Air to Distro" + }, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/aisat/atmos) +"tGJ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/break_room) +"tGM" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/large, +/area/station/hallway/primary/fore) +"tGR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/upper) +"tGY" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/structure/cable, +/obj/machinery/airalarm/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/blue/filled/warning, +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/medical/medbay/lobby) +"tHb" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/machinery/power/energy_accumulator/grounding_rod/anchored, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"tHC" = ( +/obj/effect/spawner/random/trash/grille_or_waste, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine/atmos/lesser) +"tHE" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/turf/closed/wall, +/area/station/engineering/atmos/pumproom) +"tHI" = ( +/turf/closed/wall/r_wall, +/area/station/security/prison) +"tHN" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/item/radio/intercom/directional/north, +/obj/machinery/camera/directional/north{ + c_tag = "Vacant Commissary" + }, +/turf/open/floor/iron/large, +/area/station/commons/vacant_room/commissary) +"tIh" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 10 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/atmos) +"tIo" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/effect/mapping_helpers/airlock/access/any/command/maintenance, +/obj/machinery/door/airlock/external/glass{ + name = "External Access"; + space_dir = 1 + }, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/upper) +"tIs" = ( +/obj/effect/landmark/atmospheric_sanity/ignore_area, +/turf/closed/wall/mineral/iron, +/area/station/service/chapel) +"tIz" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/fore) +"tID" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/corner{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"tIS" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/primary/central/aft) +"tJj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/aft/greater) +"tJv" = ( +/obj/structure/dresser, +/obj/item/toy/figure/qm{ + pixel_y = 14 + }, +/turf/open/floor/carpet/black, +/area/station/command/heads_quarters/qm) +"tJJ" = ( +/obj/structure/fake_stairs/wood/directional/east, +/turf/open/floor/wood/large, +/area/station/service/barber) +"tJM" = ( +/obj/machinery/power/shuttle_engine/heater{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/window/reinforced/plasma/spawner/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/department/science/xenobiology) +"tJP" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder{ + pixel_y = 7 + }, +/obj/item/reagent_containers/condiment/enzyme{ + pixel_x = 11; + pixel_y = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"tJQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/supermatter/room) +"tJU" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/medical/medbay/lobby) +"tKc" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/machinery/firealarm/directional/north, +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/break_room) +"tKA" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "cargounload" + }, +/obj/machinery/status_display/supply{ + pixel_x = 32 + }, +/obj/structure/window/spawner/directional/west, +/obj/structure/plasticflaps, +/turf/open/floor/iron/textured_large, +/area/station/cargo/storage) +"tKO" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/freezer, +/area/station/security/checkpoint/medical) +"tKV" = ( +/turf/open/floor/plating, +/area/station/construction/mining/aux_base) +"tLd" = ( +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/transit_tube/station/dispenser/reverse{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/primary/fore) +"tLj" = ( +/obj/structure/table, +/obj/item/wrench{ + pixel_y = 3 + }, +/obj/item/crowbar{ + pixel_y = 3 + }, +/obj/item/analyzer{ + pixel_y = 3 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/machinery/button/door/directional/west{ + id = "atmoslock"; + name = "Atmospherics Lockdown Control"; + req_access = list("atmospherics") + }, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos/storage/gas) +"tLl" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/obj/effect/spawner/random/trash/grime, +/obj/machinery/light/small/directional/east, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine/atmos/lesser) +"tLv" = ( +/obj/structure/chair/sofa/bench{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/secondary/exit/departure_lounge) +"tLz" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical) +"tLA" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/machinery/camera/directional/west{ + c_tag = "Atmospherics - Aft Port"; + name = "atmospherics camera"; + network = list("ss13","engine") + }, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"tLD" = ( +/obj/structure/bed/dogbed/runtime, +/mob/living/simple_animal/pet/cat/runtime{ + icon_dead = "original_dead"; + icon_living = "original"; + icon_state = "original" + }, +/obj/item/toy/cattoy, +/obj/machinery/digital_clock/directional/north{ + pixel_y = 37 + }, +/turf/open/floor/carpet/blue, +/area/station/command/heads_quarters/cmo) +"tLN" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/structure/sign/departments/science/alt/directional/east, +/obj/machinery/duct, +/obj/structure/disposalpipe/sorting/mail{ + dir = 2; + name = "Satellite Junction" + }, +/obj/effect/mapping_helpers/mail_sorting/science/experimentor_lab, +/obj/effect/mapping_helpers/mail_sorting/science/ordnance, +/obj/effect/mapping_helpers/mail_sorting/science/xenobiology, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/science/research) +"tMh" = ( +/obj/machinery/light/warm/directional/east, +/turf/open/floor/iron/grimy, +/area/station/commons/lounge) +"tMj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/storage) +"tMq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/cargo/storage) +"tMv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 10 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"tMH" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/n2, +/obj/structure/window/reinforced/plasma/spawner/directional/west, +/obj/structure/window/reinforced/plasma/spawner/directional/north, +/obj/effect/turf_decal/tile/dark_red/full, +/obj/effect/turf_decal/tile/dark_red/full, +/obj/effect/turf_decal/tile/neutral/full, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"tMI" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 6 + }, +/turf/open/floor/iron/textured_corner, +/area/station/engineering/atmos) +"tMQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/stack/sheet/cardboard, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/aft/upper) +"tNj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/lobby) +"tNq" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/white/end{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"tNy" = ( +/obj/structure/cable, +/obj/machinery/firealarm/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/tile/purple/diagonal_centre, +/turf/open/floor/iron/white/diagonal, +/area/station/science/research) +"tNN" = ( +/obj/structure/window/spawner/directional/east, +/turf/open/floor/grass, +/area/station/service/hydroponics/garden) +"tNX" = ( +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/obj/item/radio/intercom/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/white/diagonal, +/area/station/medical/medbay/central) +"tOr" = ( +/obj/effect/spawner/liquids_spawner, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/lowered/iron/pool, +/area/station/security/prison) +"tOs" = ( +/obj/structure/sign/warning/pods/directional/south, +/obj/machinery/camera/directional/south{ + c_tag = "Prison - Shuttle Aft"; + network = list("ss13","prison") + }, +/turf/open/floor/glass/reinforced, +/area/station/security/execution/transfer) +"tOA" = ( +/turf/closed/wall, +/area/station/commons/lounge) +"tOI" = ( +/mob/living/simple_animal/bot/floorbot, +/obj/structure/railing, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/aisat_interior) +"tOQ" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/medical/medbay/lobby) +"tOS" = ( +/obj/effect/decal/cleanable/oil, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/turf/open/floor/plating, +/area/station/engineering/supermatter) +"tOZ" = ( +/obj/effect/turf_decal/siding/thinplating, +/obj/structure/table, +/obj/structure/window/spawner/directional/south, +/obj/item/coffee_cartridge/bootleg{ + pixel_x = -8; + pixel_y = 9 + }, +/obj/item/coffee_cartridge/decaf{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/coffee_cartridge/fancy{ + pixel_x = -8; + pixel_y = -1 + }, +/obj/item/coffee_cartridge/bootleg{ + pixel_x = 3; + pixel_y = 9 + }, +/obj/item/coffee_cartridge/decaf{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/coffee_cartridge/fancy{ + pixel_x = 3; + pixel_y = -1 + }, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/exit/departure_lounge) +"tPr" = ( +/turf/open/floor/iron/small, +/area/station/commons/dorms) +"tPt" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/fore) +"tPA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 9 + }, +/obj/effect/landmark/start/quartermaster, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) +"tPD" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/hallway/secondary/command) +"tQt" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/gravity_generator) +"tQA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/service{ + name = "Bar" + }, +/obj/effect/mapping_helpers/airlock/access/all/service/bar, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/poddoor/preopen{ + id = "BarBlastDoor"; + name = "Bar Blast Door" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/service/bar) +"tQF" = ( +/obj/effect/turf_decal/trimline/blue/line, +/obj/effect/landmark/start/paramedic, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/lobby) +"tQM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/blue/filled/warning, +/obj/structure/disposalpipe/junction/flip{ + dir = 2 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/medical/medbay/central) +"tQP" = ( +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/rods/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/stock_parts/cell/high, +/obj/item/stack/sheet/mineral/plasma{ + amount = 30 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/closet/crate/engineering, +/turf/open/floor/engine, +/area/station/engineering/main) +"tQV" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/turf/open/floor/pod/dark, +/area/station/engineering/storage/tech) +"tQY" = ( +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/lesser) +"tRb" = ( +/obj/structure/chair/sofa/right/maroon{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"tRr" = ( +/obj/structure/bed/double, +/obj/item/bedsheet/captain/double, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain/private) +"tRs" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/freezer, +/area/station/medical/pharmacy) +"tRE" = ( +/obj/structure/cable, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"tRQ" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/radio/intercom/directional/north, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/textured_edge, +/area/station/hallway/primary/aft) +"tRW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/large, +/area/station/hallway/primary/fore) +"tRY" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/effect/turf_decal/siding/wood/end{ + dir = 1 + }, +/obj/item/pai_card, +/turf/open/floor/wood, +/area/station/commons/dorms) +"tSb" = ( +/obj/effect/turf_decal/tile/red/anticorner{ + dir = 1 + }, +/turf/open/floor/pod/dark, +/area/station/service/chapel/office) +"tSw" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/blue/filled/warning, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/medical/medbay/central) +"tSx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/greater) +"tSD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/hallway/secondary/command) +"tSH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/green{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/textured, +/area/station/service/hydroponics/garden/abandoned) +"tSO" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/commons/fitness/recreation/entertainment) +"tTp" = ( +/obj/machinery/turretid{ + control_area = "/area/station/ai_monitored/turret_protected/aisat_interior"; + name = "Antechamber Turret control"; + pixel_y = -27 + }, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"tTt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/aft) +"tTw" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/main) +"tTx" = ( +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) +"tTI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/rd) +"tTQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/fore) +"tTU" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating/airless, +/area/station/engineering/atmos) +"tTX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/turf/closed/wall/r_wall, +/area/station/engineering/supermatter) +"tUb" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/atmos/storage/gas) +"tUf" = ( +/obj/structure/sign/logo{ + icon_state = "nanotrasen_sign4"; + pixel_y = 32 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge, +/area/station/hallway/primary/aft) +"tUq" = ( +/obj/structure/bookcase/random/nonfiction, +/turf/open/floor/wood, +/area/station/security/prison/garden) +"tUt" = ( +/obj/structure/disposalpipe/sorting/mail{ + dir = 4; + name = "Kitchen Junction" + }, +/obj/effect/landmark/start/hangover, +/obj/effect/mapping_helpers/mail_sorting/service/kitchen, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/primary/fore) +"tUB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/iron/textured_large, +/area/station/command/cc_dock) +"tUE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/security/lockers) +"tUK" = ( +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"tUO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/grimy, +/area/station/service/chapel) +"tVg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/corner{ + dir = 1 + }, +/area/station/hallway/primary/central) +"tVh" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/siding/wood/end{ + dir = 1 + }, +/turf/open/floor/wood, +/area/station/commons/fitness/recreation/entertainment) +"tVB" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/upper) +"tVH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured, +/area/station/command/cc_dock) +"tVX" = ( +/obj/effect/spawner/random/trash/garbage, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/aft) +"tWj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Desk" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/lobby) +"tWD" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured_corner{ + dir = 4 + }, +/area/station/engineering/power_room) +"tWE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/textured_large, +/area/station/hallway/primary/aft) +"tWR" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Auxillary Power" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/structure/spider/stickyweb, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/electrical) +"tWY" = ( +/obj/machinery/door/firedoor, +/obj/effect/landmark/navigate_destination/tools, +/obj/machinery/door/airlock/public/glass, +/turf/open/floor/iron/textured_large, +/area/station/commons/storage/primary) +"tXe" = ( +/obj/machinery/light_switch/directional/north, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge, +/area/station/maintenance/disposal/incinerator) +"tXm" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_edge, +/area/station/medical/medbay/central) +"tXw" = ( +/obj/effect/turf_decal/tile/green/half{ + dir = 4 + }, +/obj/structure/sink/directional/east, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/service/hydroponics/garden) +"tXy" = ( +/obj/effect/turf_decal/trimline/dark/filled/warning, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/security/office) +"tXE" = ( +/obj/structure/lattice, +/obj/machinery/camera/directional/east{ + c_tag = "AI Satellite - Aft Port"; + name = "ai camera"; + network = list("minisat"); + start_active = 1 + }, +/turf/open/space/basic, +/area/space/nearstation) +"tXP" = ( +/obj/structure/table/reinforced, +/obj/item/folder/yellow{ + pixel_x = -2; + pixel_y = 3 + }, +/obj/item/stamp/head/ce{ + pixel_x = -2; + pixel_y = 3 + }, +/obj/item/computer_disk/engineering{ + pixel_x = 13; + pixel_y = 2 + }, +/turf/open/floor/carpet/orange, +/area/station/command/heads_quarters/ce) +"tYp" = ( +/obj/machinery/chem_mass_spec, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/turf/open/floor/iron/freezer, +/area/station/medical/pharmacy) +"tYr" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/department/security/brig) +"tYS" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/textured, +/area/station/command/cc_dock) +"tZi" = ( +/obj/structure/noticeboard/directional/north, +/obj/machinery/light_switch/directional/east, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/large, +/area/station/hallway/secondary/service) +"tZj" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"tZx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/item/radio/intercom/prison/directional/west, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/security/prison) +"tZP" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/item/paper_bin{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/clipboard{ + pixel_x = 10; + pixel_y = 4 + }, +/obj/item/folder/yellow{ + pixel_x = 10; + pixel_y = 4 + }, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/lobby) +"tZT" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/main) +"tZX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/small, +/area/station/commons/dorms) +"tZZ" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/turf/open/space/basic, +/area/space/nearstation) +"uai" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/sign/logo{ + icon_state = "nanotrasen_sign5"; + pixel_y = 32 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Medbay - Lobby"; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/turf/open/floor/iron/white/textured_edge, +/area/station/medical/medbay/lobby) +"uam" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/closet/lasertag/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/landmark/start/hangover/closet, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/edge, +/area/station/commons/fitness/recreation) +"uap" = ( +/obj/structure/railing, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/green/filled/line, +/turf/open/floor/iron/half, +/area/station/hallway/primary/central) +"uar" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 9 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"uat" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine/atmos/lesser) +"uaz" = ( +/obj/structure/table/wood/fancy/cyan, +/obj/machinery/computer/records/medical/laptop{ + dir = 8; + pixel_x = -2; + pixel_y = 4 + }, +/turf/open/floor/carpet/cyan, +/area/station/command/heads_quarters/blueshield) +"uaE" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/break_room) +"uaG" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L11" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4; + name = "Detectives Junction" + }, +/obj/effect/mapping_helpers/mail_sorting/security/detectives_office, +/turf/open/floor/iron/large, +/area/station/hallway/primary/fore) +"uaI" = ( +/obj/machinery/light_switch/directional/north, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 5 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/interrogation) +"uaX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/fore) +"uba" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/science/explab) +"ubn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/wood, +/area/station/maintenance/department/science/xenobiology) +"ubu" = ( +/obj/structure/table/wood/fancy/black, +/obj/item/reagent_containers/cup/glass/bottle/goldschlager{ + pixel_x = -8; + pixel_y = 2 + }, +/obj/item/reagent_containers/cup/glass/bottle/vodka/badminka{ + pixel_x = 8; + pixel_y = -1 + }, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/item/reagent_containers/cup/glass/bottle/champagne{ + pixel_y = -2 + }, +/obj/machinery/requests_console/directional/west{ + department = "Bar"; + name = "Bar Requests Console" + }, +/turf/open/floor/iron, +/area/station/service/bar) +"ubW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + id_tag = "outerbrig"; + name = "Brig" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/entrance, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "brig-entrance-aft" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/brig) +"ubZ" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 5 + }, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/atmos/pumproom) +"uch" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"uci" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/auxlab/firing_range) +"ucl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/random/structure/steam_vent, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/crew_quarters/bar) +"uco" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/spawner/random/trash/caution_sign, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"ucu" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/camera/directional/north{ + c_tag = "Chapel Access"; + name = "library camera" + }, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/machinery/status_display/evac/directional/north, +/obj/structure/cable, +/turf/open/floor/iron/dark/diagonal, +/area/station/hallway/primary/fore) +"ucx" = ( +/obj/structure/rack/shelf, +/obj/item/reagent_containers/cup/bottle/nitrogen{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/reagent_containers/cup/bottle/mercury{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/reagent_containers/cup/bottle/oxygen{ + pixel_x = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) +"ucB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/command/cc_dock) +"ucH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/dark/visible{ + dir = 8 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"ucK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/textured_large, +/area/station/cargo/miningdock) +"ucR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/spawner/random/vending/snackvend, +/obj/structure/sign/departments/evac/directional/west, +/obj/effect/turf_decal/siding/dark_red, +/turf/open/floor/iron/large, +/area/station/hallway/secondary/exit/departure_lounge) +"ucT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/security/prison) +"ucY" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 9 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/atmos) +"udg" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"udk" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/service/theatre, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/service{ + name = "Theater Backstage" + }, +/turf/open/floor/iron/large, +/area/station/service/theater) +"udn" = ( +/obj/effect/turf_decal/loading_area, +/turf/open/floor/iron/textured_large, +/area/station/cargo/storage) +"udp" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/aft) +"uds" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/brig) +"udR" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/service/hydroponics) +"udZ" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/blue/filled/arrow_cw{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/machinery/flasher/directional/north{ + id = "hopflash"; + pixel_x = 24; + pixel_y = 23 + }, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/secondary/command) +"ueg" = ( +/obj/machinery/airalarm/directional/south, +/mob/living/simple_animal/bot/secbot/pingsky, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/aisat_interior) +"uen" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 4 + }, +/obj/item/storage/belt/utility{ + pixel_y = -10 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/cargo/storage) +"ues" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos/hfr_room) +"uex" = ( +/obj/structure/closet/secure_closet/research_director, +/obj/item/pai_card, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/rd) +"ueA" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/wood, +/area/station/hallway/secondary/entry) +"ueH" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/window/right/directional/south{ + name = "Science Deliveries"; + req_access = list("science") + }, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/white/textured_large, +/area/station/science/auxlab) +"ueO" = ( +/obj/structure/closet/toolcloset, +/obj/item/clothing/glasses/meson/engine, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/power_room) +"ueS" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/brown/filled/corner, +/turf/open/floor/iron/dark/textured_corner, +/area/station/security/prison) +"ueT" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/commons/fitness/recreation) +"ueX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/shieldgen, +/turf/open/floor/engine, +/area/station/engineering/main) +"ueZ" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_edge, +/area/station/security/lockers) +"ufc" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/iron/freezer, +/area/station/medical/treatment_center) +"ufe" = ( +/obj/structure/table, +/obj/effect/spawner/random/clothing/gloves, +/obj/machinery/light/small/directional/west, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/lesser) +"ufk" = ( +/obj/structure/cable, +/obj/machinery/power/solar_control{ + dir = 8; + id = "aftstarboard"; + name = "Starboard Quarter Solar Control" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/solars/starboard/aft) +"ufu" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/window/fulltile, +/turf/open/floor/grass, +/area/station/commons/fitness/recreation/entertainment) +"ufS" = ( +/turf/closed/wall, +/area/station/hallway/primary/aft) +"ufY" = ( +/obj/structure/closet/wardrobe/grey, +/obj/effect/landmark/start/hangover/closet, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/large, +/area/station/commons/fitness/recreation/entertainment) +"ufZ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/landmark/start/mime, +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/checker, +/area/station/service/theater) +"ugr" = ( +/obj/structure/window/spawner/directional/south, +/obj/structure/bed/dogbed{ + anchored = 1; + name = "Gus's bed" + }, +/turf/open/floor/grass, +/area/station/science/research) +"ugu" = ( +/obj/machinery/door/window/brigdoor/left/directional/west{ + name = "Court Cell"; + req_access = list("security") + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/courtroom) +"ugw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/aft) +"ugx" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/turf/open/floor/plating, +/area/station/tcommsat/computer) +"ugz" = ( +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"ugC" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/textured_edge, +/area/station/cargo/drone_bay) +"ugP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/crate_abandoned, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/aft) +"ugT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/cyan, +/area/station/commons/dorms) +"uhb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_green/diagonal_centre, +/turf/open/floor/iron/white/diagonal, +/area/station/medical/virology) +"uhe" = ( +/turf/closed/wall, +/area/station/cargo/lobby) +"uho" = ( +/obj/structure/table, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/storage) +"uhv" = ( +/obj/machinery/status_display/ai/directional/west, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain/private) +"uhE" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/pod, +/area/station/service/chapel/office) +"uhK" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/kirbyplants/organic/plant21, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/carpet/blue, +/area/station/command/bridge) +"uhS" = ( +/obj/structure/closet/preopen, +/obj/item/stack/sheet/rglass{ + amount = 50 + }, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/rods/fifty, +/obj/item/storage/toolbox/emergency, +/obj/effect/spawner/random/engineering/flashlight, +/obj/effect/turf_decal/bot, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/gateway) +"uhX" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/effect/landmark/start/geneticist, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/science/genetics) +"uih" = ( +/obj/machinery/rnd/production/circuit_imprinter/department/science, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/iron/large, +/area/station/science/lab) +"uim" = ( +/obj/structure/chair/sofa/right/brown{ + dir = 4 + }, +/obj/machinery/firealarm/directional/south, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/iron/textured_large, +/area/station/cargo/miningoffice) +"uio" = ( +/obj/machinery/button/door/incinerator_vent_atmos_aux{ + pixel_x = -6; + pixel_y = -25 + }, +/obj/machinery/button/door/incinerator_vent_atmos_main{ + pixel_x = 7; + pixel_y = -25 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/computer/atmos_control/nocontrol/incinerator{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/disposal/incinerator) +"uit" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall9"; + location = "hall8" + }, +/turf/open/floor/iron/textured_edge, +/area/station/hallway/primary/aft) +"uiw" = ( +/turf/open/floor/engine, +/area/station/science/xenobiology) +"uiz" = ( +/obj/structure/window/spawner/directional/north, +/obj/structure/window/spawner/directional/east, +/turf/open/floor/grass, +/area/station/service/hydroponics/garden) +"uiI" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"uiU" = ( +/obj/machinery/door/airlock/external{ + name = "External Solar Access" + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/solars/starboard/fore) +"ujo" = ( +/obj/structure/table/wood/fancy/orange, +/obj/item/reagent_containers/pill/patch/libital{ + pixel_x = 6; + pixel_y = -1 + }, +/obj/item/reagent_containers/pill/patch/aiuri{ + pixel_x = -5; + pixel_y = -1 + }, +/obj/item/flashlight/lamp/green{ + pixel_y = 14 + }, +/turf/open/floor/carpet/orange, +/area/station/command/heads_quarters/ce) +"ujv" = ( +/obj/effect/turf_decal/tile/dark/full, +/obj/structure/window/reinforced/plasma/spawner/directional/west, +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, +/obj/machinery/atmospherics/components/binary/pump/off/yellow/visible{ + dir = 4; + name = "CO2 to Pure" + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"ujy" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white/textured_large, +/area/station/science/genetics) +"ujz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/orange, +/area/station/command/heads_quarters/ce) +"ujJ" = ( +/obj/structure/filingcabinet/security, +/obj/machinery/button/curtain{ + id = "consultant"; + pixel_x = -6; + pixel_y = -24 + }, +/obj/machinery/button/door/directional/south{ + id = "consultantdoor"; + name = "Door Lock"; + normaldoorcontrol = 1; + pixel_x = 4; + pixel_y = -26; + req_access = list("cent_general"); + specialfunctions = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/carpet/green, +/area/station/command/heads_quarters/nt_rep) +"ujK" = ( +/obj/structure/window/reinforced/spawner/directional/north{ + pixel_y = 1 + }, +/obj/structure/window/reinforced/spawner/directional/east{ + layer = 2.9 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"ujY" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 6 + }, +/obj/structure/closet/secure_closet/brig{ + id = "Cell 3"; + name = "Cell 3 Locker" + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/brig) +"ukh" = ( +/turf/open/floor/plating, +/area/station/maintenance/port) +"ukB" = ( +/obj/structure/table/reinforced, +/obj/item/pipe_dispenser, +/obj/item/analyzer, +/obj/machinery/requests_console/directional/west{ + department = "Ordnance Lab"; + name = "Ordnance Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/information, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 9 + }, +/turf/open/floor/iron/textured, +/area/station/science/ordnance/office) +"ukJ" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/cargo/office) +"ukL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/dark_red/arrow_cw{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central) +"ukR" = ( +/obj/structure/closet/secure_closet/security/engine, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/security/checkpoint/engineering) +"ukV" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Old Surgical Theater" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/barricade/wooden/crude, +/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/obj/effect/mapping_helpers/airlock/abandoned, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/greater) +"ull" = ( +/obj/structure/showcase/cyborg/old{ + dir = 4; + pixel_x = -9; + pixel_y = 2 + }, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "AI Core shutters"; + name = "AI Core Shutters" + }, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/ai) +"uln" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/green/corner, +/turf/open/floor/iron/white/side{ + dir = 9 + }, +/area/station/science/research) +"ulp" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/aft) +"ulA" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/central) +"ulH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/engine) +"ulM" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Holodeck Maintenance" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/lesser) +"ulU" = ( +/turf/closed/wall/r_wall, +/area/station/bitrunning/den) +"ulY" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/suit/chaplainsuit/holidaypriest, +/obj/item/clothing/suit/chaplainsuit/nun, +/obj/item/clothing/head/chaplain/nun_hood, +/obj/item/radio/intercom/directional/north, +/obj/machinery/button/door/directional/west{ + id = "Cell1"; + name = "Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/iron/grimy, +/area/station/service/chapel) +"umf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/food_packaging, +/obj/machinery/light/small/directional/west, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine/atmos/lesser) +"uml" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 4 + }, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/service/hydroponics) +"umw" = ( +/obj/structure/cable, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/station/ai_monitored/command/nuke_storage) +"umC" = ( +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"umD" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/textured_edge, +/area/station/hallway/primary/aft) +"umJ" = ( +/obj/structure/table/reinforced/rglass, +/obj/machinery/requests_console/directional/east{ + department = "Bridge"; + name = "Bridge Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/announcement, +/obj/effect/mapping_helpers/requests_console/information, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/item/storage/toolbox/emergency{ + pixel_y = 4 + }, +/obj/item/wrench{ + pixel_y = 6 + }, +/obj/effect/turf_decal/siding/dark_blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue/half{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"umQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/purple/filled/warning, +/obj/structure/disposalpipe/segment, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/science/explab) +"umS" = ( +/obj/effect/turf_decal/bot, +/obj/structure/tank_dispenser, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/storage) +"umU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/status_display/ai/directional/west, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/hallway/secondary/command) +"unc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Auxilliary Surgical Theatres" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/surgery, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/surgery) +"uno" = ( +/obj/machinery/airalarm/directional/north, +/obj/machinery/suit_storage_unit/rd, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/rd) +"unp" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/trimline/green/arrow_cw{ + dir = 1 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Dormitories - Port"; + name = "dormitories camera" + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/small, +/area/station/commons/dorms) +"unI" = ( +/turf/closed/wall, +/area/station/common/night_club) +"unT" = ( +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos/storage/gas) +"unV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ + dir = 1 + }, +/obj/machinery/meter/monitored/distro_loop, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos/pumproom) +"uoe" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"uok" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 10 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/interrogation) +"uom" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/random/directional/south, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"uon" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/upper) +"uox" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/small/directional/east, +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"uoK" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/iron/grimy, +/area/station/commons/vacant_room/office) +"uoM" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "rdoffice"; + name = "Research Director's Shutters" + }, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/station/command/heads_quarters/rd) +"upn" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/turf/open/floor/iron/textured_large, +/area/station/engineering/main) +"ups" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/cup/bottle/multiver{ + pixel_x = 6 + }, +/obj/item/reagent_containers/cup/bottle/epinephrine, +/obj/effect/turf_decal/tile/blue/full, +/obj/item/reagent_containers/syringe, +/obj/structure/curtain, +/turf/open/floor/iron/freezer, +/area/station/medical/treatment_center) +"upt" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass, +/turf/open/floor/iron/large, +/area/station/commons/fitness/recreation/entertainment) +"upB" = ( +/obj/effect/turf_decal/weather/snow, +/obj/machinery/firealarm/directional/north, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/service/kitchen/coldroom) +"upF" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced/plasma, +/turf/open/floor/plating, +/area/station/engineering/gravity_generator) +"upK" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/gloves/color/black, +/obj/item/crowbar/red, +/obj/item/flashlight/seclite, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/greater) +"uqh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 4 + }, +/area/station/security/prison) +"uql" = ( +/obj/effect/turf_decal/siding/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green/half{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/machinery/light/warm/directional/north, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/service/hydroponics/garden) +"uqo" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/radio/intercom/directional/south, +/obj/machinery/duct, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/science/lab) +"uqt" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/wood/large, +/area/station/commons/fitness/recreation/entertainment) +"uqw" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Tech Storage" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/tech_storage, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/landmark/navigate_destination/techstorage, +/turf/open/floor/pod/dark, +/area/station/engineering/storage/tech) +"uqH" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/bot, +/obj/item/stack/sheet/rglass{ + amount = 20; + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/stack/sheet/plasteel/fifty, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos/hfr_room) +"uqT" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/hallway/primary/aft) +"uqV" = ( +/obj/effect/landmark/start/paramedic, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 6 + }, +/obj/machinery/duct, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"uqW" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_edge, +/area/station/science/auxlab) +"uqX" = ( +/obj/structure/sign/poster/contraband/random/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"uqY" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/obj/structure/closet/secure_closet/personal{ + name = "Commissary Locker" + }, +/obj/effect/spawner/random/trash/janitor_supplies, +/obj/effect/spawner/random/bureaucracy/briefcase, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/commons/vacant_room) +"urb" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/table, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/entry) +"urc" = ( +/obj/machinery/computer/mech_bay_power_console, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge, +/area/station/cargo/warehouse) +"urg" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/gravity_generator) +"uri" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/science/xenobiology) +"urj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/main) +"urn" = ( +/obj/effect/turf_decal/tile/blue/full, +/obj/structure/sign/flag/terragov/directional/north, +/turf/open/floor/iron/airless{ + icon_state = "dark_large" + }, +/area/space/nearstation) +"urM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/security_officer, +/obj/effect/turf_decal/tile/red/diagonal_centre, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/office) +"urN" = ( +/obj/machinery/bookbinder, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/grimy, +/area/station/service/library) +"urO" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/atmos) +"urP" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/item/defibrillator/loaded, +/obj/item/clothing/gloves/latex/nitrile, +/obj/item/clothing/gloves/latex/nitrile, +/obj/item/storage/belt/medical{ + pixel_y = 3 + }, +/obj/item/storage/belt/medical{ + pixel_y = 3 + }, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/medical/storage) +"urV" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/folder/blue{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/folder/blue{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_y = 4 + }, +/turf/open/floor/carpet/blue, +/area/station/command/bridge) +"urW" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/science/research, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/science/glass{ + name = "Artifact Testing Lab" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/science/explab) +"usc" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/solars/starboard/fore) +"usd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/blobstart, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/fore) +"usk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/trash_pile, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/science/ordnance_maint) +"usq" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/primary/central) +"uss" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/science/ordnance_maint) +"usz" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/firealarm/directional/south, +/obj/structure/filingcabinet, +/obj/effect/turf_decal/bot, +/obj/machinery/digital_clock/directional/south{ + pixel_y = -39 + }, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/security/checkpoint/engineering) +"usB" = ( +/turf/closed/wall, +/area/station/maintenance/starboard/upper) +"usD" = ( +/obj/effect/turf_decal/trimline/green/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/siding/green{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/service/hydroponics) +"usJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock{ + id_tag = "commissarydoor2"; + name = "Vacant Commissary" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/large, +/area/station/commons/vacant_room/commissary) +"usV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/commons/fitness/recreation/entertainment) +"utq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/closet_empty/crate, +/obj/effect/spawner/random/maintenance/three, +/turf/open/floor/plating, +/area/station/maintenance/department/medical/central) +"utv" = ( +/obj/machinery/light/directional/north, +/obj/structure/closet/secure_closet/miner, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/textured_large, +/area/station/cargo/miningdock) +"utx" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"uty" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/turf/open/floor/iron/textured_corner{ + dir = 1 + }, +/area/station/cargo/office) +"utB" = ( +/obj/effect/turf_decal/trimline/dark_red/arrow_ccw, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central) +"utC" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/airalarm/directional/east, +/obj/structure/disposalpipe/segment, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/iron/dark/textured, +/area/station/security/brig) +"utJ" = ( +/obj/item/kirbyplants/random, +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/secondary/command) +"utK" = ( +/obj/structure/displaycase/trophy, +/turf/open/floor/iron/grimy, +/area/station/hallway/primary/central/fore) +"utM" = ( +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/hallway/primary/aft) +"utT" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/duct, +/obj/effect/landmark/start/geneticist, +/turf/open/floor/iron/white/textured_corner{ + dir = 4 + }, +/area/station/science/genetics) +"utV" = ( +/obj/effect/turf_decal/trimline/dark_red/arrow_cw{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central) +"utW" = ( +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/command/storage/eva) +"utX" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/engineering/glass/critical{ + heat_proof = 1; + name = "Supermatter Chamber" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"utY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/green/arrow_ccw, +/obj/structure/closet/firecloset/wall{ + pixel_y = -32 + }, +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/white/end{ + dir = 1 + }, +/turf/open/floor/iron/small, +/area/station/commons/dorms) +"uue" = ( +/obj/effect/landmark/start/atmospheric_technician, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer2{ + dir = 6 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos/storage) +"uup" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"uuC" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/structure/sign/warning/pods/directional/north, +/turf/open/floor/glass/reinforced, +/area/station/science/research) +"uuD" = ( +/obj/effect/turf_decal/trimline/red/filled/warning, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/security/brig) +"uuF" = ( +/obj/effect/turf_decal/siding/red{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/security/office) +"uuO" = ( +/turf/closed/wall, +/area/station/service/library) +"uvd" = ( +/obj/structure/transit_tube/station/dispenser/reverse{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"uvj" = ( +/turf/closed/wall, +/area/station/maintenance/department/science/ordnance_maint) +"uvk" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/construction/mining/aux_base) +"uvy" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/atmos) +"uvB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/department/engine/atmos) +"uvC" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/gravity_generator) +"uvK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/green/arrow_ccw, +/turf/open/floor/iron/small, +/area/station/commons/dorms) +"uvL" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair/stool/directional/west{ + dir = 2 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/break_room) +"uvW" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/carpet/cyan, +/area/station/command/heads_quarters/blueshield) +"uvX" = ( +/obj/item/radio/intercom/directional/east, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/tile/dark_green/diagonal_centre, +/turf/open/floor/iron/white/diagonal, +/area/station/medical/virology) +"uwg" = ( +/obj/effect/turf_decal/siding/thinplating/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"uwh" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/white/filled/line, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"uwi" = ( +/obj/structure/cable, +/obj/machinery/requests_console/directional/south{ + department = "AI"; + name = "AI Chamber Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/information, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "AI Core shutters"; + name = "AI Core Shutters" + }, +/obj/machinery/door/window/brigdoor/right/directional/west{ + name = "Primary AI Core Acces Door"; + req_access = list("ai_upload") + }, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/ai) +"uwo" = ( +/obj/structure/closet/l3closet/virology, +/obj/machinery/newscaster/directional/north, +/obj/effect/turf_decal/trimline/blue/filled/end{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white, +/area/station/medical/storage) +"uwz" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/floor/has_bulb, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"uwV" = ( +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Warehouse Maintenance" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/lesser) +"uwZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/effect/turf_decal/siding/purple/end{ + dir = 8 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/science/server) +"uxs" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/storage/pod{ + pixel_x = 32 + }, +/obj/effect/turf_decal/siding/red/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/security/office) +"uxG" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/turf/open/floor/plating/airless, +/area/station/engineering/storage) +"uxH" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/hallway/primary/aft) +"uxM" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/telecomms/server/presets/supply, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/station/tcommsat/server) +"uxO" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/landmark/navigate_destination/gateway, +/obj/machinery/door/airlock/rd{ + name = "Gateway Atrium" + }, +/obj/effect/mapping_helpers/airlock/access/any/command/gateway, +/obj/effect/mapping_helpers/airlock/access/any/command/general, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/gateway) +"uxP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/green/warning, +/turf/open/floor/iron/small, +/area/station/commons/dorms) +"uxS" = ( +/turf/open/floor/iron/white/textured_large, +/area/station/commons/fitness/recreation/entertainment) +"uxV" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/obj/machinery/duct, +/obj/effect/turf_decal/trimline/blue/mid_joiner{ + dir = 8 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/medical/storage) +"uyc" = ( +/obj/machinery/camera/directional/west{ + c_tag = "Cargo - Mining" + }, +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/obj/effect/landmark/start/shaft_miner, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 9 + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/miningdock) +"uyk" = ( +/turf/closed/wall, +/area/station/medical/storage) +"uyl" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance, +/obj/item/storage/belt/utility, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/iron/textured_edge, +/area/station/engineering/lobby) +"uyE" = ( +/obj/machinery/light/neon_lining{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/science/xenobiology) +"uyG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/treatment_center) +"uyH" = ( +/obj/structure/window/reinforced/spawner/directional/west{ + layer = 2.9 + }, +/obj/effect/turf_decal/siding/wood, +/obj/item/kirbyplants/random, +/turf/open/floor/wood/large, +/area/station/security/courtroom) +"uyJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/textured_large, +/area/station/hallway/primary/aft) +"uyL" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/atmos) +"uyT" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/machinery/light_switch/directional/east, +/obj/machinery/camera/directional/east{ + c_tag = "Security Post - Engineering" + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/security/checkpoint/engineering) +"uzc" = ( +/obj/structure/table, +/obj/machinery/door/firedoor, +/obj/structure/desk_bell{ + pixel_x = -8 + }, +/obj/item/folder/yellow{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/machinery/door/window/left/directional/east{ + name = "Cargo Desk"; + req_access = list("cargo") + }, +/turf/open/floor/iron/textured, +/area/station/cargo/office) +"uzi" = ( +/obj/machinery/camera/directional/south{ + c_tag = "Science - Starboard Entrance Access"; + network = list("ss13","rd") + }, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/machinery/duct, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/science/lab) +"uzk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Genetics Lab" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/genetics, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/machinery/duct, +/turf/open/floor/iron/white/textured_large, +/area/station/science/genetics) +"uzl" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/chair/office/light{ + color = "#9FED58"; + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/landmark/start/head_of_personnel, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/bot, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hop) +"uzo" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/carpet/black, +/area/station/service/chapel/office) +"uzB" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, +/area/station/service/bar) +"uzN" = ( +/obj/machinery/firealarm/directional/north{ + pixel_x = 5 + }, +/turf/open/floor/carpet/neon/simple/pink, +/area/station/science/xenobiology) +"uzW" = ( +/obj/effect/turf_decal/trimline/dark_red/arrow_ccw, +/obj/structure/sign/poster/official/random/directional/south, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"uzX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured, +/area/station/command/cc_dock) +"uAc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/large, +/area/station/commons/vacant_room/commissary) +"uAf" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/disposal/incinerator) +"uAj" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/siding/red{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/security/office) +"uAl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/science/robotics/lab) +"uAt" = ( +/obj/structure/chair/stool/directional/west, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/theater) +"uAx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/large, +/area/station/commons/fitness/recreation/entertainment) +"uAD" = ( +/obj/structure/spider/stickyweb, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/electrical) +"uAE" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/iron/textured_corner{ + dir = 8 + }, +/area/station/security/checkpoint/engineering) +"uAN" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/window/fulltile, +/obj/structure/disposalpipe/segment, +/turf/open/floor/grass, +/area/station/cargo/lobby) +"uAR" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/hallway/secondary/command) +"uBe" = ( +/obj/structure/showcase/cyborg/old{ + dir = 8; + pixel_x = 9; + pixel_y = 2 + }, +/obj/machinery/status_display/ai/directional/east, +/obj/structure/cable/layer3, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/ai) +"uBg" = ( +/obj/effect/turf_decal/trimline/dark_red/arrow_cw{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"uBu" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/departments/telecomms/directional/west, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/hallway/primary/aft) +"uBw" = ( +/obj/structure/closet/firecloset/wall/directional/west, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"uBK" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/service/hydroponics/garden) +"uBQ" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/science/genetics) +"uBV" = ( +/obj/machinery/door/airlock/external{ + name = "External Solar Access" + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/solars/port/fore) +"uBW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/sorting) +"uCn" = ( +/obj/machinery/portable_atmospherics/canister/plasma, +/turf/open/floor/engine/plasma, +/area/station/engineering/atmos) +"uCv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/loading_area/red{ + dir = 8 + }, +/obj/machinery/door/window/right/directional/east{ + name = "Range" + }, +/obj/structure/window/reinforced/spawner/directional/north{ + pixel_y = 4 + }, +/turf/open/floor/engine, +/area/station/science/auxlab/firing_range) +"uCz" = ( +/obj/item/plate_shard, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"uCS" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/station/command/heads_quarters/cmo) +"uDa" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/machinery/porta_turret/ai, +/obj/machinery/airalarm/directional/west, +/obj/effect/turf_decal/stripes/white/box, +/obj/effect/turf_decal/bot_red, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/ai_upload) +"uDd" = ( +/obj/structure/window/reinforced/survival_pod/spawner/directional/east, +/turf/open/floor/iron/dark/textured_large, +/area/station/commons/fitness/recreation/entertainment) +"uDf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_large, +/area/station/cargo/storage) +"uDh" = ( +/obj/machinery/mecha_part_fabricator, +/obj/machinery/posialert/directional/north, +/obj/effect/turf_decal/tile/dark_red/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_edge, +/area/station/science/robotics/lab) +"uDw" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge, +/area/station/hallway/secondary/entry) +"uDE" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/large, +/area/station/commons/fitness/recreation/entertainment) +"uDM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/crew_quarters/bar) +"uDN" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/light_switch/directional/north{ + pixel_x = 22 + }, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 5 + }, +/turf/open/floor/iron/dark/textured, +/area/station/science/robotics/mechbay) +"uDP" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/pen{ + pixel_y = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/cargo/lobby) +"uDV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/textured_large, +/area/station/common/cryopods) +"uDY" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/flasher/directional/east{ + id = "secentranceflasher"; + pixel_x = 24; + pixel_y = -24 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured, +/area/station/security/brig) +"uDZ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/table/wood/fancy/royalblue, +/obj/machinery/light/warm/directional/north, +/obj/item/folder/syndicate{ + desc = "A folder stamped \"Top Secret - Property of Nanotrasen.\""; + pixel_y = 4 + }, +/obj/item/pen/fourcolor{ + pixel_y = 4 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain/private) +"uEg" = ( +/obj/structure/filingcabinet, +/obj/item/folder/documents, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/station/ai_monitored/command/nuke_storage) +"uEu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/station/security/prison/garden) +"uEA" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/cup/beaker/cryoxadone{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/item/reagent_containers/cup/beaker/cryoxadone{ + pixel_x = 6; + pixel_y = 10 + }, +/obj/item/reagent_containers/cup/beaker/cryoxadone{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/reagent_containers/cup/beaker/cryoxadone{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/pill_bottle/mannitol, +/obj/item/reagent_containers/dropper{ + pixel_y = 6 + }, +/obj/structure/window/spawner/directional/east, +/obj/structure/window/spawner/directional/south, +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/turf/open/floor/iron/dark/textured, +/area/station/medical/medbay/central) +"uEF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/sign/poster/random/directional/east, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/greater) +"uEX" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/white/side, +/area/station/science/lab) +"uFb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/machinery/duct, +/turf/open/floor/iron/freezer, +/area/station/medical/pharmacy) +"uFl" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/department/medical) +"uFo" = ( +/obj/structure/chair/stool/directional/west, +/obj/effect/turf_decal/siding/wood, +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood/large, +/area/station/commons/fitness/recreation/entertainment) +"uFs" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/table/glass, +/obj/item/storage/medkit/regular, +/obj/item/reagent_containers/cup/bottle/multiver, +/obj/item/reagent_containers/syringe, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 6 + }, +/turf/open/floor/iron/white, +/area/station/security/medical) +"uFu" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/cargo/storage) +"uFY" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/machinery/light_switch/directional/west{ + pixel_x = -24 + }, +/obj/structure/cable, +/obj/item/radio/intercom/directional/west{ + pixel_y = -18 + }, +/obj/machinery/computer/records/security{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/security/warden) +"uGj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/airalarm/directional/west, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/security/prison) +"uGk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, +/obj/effect/mapping_helpers/airlock/unres, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Research Satellite Maintenance" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/science/xenobiology) +"uGq" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/duct, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/lobby) +"uGy" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/structure/cable/layer3, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/aisat_interior) +"uGz" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 9 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/brig) +"uGJ" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/firealarm/directional/south, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/medical/medbay/central) +"uGO" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/obj/machinery/light/small/directional/north, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/disposal) +"uGV" = ( +/obj/effect/turf_decal/trimline/green/filled/warning, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/hallway/primary/central/aft) +"uHh" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/disposal) +"uHj" = ( +/obj/structure/tank_dispenser/oxygen{ + pixel_x = -1; + pixel_y = 2 + }, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/turf/open/floor/iron/dark/textured, +/area/station/command/gateway) +"uHn" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/turf_decal/bot, +/obj/machinery/computer/crew, +/obj/machinery/computer/security/telescreen{ + desc = "Used for monitoring medbay to ensure patient safety."; + name = "Medbay Monitor"; + network = list("medbay"); + pixel_y = 32 + }, +/turf/open/floor/iron/freezer, +/area/station/security/checkpoint/medical) +"uHq" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/textured, +/area/station/engineering/power_room) +"uHr" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "cargounload" + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/storage) +"uHz" = ( +/obj/machinery/door/airlock/hatch{ + name = "Starboard EVA Shed" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/eva_shed/starboard) +"uHB" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/rd) +"uHK" = ( +/obj/structure/chair/plastic{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/hallway/secondary/command) +"uHM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/camera/directional/west{ + c_tag = "Command Hallway - Fore Port"; + name = "hallway camera" + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/hallway/secondary/command) +"uHZ" = ( +/turf/closed/wall, +/area/station/service/theater) +"uIc" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/carbon_input{ + dir = 4 + }, +/turf/open/floor/engine/co2, +/area/station/engineering/atmos) +"uIn" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/machinery/computer/shuttle/mining, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_edge, +/area/station/cargo/miningdock) +"uIo" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/machinery/duct, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/virology) +"uIw" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating/airless, +/area/station/engineering/storage_shared) +"uIM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/aft/upper) +"uIR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Teleport Access" + }, +/obj/effect/mapping_helpers/airlock/access/any/command/teleporter, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/navigate_destination/teleporter, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/teleporter) +"uIZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/science/xenobiology) +"uJi" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/turf/open/floor/plating/airless, +/area/station/maintenance/disposal/incinerator) +"uJl" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/washing_machine, +/obj/structure/sign/poster/contraband/blasto_detergent/directional/north, +/obj/item/toy/figure/assistant{ + pixel_y = 11 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/kitchen{ + dir = 1 + }, +/area/station/commons/dorms/laundry) +"uJp" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/engine, +/area/station/engineering/atmos/storage/gas) +"uJu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/obj/structure/sign/warning/test_chamber/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Science - Satellite"; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/purple/diagonal_centre, +/turf/open/floor/iron/white/diagonal, +/area/station/science/research) +"uJx" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/turf/open/floor/plating, +/area/station/engineering/atmos) +"uKe" = ( +/obj/machinery/duct, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"uKg" = ( +/obj/machinery/door/poddoor/incinerator_atmos_aux, +/turf/open/floor/engine, +/area/station/maintenance/disposal/incinerator) +"uKh" = ( +/obj/structure/disposalpipe/junction/yjunction{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/primary/fore) +"uKp" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/primary/fore) +"uKy" = ( +/obj/structure/railing, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/ai) +"uKE" = ( +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/hallway/primary/central/aft) +"uKL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plating, +/area/station/engineering/supermatter/room) +"uKM" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/command) +"uKN" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/grassy, +/obj/structure/flora/bush/flowers_yw, +/turf/open/floor/grass, +/area/station/hallway/secondary/exit/departure_lounge) +"uKQ" = ( +/obj/structure/flora/bush/fullgrass, +/obj/structure/flora/bush/ferny, +/obj/structure/window/fulltile, +/turf/open/floor/grass, +/area/station/hallway/primary/fore) +"uLe" = ( +/turf/open/floor/iron/textured_large, +/area/station/cargo/office) +"uLh" = ( +/obj/machinery/gateway/centerstation, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/textured_large, +/area/station/command/gateway) +"uLn" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/commons/fitness/recreation) +"uLp" = ( +/obj/effect/turf_decal/box, +/obj/machinery/portable_atmospherics/pump, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/science/ordnance/storage) +"uLt" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical/central) +"uLA" = ( +/obj/machinery/power/shuttle_engine/heater, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/lesser) +"uLH" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/lesser) +"uLI" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/iron/grimy, +/area/station/service/lawoffice) +"uLT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/bluespace_beacon, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/command/teleporter) +"uLU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/hallway/secondary/command) +"uLY" = ( +/obj/effect/turf_decal/trimline/dark/filled/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/dark/textured, +/area/station/security/office) +"uMe" = ( +/obj/effect/turf_decal/box/white{ + color = "#52B4E9" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos/hfr_room) +"uMf" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/aft) +"uMi" = ( +/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_ordmix, +/turf/open/floor/engine, +/area/station/science/ordnance/burnchamber) +"uMy" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/large, +/area/station/hallway/primary/fore) +"uMK" = ( +/obj/machinery/door/airlock/engineering{ + name = "Port Quarter Solar Access" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/solars/port/aft) +"uNm" = ( +/obj/machinery/door/airlock/corporate{ + name = "Blueshield's Quarters" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/captain, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/siding/wood/end, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/blueshield) +"uNu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/textured_large, +/area/station/science/xenobiology) +"uNy" = ( +/obj/structure/bed{ + dir = 4 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/camera/directional/north{ + c_tag = "Permabrig - Isolation"; + network = list("ss13","prison") + }, +/turf/open/floor/plating, +/area/station/security/execution/transfer) +"uND" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/window/brigdoor/security/holding/right/directional/north{ + id = "Holding Cell"; + name = "Holding Cell"; + req_access = list("security") + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/holding_cell) +"uNE" = ( +/obj/machinery/computer/scan_consolenew{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/science/genetics) +"uNG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/science/xenobiology) +"uNN" = ( +/obj/structure/table/glass, +/obj/item/folder/white{ + pixel_y = 4 + }, +/obj/item/pen/red{ + pixel_y = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/iron/white/herringbone, +/area/station/medical/virology) +"uNY" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/office) +"uOf" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/grimy, +/area/station/commons/dorms) +"uOg" = ( +/obj/machinery/firealarm/directional/north{ + pixel_x = -16 + }, +/obj/machinery/button/door/directional/north{ + id = "evashutter"; + name = "E.V.A. Shutters"; + req_access = list("command") + }, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/hallway/secondary/command) +"uOs" = ( +/obj/structure/table/glass, +/obj/item/clothing/gloves/latex, +/obj/item/healthanalyzer, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/science, +/obj/effect/turf_decal/trimline/dark_green/filled/line{ + dir = 6 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/white, +/area/station/medical/virology) +"uOt" = ( +/obj/structure/rack, +/obj/machinery/status_display/ai/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/book/manual/wiki/atmospherics, +/obj/item/book/manual/wiki/ordnance{ + pixel_x = 4; + pixel_y = 1 + }, +/obj/item/holosign_creator/atmos, +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/science/ordnance) +"uOv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/grimy, +/area/station/service/library) +"uOO" = ( +/turf/open/floor/wood/large, +/area/station/service/theater) +"uOP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/fore) +"uPe" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/hallway/secondary/construction) +"uPm" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 6 + }, +/obj/machinery/flasher/directional/east{ + id = "secentranceflasher"; + pixel_x = 24; + pixel_y = -24 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/office) +"uPy" = ( +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/ai) +"uPC" = ( +/obj/structure/table/wood, +/obj/effect/spawner/random/trash/soap, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/camera/directional/west{ + c_tag = "Service - Stage Back"; + name = "service camera" + }, +/turf/open/floor/wood/large, +/area/station/service/theater) +"uPL" = ( +/obj/structure/bed/roller{ + dir = 4 + }, +/obj/item/bedsheet/medical, +/obj/machinery/iv_drip, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/security/medical) +"uPN" = ( +/obj/machinery/door/airlock/grunge{ + name = "Chapel" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"uPS" = ( +/obj/structure/sign/poster/contraband/random/directional/east, +/obj/structure/table, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/bitrunning/den) +"uPU" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/plasticflaps/opaque{ + name = "Robotics Deliveries" + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + dir = 4; + location = "Robotics" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/robotics/lab) +"uQf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/lobby) +"uQi" = ( +/obj/structure/cable, +/turf/open/floor/circuit/green, +/area/station/ai_monitored/turret_protected/ai) +"uQm" = ( +/obj/effect/turf_decal/tile/blue/full, +/obj/structure/transit_tube/horizontal{ + dir = 1 + }, +/turf/open/floor/iron/airless{ + icon_state = "dark_large" + }, +/area/space/nearstation) +"uQo" = ( +/obj/effect/turf_decal/trimline/dark_red/arrow_ccw, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central) +"uQV" = ( +/turf/closed/wall/r_wall, +/area/station/ai_monitored/turret_protected/aisat/service) +"uRa" = ( +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/hallway/primary/aft) +"uRb" = ( +/turf/closed/wall, +/area/station/commons/dorms/laundry) +"uRe" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/holosign/barrier/engineering, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/science/ordnance_maint) +"uRm" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/machinery/recharge_station, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/textured_edge, +/area/station/cargo/warehouse) +"uRn" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/station/service/lawoffice) +"uRq" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/button/door/directional/north{ + id = "UnitS"; + name = "Lock Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/obj/structure/drain, +/obj/effect/spawner/random/trash/soap, +/obj/machinery/shower/directional/east, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet) +"uRr" = ( +/obj/structure/chair/comfy/black, +/obj/effect/landmark/start/head_of_security, +/turf/open/floor/glass/reinforced, +/area/station/security/office) +"uRw" = ( +/turf/open/floor/light/colour_cycle/dancefloor_b, +/area/station/common/night_club) +"uRy" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"uRz" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/atmos/hfr_room) +"uRG" = ( +/obj/structure/window/spawner/directional/north, +/obj/effect/turf_decal/weather/sand{ + dir = 4 + }, +/obj/structure/flora/bush/jungle/a/style_3, +/turf/open/floor/grass, +/area/station/science/research) +"uRS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured, +/area/station/command/cc_dock) +"uSd" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/green/arrow_cw{ + dir = 9 + }, +/obj/structure/sign/nanotrasen{ + pixel_y = 32 + }, +/obj/machinery/light/warm/directional/north, +/turf/open/floor/iron/small, +/area/station/commons/dorms) +"uSm" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron/dark/textured, +/area/station/security/warden) +"uSq" = ( +/obj/machinery/smartfridge, +/turf/open/floor/iron/large, +/area/station/service/hydroponics) +"uSr" = ( +/obj/structure/closet/l3closet/janitor, +/obj/effect/turf_decal/tile/dark/fourcorners, +/obj/structure/disposalpipe/segment, +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/noslip, +/area/station/service/janitor) +"uSw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/chair/stool/directional/west{ + pixel_x = -6 + }, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/exit/departure_lounge) +"uSX" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_large, +/area/station/cargo/office) +"uSZ" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/item/ai_module/reset{ + pixel_x = 2; + pixel_y = 8 + }, +/obj/item/ai_module/supplied/freeform, +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/ai_upload) +"uTs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/upper) +"uTt" = ( +/obj/structure/railing{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 5 + }, +/turf/open/floor/iron/corner{ + dir = 8 + }, +/area/station/hallway/primary/central) +"uTv" = ( +/turf/open/floor/engine/vacuum, +/area/station/engineering/atmos) +"uTz" = ( +/obj/structure/chair/comfy/brown{ + color = "#439C1E"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/green, +/area/station/command/heads_quarters/nt_rep) +"uTD" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"uTG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wood/corner, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/wood, +/area/station/commons/vacant_room/office) +"uTI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/sorting) +"uTK" = ( +/obj/structure/flora/bush/sparsegrass, +/obj/structure/window/reinforced/spawner/directional/east{ + layer = 2.9 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/grass, +/area/station/medical/virology) +"uTT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/large, +/area/station/commons/fitness/recreation) +"uTU" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge, +/area/station/cargo/storage) +"uUm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate, +/obj/effect/spawner/random/maintenance/four, +/obj/effect/spawner/random/medical/minor_healing, +/obj/item/storage/box, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/wood, +/area/station/maintenance/port/aft) +"uUq" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 10 + }, +/obj/machinery/light/floor/has_bulb, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"uUB" = ( +/obj/structure/window/reinforced/spawner/directional/east{ + layer = 2.9 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"uUL" = ( +/obj/structure/punching_bag, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/security/prison) +"uUS" = ( +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/obj/machinery/ntnet_relay, +/turf/open/floor/circuit/telecomms/server, +/area/station/tcommsat/server) +"uUT" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"uUU" = ( +/turf/closed/wall, +/area/station/maintenance/port/aft) +"uUY" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/wood, +/obj/structure/curtain/cloth/fancy/mechanical/start_closed{ + desc = "A set of curtains serving as a fancy theater backdrop. They can only be opened by a button."; + id = "theater_curtains"; + name = "Theater Curtains" + }, +/turf/open/floor/wood/large, +/area/station/service/theater) +"uVb" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/warden) +"uVe" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/primary/central/aft) +"uVf" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Mining Dock Airlock"; + space_dir = 4 + }, +/turf/open/floor/catwalk_floor, +/area/station/hallway/primary/aft) +"uVp" = ( +/obj/machinery/light/neon_lining{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"uVG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_large, +/area/station/command/cc_dock) +"uVM" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/machinery/door/airlock/security/glass{ + name = "Prison Wing" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/office) +"uVO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/textured, +/area/station/command/cc_dock) +"uVV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"uVW" = ( +/obj/structure/table/wood, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/machinery/light/warm/directional/east, +/obj/item/paper_bin/carbon{ + pixel_y = 4 + }, +/obj/item/pen{ + pixel_y = 4 + }, +/turf/open/floor/iron/grimy, +/area/station/service/library) +"uVY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/science/robotics/mechbay) +"uWa" = ( +/obj/effect/spawner/random/trash/grime, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"uWd" = ( +/obj/structure/sign/painting/library{ + pixel_y = -32 + }, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/light/warm/directional/south, +/turf/open/floor/wood/large, +/area/station/service/library) +"uWl" = ( +/obj/machinery/firealarm/directional/west, +/turf/closed/wall/r_wall, +/area/station/science/xenobiology) +"uWo" = ( +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/carpet/purple, +/area/station/common/night_club) +"uWp" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos/storage/gas) +"uWz" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/camera/directional/west{ + c_tag = "Aft Primary Hallway - Port"; + name = "hallway camera" + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/hallway/primary/aft) +"uWN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured_large, +/area/station/construction/mining/aux_base) +"uWW" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge, +/area/station/hallway/primary/aft) +"uXa" = ( +/obj/effect/turf_decal/stripes/red/line{ + dir = 4 + }, +/obj/structure/mannequin, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"uXb" = ( +/obj/structure/bed/roller{ + dir = 4 + }, +/obj/item/clothing/glasses/blindfold, +/obj/effect/turf_decal/trimline/dark/filled/line{ + dir = 5 + }, +/obj/item/clothing/suit/jacket/straight_jacket, +/obj/item/clothing/glasses/blindfold, +/obj/item/clothing/mask/muzzle, +/obj/structure/sink/directional/south, +/turf/open/floor/iron/dark/textured, +/area/station/security/office) +"uXf" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/sign/poster/contraband/fun_police/directional/north, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/parquet, +/area/station/common/night_club) +"uXj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"uXx" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/textured_large, +/area/station/cargo/warehouse) +"uXy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/trash_pile, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/aft) +"uXC" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/structure/closet/emcloset/wall{ + pixel_x = -32 + }, +/obj/effect/turf_decal/trimline/white/end{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 4 + }, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/primary/central/aft) +"uXE" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/turf/open/floor/iron/textured_large, +/area/station/hallway/primary/aft) +"uXH" = ( +/obj/structure/sign/plaques/kiddie/library{ + pixel_x = 32 + }, +/obj/structure/bed/dogbed{ + anchored = 1; + name = "Daisy's bed" + }, +/mob/living/basic/rabbit/daisy, +/turf/open/floor/carpet, +/area/station/service/library) +"uXM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/maintenance_hatch, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/aft) +"uYj" = ( +/obj/structure/sign/warning/no_smoking/directional/west, +/turf/closed/wall/r_wall, +/area/station/medical/chemistry) +"uYv" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/textured_corner{ + dir = 1 + }, +/area/station/engineering/atmos) +"uYH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/hallway/primary/fore) +"uYT" = ( +/obj/structure/window/spawner/directional/south, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) +"uYX" = ( +/obj/structure/chair/office/light, +/obj/machinery/button/door/directional/south{ + id = "psych_bolt"; + name = "Bolt Control"; + normaldoorcontrol = 1; + pixel_x = -27; + req_access = list("psychology"); + specialfunctions = 4 + }, +/obj/machinery/status_display/evac/directional/north, +/obj/effect/landmark/start/psychologist, +/turf/open/floor/carpet, +/area/station/medical/psychology) +"uYY" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/chair/plastic{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/commons/fitness/recreation/entertainment) +"uZo" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/crew_quarters/bar) +"uZq" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/cargo/lobby) +"uZu" = ( +/turf/open/floor/grass, +/area/station/security/prison/garden) +"uZB" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/item/kirbyplants/monkey, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/science/research) +"uZU" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/supermatter/room) +"vag" = ( +/obj/machinery/power/shuttle_engine/heater, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/obj/structure/window/reinforced/plasma/spawner/directional/east, +/turf/open/floor/iron/textured, +/area/station/common/night_club) +"vak" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/storage_shared) +"vam" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/carpet/cyan, +/area/station/commons/dorms) +"vaq" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/commons/fitness/recreation/entertainment) +"vau" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine) +"vaG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/stairs{ + dir = 4 + }, +/area/station/bitrunning/den) +"vaL" = ( +/obj/structure/table/reinforced, +/obj/structure/sign/calendar/directional/west, +/obj/machinery/firealarm/directional/south, +/obj/machinery/fax{ + fax_name = "Chief Engineer's Office"; + name = "Chief Engineer's Fax Machine"; + pixel_y = 3 + }, +/turf/open/floor/carpet/orange, +/area/station/command/heads_quarters/ce) +"vaU" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/textured_corner{ + dir = 8 + }, +/area/station/hallway/primary/aft) +"vba" = ( +/obj/effect/turf_decal/box, +/obj/machinery/portable_atmospherics/pump/lil_pump, +/turf/open/floor/engine, +/area/station/science/ordnance/storage) +"vbn" = ( +/obj/machinery/computer/records/security{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/glass/reinforced, +/area/station/security/office) +"vbW" = ( +/obj/machinery/growing/tray, +/turf/open/floor/grass, +/area/station/security/prison/garden) +"vcf" = ( +/obj/structure/chair/stool/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/grimy, +/area/station/commons/lounge) +"vck" = ( +/obj/machinery/recycler{ + dir = 8 + }, +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/disposal) +"vco" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_large, +/area/station/hallway/secondary/construction) +"vcr" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/atmos) +"vcv" = ( +/obj/machinery/mass_driver/chapelgun, +/obj/structure/window/reinforced/spawner/directional/east{ + layer = 2.9 + }, +/turf/open/floor/pod/dark, +/area/station/service/chapel/funeral) +"vcx" = ( +/obj/structure/transit_tube/horizontal{ + dir = 1 + }, +/obj/effect/spawner/structure/window/hollow/reinforced/middle, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/engineering/transit_tube) +"vcy" = ( +/obj/structure/bed, +/obj/item/bedsheet/red, +/obj/effect/landmark/start/prisoner, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 9 + }, +/obj/machinery/button/curtain{ + id = "Cell6Privacy"; + pixel_x = -4; + pixel_y = 24 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"vcW" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/poster/official/random/directional/south, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"vdi" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/bot_white/left, +/turf/open/floor/iron/textured_large, +/area/station/command/gateway) +"vdn" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/effect/turf_decal/box/red, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/textured_corner{ + dir = 1 + }, +/area/station/science/ordnance/testlab) +"vdq" = ( +/obj/effect/turf_decal/bot, +/obj/structure/training_machine, +/obj/item/target/syndicate, +/turf/open/floor/engine, +/area/station/security/range) +"vdw" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"vdM" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/hallway/primary/aft) +"vdV" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/spawner/random/trash/moisture_trap, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/crew_quarters/bar) +"veh" = ( +/turf/closed/wall, +/area/station/maintenance/port/fore) +"vei" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/dish_drive/bullet, +/obj/machinery/light_switch/directional/north, +/obj/machinery/requests_console/auto_name/directional/west, +/obj/machinery/camera/directional/north{ + c_tag = "Security - Shooting Range" + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/range) +"vek" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/stairs/left{ + dir = 1 + }, +/area/station/command/cc_dock) +"vew" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/crew_quarters/bar) +"vey" = ( +/obj/machinery/computer/records/security{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red/diagonal_centre, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/diagonal, +/area/station/hallway/secondary/exit/departure_lounge) +"veD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/moisture_trap, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine) +"veJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/sign/poster/contraband/random/directional/north, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"vfc" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/security/courtroom) +"vfn" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"vfx" = ( +/obj/machinery/corral_corner{ + mapping_id = "5" + }, +/obj/machinery/light/neon_lining{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"vfE" = ( +/obj/structure/table, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/security/prison) +"vfJ" = ( +/obj/structure/sign/departments/security/directional/east, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/hallway/secondary/command) +"vfM" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) +"vfV" = ( +/obj/structure/rack/shelf, +/obj/effect/spawner/random/techstorage/tcomms_all, +/obj/effect/turf_decal/stripes/end, +/turf/open/floor/pod/dark, +/area/station/engineering/storage/tech) +"vga" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hydroponics/glass{ + name = "Hydroponics" + }, +/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics, +/turf/open/floor/iron/large, +/area/station/service/hydroponics) +"vgc" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/bed/dogbed{ + anchored = 1; + name = "Tom's bed" + }, +/turf/open/floor/carpet, +/area/station/medical/psychology) +"vgh" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 6 + }, +/obj/item/gps/science{ + gpstag = "XENO0"; + pixel_y = 5 + }, +/obj/machinery/requests_console/directional/east{ + department = "Xenobiology"; + name = "Xenobiology Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/ore_update, +/obj/item/disk/vacuum_upgrade/biomass, +/obj/item/disk/vacuum_upgrade/biomass, +/obj/item/disk/vacuum_upgrade/biomass, +/obj/item/disk/vacuum_upgrade/biomass, +/obj/item/disk/vacuum_upgrade/biomass, +/turf/open/floor/iron/white, +/area/station/science/xenobiology) +"vgq" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/effect/spawner/random/bureaucracy/pen{ + pixel_y = 4 + }, +/turf/open/floor/iron/grimy, +/area/station/commons/vacant_room/office) +"vgy" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/textured_corner, +/area/station/engineering/main) +"vgz" = ( +/obj/machinery/newscaster/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/fore) +"vha" = ( +/obj/structure/window/reinforced/spawner/directional/east{ + layer = 2.9 + }, +/obj/machinery/door/window/right/directional/north{ + name = "Warehouse Deliveries"; + req_access = list("cargo") + }, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/warehouse) +"vhh" = ( +/obj/structure/flora/bush/jungle, +/obj/structure/window/fulltile, +/turf/open/floor/grass, +/area/station/service/hydroponics) +"vhl" = ( +/obj/machinery/door/airlock{ + id_tag = "Toilet1"; + name = "Toilet Unit 1" + }, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet) +"vhq" = ( +/obj/machinery/vending/imported/mothic, +/obj/structure/sign/poster/contraband/random/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"vhy" = ( +/obj/effect/spawner/random/engineering/atmospherics_portable, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/crew_quarters/bar) +"vhC" = ( +/obj/machinery/porta_turret/ai, +/obj/effect/turf_decal/stripes/white/box, +/obj/structure/sign/nanotrasen{ + pixel_x = 32 + }, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/ai) +"vhP" = ( +/turf/open/floor/engine/co2, +/area/station/engineering/atmos) +"vhU" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/space/basic, +/area/station/solars/aisat) +"vij" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"vik" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/department/medical) +"vio" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/storage) +"viv" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/trimline/dark_red/filled/line, +/obj/item/gun_maintenance_supplies{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = -13; + pixel_y = 3 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/auxlab/firing_range) +"viy" = ( +/obj/structure/window/spawner/directional/south, +/obj/structure/table, +/obj/machinery/cell_charger{ + pixel_y = 3 + }, +/obj/item/stock_parts/cell/high{ + pixel_y = 3 + }, +/obj/effect/turf_decal/trimline/purple/filled/line, +/turf/open/floor/iron/white/side{ + dir = 1 + }, +/area/station/science/lab) +"viA" = ( +/obj/effect/spawner/liquids_spawner, +/obj/structure/railing, +/turf/open/floor/lowered/iron/pool, +/area/station/common/pool) +"vjb" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos/storage) +"vjc" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/kitchen{ + dir = 1 + }, +/area/station/commons/dorms/laundry) +"vjt" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/rack, +/obj/structure/sign/directions/arrival/directional/west{ + pixel_y = 8 + }, +/obj/structure/sign/directions/dorms/directional/west, +/obj/structure/sign/directions/evac/directional/west{ + dir = 2; + pixel_y = -8 + }, +/obj/effect/turf_decal/box/white{ + color = "#9FED58" + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"vjx" = ( +/obj/effect/turf_decal/trimline/dark_red/warning{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/white/end, +/obj/structure/closet/emcloset/wall{ + pixel_y = 32 + }, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central) +"vjE" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Distro to Waste" + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/atmos/pumproom) +"vjO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/bot, +/obj/effect/landmark/start/hangover, +/obj/machinery/newscaster/directional/west, +/obj/machinery/button/door/directional/south{ + id = "Toilet3"; + name = "Lock Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet) +"vjT" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"vjY" = ( +/obj/structure/training_machine, +/obj/item/target, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/large, +/area/station/commons/fitness/recreation/entertainment) +"vka" = ( +/obj/structure/curtain/cloth, +/obj/structure/chair/stool/directional/west, +/obj/structure/window/spawner/directional/south, +/obj/structure/mirror/directional/east, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron/white/small, +/area/station/common/pool) +"vkf" = ( +/obj/machinery/power/solar_control{ + id = "forestarboard"; + name = "Starboard Bow Solar Control" + }, +/obj/structure/cable, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"vkB" = ( +/obj/structure/rack/shelf, +/obj/effect/spawner/random/techstorage/service_all, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/pod/dark, +/area/station/engineering/storage/tech) +"vkC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/prisongate, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/prison) +"vkJ" = ( +/obj/structure/window/spawner/directional/east, +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/machinery/microwave{ + desc = "Cooks and boils stuff, somehow."; + pixel_x = -8; + pixel_y = 5 + }, +/turf/open/floor/wood/large, +/area/station/science/research) +"vkM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/small/directional/west, +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"vkP" = ( +/obj/machinery/light/floor/has_bulb, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_large, +/area/station/command/cc_dock) +"vkT" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/blue/full, +/obj/item/clothing/gloves/latex, +/obj/item/clothing/suit/apron/surgical, +/obj/item/reagent_containers/spray/cleaner, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/iron/freezer, +/area/station/medical/surgery) +"vlh" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/starboard/aft) +"vlt" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/fore) +"vly" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 5 + }, +/obj/structure/chair/sofa/bench/left, +/obj/structure/cable, +/obj/machinery/firealarm/directional/north{ + pixel_x = 7 + }, +/obj/item/radio/intercom/directional/north{ + pixel_x = -10 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"vlF" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/landmark/start/librarian, +/turf/open/floor/cult, +/area/station/service/library) +"vlG" = ( +/obj/structure/chair/sofa/left/brown, +/obj/effect/landmark/start/assistant, +/turf/open/floor/carpet/green, +/area/station/commons/dorms) +"vlP" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/obj/structure/table/reinforced, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/item/storage/medkit/fire{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/radio/off{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/machinery/requests_console/directional/east{ + department = "Engineering"; + name = "Engineering Requests Console" + }, +/turf/open/floor/iron/textured, +/area/station/engineering/lobby) +"vlS" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/n2o, +/obj/structure/window/reinforced/plasma/spawner/directional/north, +/obj/structure/window/reinforced/plasma/spawner/directional/west, +/obj/effect/turf_decal/tile/dark_red/full, +/obj/effect/turf_decal/tile/neutral/full, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"vlU" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos/pumproom) +"vmd" = ( +/obj/structure/trash_pile, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/science/ordnance_maint) +"vmf" = ( +/turf/closed/wall, +/area/station/commons/storage/art) +"vmg" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/burgundy, +/turf/open/space/basic, +/area/station/solars/port/fore) +"vmk" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/bartender, +/turf/open/floor/wood/tile, +/area/station/service/bar) +"vmy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/textured_large, +/area/station/command/cc_dock) +"vmE" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/spawner/random/engineering/canister, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/lesser) +"vmI" = ( +/obj/machinery/vending/wardrobe/gene_wardrobe, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/item/toy/figure/geneticist{ + pixel_y = 18 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/science/genetics) +"vmX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock{ + name = "Hidden Library" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres, +/turf/open/floor/wood, +/area/station/service/library/abandoned) +"vnb" = ( +/turf/closed/wall/r_wall, +/area/station/ai_monitored/security/armory) +"vnc" = ( +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/poddoor/shutters{ + id = "mechbay"; + name = "Mech Bay Shutters"; + dir = 4 + }, +/obj/machinery/button/door/directional/north{ + id = "mechbay"; + name = "Mech Bay Shutters Control"; + req_access = list("robotics") + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/robotics/mechbay) +"vne" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/science/xenobiology) +"vni" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall14"; + location = "hall13" + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/large, +/area/station/hallway/primary/fore) +"vnj" = ( +/obj/structure/transit_tube/curved/flipped{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"vnm" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1; + name = "Air to Distro" + }, +/turf/open/floor/pod, +/area/station/service/chapel/funeral) +"vnu" = ( +/turf/closed/wall/r_wall, +/area/station/medical/virology) +"vnv" = ( +/mob/living/simple_animal/bot/secbot/beepsky/officer, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/office) +"vnO" = ( +/obj/machinery/firealarm/directional/north, +/obj/machinery/light_switch/directional/west, +/obj/structure/table/wood/fancy/black, +/obj/item/flashlight/lamp{ + pixel_y = 5 + }, +/turf/open/floor/carpet/black, +/area/station/command/heads_quarters/qm) +"vnQ" = ( +/obj/structure/chair/sofa/right/brown{ + dir = 4 + }, +/obj/machinery/light_switch/directional/south, +/obj/machinery/camera/directional/south{ + c_tag = "Service - Bar Aft"; + name = "service camera" + }, +/turf/open/floor/iron/grimy, +/area/station/commons/lounge) +"vnY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/portable_atmospherics/scrubber, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/science/ordnance/office) +"vob" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/security/prison) +"vof" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/camera/directional/south{ + c_tag = "Atmospherics - Project Room Closet"; + name = "atmospherics camera" + }, +/obj/item/clothing/head/cone, +/obj/item/clothing/head/cone, +/obj/item/clothing/head/cone, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/atmos) +"voi" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/structure/closet/secure_closet/security/med, +/obj/machinery/firealarm/directional/north, +/obj/machinery/light_switch/directional/north{ + pixel_x = 10 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/freezer, +/area/station/security/checkpoint/medical) +"voz" = ( +/obj/effect/turf_decal/trimline/dark_red/arrow_cw{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"voU" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/light/small/directional/east, +/turf/open/floor/wood, +/area/station/maintenance/port/aft) +"voZ" = ( +/obj/structure/window/spawner/directional/north, +/obj/structure/flora/bush/sparsegrass, +/obj/structure/flora/bush/flowers_yw/style_2, +/turf/open/floor/grass, +/area/station/hallway/secondary/exit/departure_lounge) +"vpo" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/landmark/start/warden, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/warden) +"vps" = ( +/obj/structure/window/reinforced/spawner/directional/west{ + layer = 2.9 + }, +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/directional/north, +/turf/open/floor/wood/large, +/area/station/security/courtroom) +"vpA" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/command) +"vpE" = ( +/obj/machinery/computer/arcade/orion_trail{ + desc = "For gamers only. Casuals need not apply."; + icon_screen = "library"; + icon_state = "oldcomp"; + name = "Gamer Computer" + }, +/obj/item/toy/katana{ + desc = "As seen in your favourite Japanese cartoon."; + name = "anime katana" + }, +/obj/structure/table/wood, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/fore) +"vpR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/holopad/secure, +/obj/effect/turf_decal/bot, +/turf/open/floor/circuit/green, +/area/station/ai_monitored/turret_protected/aisat/service) +"vqa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/structure/cable, +/obj/machinery/firealarm/directional/south{ + pixel_y = -32 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"vqt" = ( +/obj/machinery/computer/rdconsole{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/iron/large, +/area/station/science/lab) +"vqC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/textured, +/area/station/science/research/abandoned) +"vqJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/science/xenobiology) +"vqN" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/primary/fore) +"vqW" = ( +/turf/open/floor/wood, +/area/station/hallway/secondary/entry) +"vrk" = ( +/obj/effect/turf_decal/box/white{ + color = "#EFB341" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos/hfr_room) +"vrl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/machinery/firealarm/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/textured_edge, +/area/station/hallway/primary/aft) +"vrn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/dark_red/diagonal_centre, +/obj/effect/turf_decal/tile/neutral/diagonal_centre, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/execution/transfer) +"vrs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/textured_corner{ + dir = 4 + }, +/area/station/science/genetics) +"vrJ" = ( +/obj/machinery/camera/directional/south{ + c_tag = "Holodeck - Aft"; + name = "holodeck camera" + }, +/turf/open/floor/engine{ + name = "Holodeck Projector Floor" + }, +/area/station/holodeck/rec_center) +"vrU" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/textured_corner{ + dir = 8 + }, +/area/station/engineering/atmos) +"vsc" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/crew_quarters/bar) +"vsd" = ( +/obj/structure/bookcase/random/reference, +/turf/open/floor/wood/large, +/area/station/service/library) +"vsz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/iron/recharge_floor, +/area/station/science/research/abandoned) +"vsH" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine/atmos/lesser) +"vsS" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/textured_corner{ + dir = 8 + }, +/area/station/engineering/lobby) +"vsT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"vti" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "engielock"; + name = "Engineering Lockdown Blast Door" + }, +/turf/open/floor/plating/airless, +/area/station/engineering/main) +"vtr" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/suit/chaplainsuit/holidaypriest, +/obj/item/clothing/suit/chaplainsuit/nun, +/obj/item/clothing/head/chaplain/nun_hood, +/obj/item/radio/intercom/directional/north, +/obj/machinery/button/door/directional/west{ + id = "Cell2"; + name = "Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/iron/grimy, +/area/station/service/chapel) +"vtt" = ( +/obj/structure/sign/warning/vacuum/external/directional/north, +/obj/effect/landmark/start/chaplain, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"vty" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/science/research/abandoned) +"vtC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"vtD" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/fore) +"vtT" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/turf_decal/box, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/freezer, +/area/station/medical/treatment_center) +"vtU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/red/filled/warning, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/security/lockers) +"vud" = ( +/turf/open/floor/iron/textured, +/area/station/maintenance/aft) +"vum" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 5 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/textured, +/area/station/hallway/primary/aft) +"vuq" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "Atmos Supermatter Mix" + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"vus" = ( +/obj/structure/flora/bush/flowers_yw/style_random, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/machinery/airalarm/directional/south, +/obj/machinery/light/small/directional/south, +/turf/open/floor/grass, +/area/station/service/chapel) +"vuu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Cargo Office" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/navigate_destination/cargo, +/turf/open/floor/iron/textured_large, +/area/station/cargo/office) +"vuw" = ( +/obj/machinery/power/tracker, +/obj/structure/cable, +/turf/open/floor/iron/solarpanel/airless, +/area/station/solars/starboard/aft) +"vuz" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/chair/sofa/bench/right, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/iron/textured_large, +/area/station/security/brig) +"vuI" = ( +/obj/effect/mapping_helpers/airlock/access/all/science/rd, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/rd/glass{ + name = "Research Director's Office" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/poddoor/preopen{ + id = "rdoffice"; + name = "Research Director's Shutters" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/white/textured_large, +/area/station/command/heads_quarters/rd) +"vuW" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple/anticorner, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"vvf" = ( +/obj/structure/chair/comfy/brown{ + color = "#439C1E"; + dir = 8 + }, +/turf/open/floor/carpet/blue, +/area/station/command/bridge) +"vvr" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/four, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/science/ordnance_maint) +"vvt" = ( +/obj/structure/lattice, +/obj/structure/sign/nanotrasen{ + pixel_x = -32 + }, +/turf/open/space/basic, +/area/space/nearstation) +"vvx" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"vvA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/grimy, +/area/station/hallway/primary/central/fore) +"vvD" = ( +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "Barshutters"; + name = "Bar Shutters" + }, +/obj/item/storage/box/matches{ + pixel_x = -1; + pixel_y = 6 + }, +/obj/item/lighter{ + pixel_x = 2 + }, +/obj/item/lighter{ + pixel_x = 8; + pixel_y = 4 + }, +/turf/open/floor/iron/large, +/area/station/service/bar) +"vvQ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/hallway/primary/central/aft) +"vvS" = ( +/obj/effect/mapping_helpers/airlock/access/any/medical/chemistry, +/obj/machinery/door/airlock/research{ + name = "Chemical Storage" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/medical/medbay/central) +"vvT" = ( +/obj/machinery/door/firedoor/heavy, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "sci-toxins-circuits" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "ordnance"; + name = "Ordnance Lab Shutters" + }, +/obj/machinery/door/airlock/science{ + name = "Ordnance Lab" + }, +/turf/open/floor/iron/textured_large, +/area/station/science/ordnance) +"vvU" = ( +/obj/machinery/computer/rdservercontrol, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 9 + }, +/obj/item/radio/intercom/directional/north, +/obj/machinery/light_switch/directional/west, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured, +/area/station/science/server) +"vvZ" = ( +/obj/structure/lattice, +/obj/structure/sign/nanotrasen{ + pixel_y = 32 + }, +/turf/open/space/basic, +/area/space/nearstation) +"vwc" = ( +/obj/item/reagent_containers/condiment/milk{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/item/reagent_containers/condiment/sugar{ + pixel_y = 4 + }, +/obj/item/reagent_containers/condiment/soymilk{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/reagent_containers/cup/glass/ice{ + pixel_x = -4; + pixel_y = -2 + }, +/obj/item/reagent_containers/cup/glass/bottle/juice/cream{ + pixel_x = 3; + pixel_y = -2 + }, +/obj/structure/table{ + name = "Jim Norton's Quebecois Coffee table" + }, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/light/warm/directional/south, +/turf/open/floor/wood, +/area/station/hallway/secondary/entry) +"vwe" = ( +/obj/structure/table, +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/botanical_waste{ + pixel_x = -5; + pixel_y = 18 + }, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"vwi" = ( +/obj/machinery/power/smes, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/solars/starboard/fore) +"vwl" = ( +/obj/machinery/conveyor{ + id = "cargodisposals" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/sorting) +"vwn" = ( +/obj/effect/turf_decal/tile/dark_red/anticorner{ + dir = 1 + }, +/obj/machinery/requests_console/auto_name/directional/north, +/obj/effect/turf_decal/delivery, +/obj/structure/rack/gunrack, +/obj/effect/spawner/armory_spawn/mod_lasers_small, +/turf/open/floor/iron/dark/textured_corner, +/area/station/ai_monitored/security/armory) +"vwo" = ( +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/commons/vacant_room) +"vwz" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/composters, +/turf/open/floor/iron/dark/small, +/area/station/security/prison/garden) +"vwJ" = ( +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/cargo/warehouse) +"vwL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/hallway/secondary/command) +"vwV" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/flasher/directional/east{ + id = "AI"; + pixel_x = 23; + pixel_y = -42 + }, +/obj/item/kirbyplants/photosynthetic, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/ai_upload) +"vxe" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"vxv" = ( +/mob/living/basic/butterfly, +/turf/closed/wall/mineral/iron, +/area/station/service/chapel) +"vxA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/station/service/hydroponics/upper) +"vxF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"vxH" = ( +/turf/closed/wall, +/area/station/construction/mining/aux_base) +"vxI" = ( +/obj/structure/votebox, +/obj/structure/noticeboard/staff{ + pixel_y = 32 + }, +/obj/effect/turf_decal/box/red, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/hallway/secondary/command) +"vxO" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/solars/starboard/fore) +"vxT" = ( +/obj/structure/closet/emcloset/wall{ + pixel_y = -32 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/white/end{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"vyc" = ( +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "Barshutters"; + name = "Bar Shutters" + }, +/obj/item/book/manual/wiki/barman_recipes, +/turf/open/floor/iron/large, +/area/station/service/bar) +"vyj" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/dark/textured_edge, +/area/station/hallway/primary/fore) +"vyI" = ( +/obj/effect/turf_decal/trimline/dark_red/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"vyQ" = ( +/obj/effect/turf_decal/trimline/dark_green/filled/line{ + dir = 4 + }, +/obj/machinery/camera/directional/east{ + c_tag = "Virology - Hallway"; + name = "virology camera"; + network = list("ss13","medbay","virology") + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/medical/virology) +"vzg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/plating, +/area/station/maintenance/department/science/ordnance_maint) +"vzj" = ( +/obj/structure/closet/firecloset/wall{ + pixel_x = -32 + }, +/obj/effect/turf_decal/trimline/white/end{ + dir = 4 + }, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/greater) +"vzs" = ( +/obj/structure/frame/machine, +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 6 + }, +/turf/open/floor/iron/textured, +/area/station/hallway/secondary/construction) +"vzv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/commons/storage/primary) +"vzG" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "rdoffice"; + name = "Research Director's Shutters" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/command/heads_quarters/rd) +"vzN" = ( +/obj/structure/chair/comfy{ + color = "#596479"; + dir = 8 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/wood, +/area/station/security/prison/garden) +"vzV" = ( +/obj/item/borg/upgrade/rename, +/obj/effect/turf_decal/tile/dark_red/anticorner/contrasted, +/obj/effect/turf_decal/loading_area, +/turf/open/floor/iron/dark/textured, +/area/station/science/robotics/lab) +"vAk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/port) +"vAt" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/random/trash/garbage, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/aft/upper) +"vAv" = ( +/obj/structure/table/wood/fancy/royalblue, +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/item/paper_bin/carbon{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/item/paper/fluff/ids_for_dummies{ + pixel_x = 11; + pixel_y = 4 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hop) +"vAw" = ( +/obj/machinery/power/shuttle_engine/heater, +/turf/open/floor/plating, +/area/space/nearstation) +"vAC" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/medical/office) +"vAT" = ( +/obj/effect/spawner/random/structure/crate, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"vAX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/lobby) +"vBa" = ( +/obj/machinery/computer/arcade/orion_trail{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/mess) +"vBb" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/station/science/research/abandoned) +"vBd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/greater) +"vBm" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark/opposingcorners{ + dir = 1 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/mess) +"vBt" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/grimy, +/area/station/commons/dorms) +"vBB" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/effect/landmark/start/prisoner, +/turf/open/floor/iron/kitchen, +/area/station/security/prison/mess) +"vBI" = ( +/obj/structure/flora/bush/lavendergrass, +/obj/structure/window/reinforced/spawner/directional/west{ + layer = 2.9 + }, +/mob/living/carbon/human/species/monkey, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/window/right/directional/south{ + name = "Monkey Pen"; + req_access = list("genetics") + }, +/turf/open/floor/grass, +/area/station/science/genetics) +"vBO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/science/xenobiology) +"vBP" = ( +/turf/closed/wall/r_wall, +/area/station/science/genetics) +"vCe" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/delivery, +/turf/open/floor/engine, +/area/station/engineering/atmos/storage/gas) +"vCI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/dark_red/arrow_cw{ + dir = 1 + }, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"vCX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "warehouse_shutters"; + name = "Warehouse Shutters" + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/warehouse) +"vDd" = ( +/obj/structure/anvil, +/turf/open/floor/wood/large, +/area/station/service/barber) +"vDe" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/large, +/area/station/hallway/primary/fore) +"vDi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/crew_quarters/bar) +"vDv" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/computer/monitor{ + name = "backup power monitoring console" + }, +/obj/structure/spider/stickyweb, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/electrical) +"vDx" = ( +/obj/effect/turf_decal/tile/dark_red/diagonal_centre, +/obj/effect/turf_decal/tile/neutral/diagonal_centre, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/execution/transfer) +"vDG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Security Hallway" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/primary/fore) +"vDL" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible, +/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured_corner, +/area/station/engineering/atmos) +"vDT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/spawner/random/trash/cigbutt, +/obj/effect/spawner/random/trash/bin, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft) +"vDY" = ( +/obj/effect/turf_decal/trimline/red/filled/corner, +/turf/open/floor/iron/dark/textured_corner, +/area/station/security/prison) +"vEl" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/hallway/primary/fore) +"vEu" = ( +/obj/item/flashlight/lamp{ + pixel_x = -3; + pixel_y = 13 + }, +/obj/item/phone{ + desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; + pixel_x = 7; + pixel_y = -3 + }, +/obj/item/coin/antagtoken{ + pixel_x = -7; + pixel_y = -1 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Command - Blueshield's Office"; + name = "command camera" + }, +/obj/structure/table/wood, +/obj/structure/noticeboard/captain{ + name = "Blueshield's Notice Board"; + pixel_y = 32 + }, +/turf/open/floor/carpet/cyan, +/area/station/command/heads_quarters/blueshield) +"vEx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/red/filled/corner, +/turf/open/floor/iron/dark/textured_corner, +/area/station/security/lockers) +"vEz" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/duct, +/turf/open/floor/iron/white/textured_large, +/area/station/science/xenobiology) +"vEH" = ( +/obj/machinery/vending/tool, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/edge, +/area/station/commons/storage/primary) +"vEL" = ( +/obj/effect/spawner/random/vending/snackvend, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/large, +/area/station/commons/fitness/recreation/entertainment) +"vEM" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/cutaiwire, +/obj/machinery/door/airlock/security/old{ + name = "Education Chamber" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/execution/education) +"vEP" = ( +/obj/structure/table/glass, +/obj/item/folder/red{ + pixel_x = 5; + pixel_y = 2 + }, +/obj/item/folder/white{ + pixel_x = -6; + pixel_y = 5 + }, +/obj/item/pen{ + pixel_y = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 9 + }, +/obj/machinery/airalarm/directional/west, +/obj/machinery/vending/wallmed/directional/north, +/obj/machinery/camera/directional/north{ + c_tag = "Security - Medbay" + }, +/turf/open/floor/iron/white, +/area/station/security/medical) +"vEX" = ( +/obj/structure/cable, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"vFc" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 5 + }, +/obj/structure/chair/sofa/bench/left, +/obj/machinery/airalarm/directional/north, +/obj/structure/sign/poster/official/space_cops/directional/east, +/turf/open/floor/iron/dark/textured, +/area/station/security/holding_cell) +"vFg" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/drain, +/obj/machinery/door/airlock/public/glass{ + name = "Aft Central Primary Hallway" + }, +/turf/open/floor/iron/large, +/area/station/common/pool) +"vFl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate, +/obj/effect/spawner/random/maintenance/four, +/obj/effect/spawner/random/medical/minor_healing, +/obj/item/storage/box, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/medical/morgue) +"vFr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"vFv" = ( +/turf/open/floor/iron/textured_large, +/area/station/cargo/warehouse) +"vFA" = ( +/obj/structure/flora/bush/sparsegrass, +/obj/structure/window/spawner/directional/south, +/obj/structure/flora/bush/lavendergrass, +/turf/open/floor/grass, +/area/station/hallway/secondary/exit/departure_lounge) +"vFB" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/aft) +"vFE" = ( +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/iron/grimy, +/area/station/commons/vacant_room/office) +"vFF" = ( +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"vFG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/spawner/random/trash/grime, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"vGa" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain/private) +"vGe" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/bot, +/obj/item/book/manual/wiki/atmospherics{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/book/manual/wiki/atmospherics, +/obj/item/wrench, +/obj/item/crowbar/red, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"vGj" = ( +/obj/structure/chair/comfy/brown{ + color = "#439C1E"; + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/nt_rep) +"vGs" = ( +/obj/effect/turf_decal/arrows/white, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos/hfr_room) +"vGz" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/hallway/secondary/command) +"vGA" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/station/service/library) +"vGO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/greater) +"vGT" = ( +/obj/item/radio/intercom/directional/east, +/obj/structure/railing, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/ai) +"vGV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "kitchen_counter"; + name = "Kitchen Counter Shutters" + }, +/obj/structure/table, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"vHa" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/maintenance_hatch, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/aft/greater) +"vHc" = ( +/obj/effect/turf_decal/trimline/blue, +/obj/effect/turf_decal/trimline/blue/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/mid_joiner, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/prison) +"vHg" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/closed/wall, +/area/station/cargo/warehouse) +"vHh" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/box, +/obj/structure/sign/poster/official/moth_piping/directional/north, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"vHj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/textured_large, +/area/station/science/ordnance) +"vHo" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 9 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"vHx" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/atmospherics, +/obj/machinery/firealarm/directional/south, +/obj/machinery/camera/directional/south{ + c_tag = "Atmospherics - Project Room Closet"; + name = "atmospherics camera" + }, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos/hfr_room) +"vHy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/herringbone, +/area/station/medical/virology) +"vHM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/wood, +/turf/open/floor/iron/grimy, +/area/station/commons/vacant_room/office) +"vHV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/fore) +"vHX" = ( +/turf/closed/wall, +/area/station/commons/toilet) +"vHY" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"vHZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/poddoor/preopen{ + id = "brigwindows"; + name = "Brig Front Blast Door" + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/brig) +"vIt" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/box, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"vIv" = ( +/turf/closed/wall/r_wall, +/area/station/ai_monitored/command/nuke_storage) +"vIx" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/ai) +"vIC" = ( +/obj/effect/landmark/atmospheric_sanity/ignore_area, +/turf/closed/wall/mineral/iron, +/area/station/service/chapel/office) +"vIF" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/textured_large, +/area/station/cargo/lobby) +"vII" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/tcommsat/computer) +"vIV" = ( +/obj/effect/turf_decal/trimline/dark_red/warning{ + dir = 8 + }, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central) +"vIY" = ( +/obj/machinery/camera/directional/east{ + c_tag = "Medbay - Charting Office"; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/obj/machinery/airalarm/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 6 + }, +/turf/open/floor/iron/white, +/area/station/medical/office) +"vJm" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/service/theater) +"vJr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/textured_large, +/area/station/cargo/storage) +"vJA" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/interrogation) +"vJB" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/grassy, +/obj/structure/flora/bush/flowers_yw, +/obj/structure/window/reinforced/fulltile, +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "consultant"; + name = "curtain" + }, +/turf/open/floor/grass, +/area/station/command/heads_quarters/nt_rep) +"vJI" = ( +/obj/structure/chair/office, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/iron/grimy, +/area/station/service/library) +"vJJ" = ( +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, +/obj/machinery/meter, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/atmos) +"vJN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/iron/grimy, +/area/station/commons/dorms) +"vJO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/newscaster/directional/east, +/obj/structure/table/wood, +/obj/effect/spawner/random/bureaucracy/stamp, +/turf/open/floor/iron/grimy, +/area/station/commons/vacant_room/office) +"vJT" = ( +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/command) +"vJV" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/modular_computer/preset/cargochat/science, +/obj/effect/turf_decal/trimline/brown/filled/mid_joiner, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/brown/filled/mid_joiner{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/science/auxlab) +"vJY" = ( +/obj/effect/landmark/start/scientist, +/obj/structure/cable, +/turf/open/floor/iron/white/textured_large, +/area/station/science/xenobiology) +"vKh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/herringbone, +/area/station/service/theater) +"vKz" = ( +/obj/structure/disposalpipe/junction{ + dir = 2 + }, +/obj/structure/sign/poster/official/random/directional/east, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/hallway/secondary/command) +"vKC" = ( +/obj/effect/turf_decal/vg_decals/atmos/oxygen, +/turf/open/floor/engine/o2, +/area/station/engineering/atmos) +"vKI" = ( +/obj/machinery/computer/station_alert, +/obj/item/radio/intercom/directional/west{ + freerange = 1; + frequency = 1447; + name = "Private Channel" + }, +/obj/machinery/status_display/ai/directional/north, +/obj/effect/turf_decal/bot, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/aisat/service) +"vKU" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/aft) +"vLd" = ( +/obj/machinery/door/morgue{ + name = "Curator's Study"; + req_access = list("library") + }, +/obj/effect/turf_decal/siding/thinplating/dark/end{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/cult, +/area/station/service/library) +"vLe" = ( +/turf/closed/wall, +/area/station/service/janitor) +"vLk" = ( +/obj/machinery/module_duplicator, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 10 + }, +/obj/structure/sign/nanotrasen{ + pixel_y = -32 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/iron/white, +/area/station/science/auxlab) +"vLm" = ( +/obj/structure/closet/cardboard, +/obj/effect/spawner/random/maintenance, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/iron/five, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/lesser) +"vLz" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/textured_corner{ + dir = 8 + }, +/area/station/engineering/atmos) +"vLO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/greater) +"vLS" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"vLX" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) +"vMa" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/grassy, +/obj/structure/flora/bush/sunny, +/obj/structure/flora/bush/flowers_pp, +/turf/open/floor/grass, +/area/station/hallway/primary/central) +"vMg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/power/energy_accumulator/tesla_coil, +/turf/open/floor/engine, +/area/station/engineering/main) +"vMj" = ( +/obj/structure/window/reinforced/spawner/directional/east{ + layer = 2.9 + }, +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 5 + }, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/secondary/exit/departure_lounge) +"vMr" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine/atmos) +"vMv" = ( +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/effect/turf_decal/trimline/dark_green/filled/line{ + dir = 1 + }, +/obj/machinery/requests_console/directional/north{ + department = "Virology"; + name = "Virology Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/ore_update, +/obj/item/folder/white, +/obj/item/pen/red, +/turf/open/floor/iron/white/textured_edge, +/area/station/medical/virology) +"vMO" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"vMQ" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/primary/central) +"vNc" = ( +/obj/machinery/air_sensor/mix_tank, +/turf/open/floor/engine/vacuum, +/area/station/engineering/atmos) +"vNe" = ( +/obj/structure/chair/comfy/black, +/obj/effect/landmark/start/assistant, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/grimy, +/area/station/hallway/primary/central/fore) +"vNj" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/folder/red{ + pixel_y = 4 + }, +/obj/item/hand_labeler{ + pixel_y = 2 + }, +/obj/machinery/door/window/brigdoor/right/directional/north{ + name = "Customs Desk"; + req_access = list("security") + }, +/turf/open/floor/iron/large, +/area/station/security/checkpoint/customs) +"vNn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/closed/wall/r_wall, +/area/station/science/ordnance/burnchamber) +"vNq" = ( +/obj/structure/table, +/turf/open/floor/glass/reinforced, +/area/station/maintenance/port/fore) +"vNs" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/textured_large, +/area/station/hallway/primary/aft) +"vNu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/engine, +/area/station/medical/chemistry) +"vNz" = ( +/obj/effect/landmark/start/cyborg, +/turf/open/floor/iron/recharge_floor, +/area/station/science/robotics/mechbay) +"vNJ" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/botanical_waste, +/obj/effect/spawner/random/trash/botanical_waste{ + pixel_x = 7; + pixel_y = 8 + }, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"vNT" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/displaycase/captain{ + pixel_y = 5 + }, +/obj/machinery/light_switch{ + pixel_x = 25 + }, +/obj/machinery/light/warm/directional/east, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"vOd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/wood, +/obj/item/storage/briefcase/secure, +/obj/item/grenade/smokebomb, +/obj/effect/turf_decal/siding/wood/end{ + dir = 8 + }, +/turf/open/floor/wood, +/area/station/maintenance/department/engine/atmos) +"vOe" = ( +/turf/closed/wall/r_wall, +/area/station/engineering/lobby) +"vOp" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/aft) +"vOC" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured_edge, +/area/station/maintenance/disposal/incinerator) +"vOF" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/machinery/vending/boozeomat, +/obj/structure/sign/painting/library{ + pixel_x = 32 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"vOI" = ( +/obj/effect/landmark/start/roboticist, +/obj/structure/chair/sofa/corp/right{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/science/robotics/lab) +"vOX" = ( +/turf/closed/wall/r_wall, +/area/station/medical/exam_room) +"vOZ" = ( +/obj/effect/turf_decal/tile/green/diagonal_centre, +/turf/open/floor/iron/diagonal, +/area/station/hallway/secondary/service) +"vPc" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners, +/obj/structure/reagent_dispensers/plumbed{ + dir = 1; + name = "science water reservoir" + }, +/obj/effect/turf_decal/delivery/blue, +/turf/open/floor/iron/textured, +/area/station/commons/vacant_room) +"vPf" = ( +/turf/open/floor/pod/dark, +/area/station/engineering/storage/tech) +"vPk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/maintenance/port/aft) +"vPl" = ( +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/icecream_vat, +/turf/open/floor/iron/diagonal, +/area/station/hallway/secondary/service) +"vPr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 10 + }, +/turf/open/floor/iron/dark/textured, +/area/station/science/xenobiology) +"vPx" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/aft) +"vPC" = ( +/obj/machinery/smartfridge/organ, +/turf/open/floor/iron/white/textured_edge, +/area/station/medical/surgery) +"vPJ" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/gravity_generator) +"vPV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"vQf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/textured_large, +/area/station/command/cc_dock) +"vQk" = ( +/obj/item/kirbyplants/random, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/iron/grimy, +/area/station/hallway/primary/central/fore) +"vQB" = ( +/obj/structure/bed/maint, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 10 + }, +/obj/item/bedsheet/grey, +/obj/machinery/flasher/directional/west{ + id = "brig2"; + pixel_x = -24; + pixel_y = -24 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/brig) +"vQD" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/obj/machinery/atm/directional/south, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/aft) +"vQE" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"vQN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/power/emitter, +/turf/open/floor/engine, +/area/station/engineering/main) +"vQS" = ( +/obj/machinery/airalarm/directional/east, +/obj/structure/flora/bush/flowers_yw/style_random, +/obj/machinery/growing/soil, +/obj/effect/spawner/random/food_or_drink/seed, +/turf/open/floor/grass, +/area/station/service/hydroponics/garden/abandoned) +"vQT" = ( +/obj/structure/flora/grass/jungle/a/style_random, +/obj/structure/flora/bush/sparsegrass/style_random, +/turf/open/misc/asteroid, +/area/station/hallway/secondary/exit/departure_lounge) +"vQW" = ( +/obj/structure/chair/comfy/lime{ + dir = 1 + }, +/obj/machinery/button/door/directional/west{ + id = "Cabin4"; + name = "Dormitory Door Lock"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/carpet/black, +/area/station/commons/dorms) +"vRf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/greater) +"vRi" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/clothing/suit/jacket{ + desc = "All the class of a trenchcoat without the security fibers."; + icon_state = "detective"; + name = "trenchcoat" + }, +/obj/item/clothing/suit/toggle/lawyer/purple, +/obj/item/clothing/head/fedora{ + icon_state = "detective" + }, +/obj/item/clothing/under/rank/civilian/lawyer/beige, +/obj/structure/sign/poster/contraband/busty_backdoor_xeno_babes_6/directional/west, +/obj/effect/turf_decal/siding/wood/end{ + dir = 1 + }, +/turf/open/floor/wood, +/area/station/commons/dorms) +"vRq" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/freezer, +/area/station/medical/pharmacy) +"vRB" = ( +/obj/structure/table, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/turf_decal/tile/dark_red/half/contrasted{ + dir = 8 + }, +/obj/item/surgery_tray, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/science/robotics/lab) +"vRH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/engine, +/area/station/engineering/main) +"vRS" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "Xtestlab"; + name = "Test Chamber Blast Door" + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/science/xenobiology) +"vSb" = ( +/obj/machinery/air_sensor/nitrous_tank, +/turf/open/floor/engine/n2o, +/area/station/engineering/atmos) +"vSc" = ( +/obj/machinery/air_sensor/oxygen_tank, +/turf/open/floor/engine/o2, +/area/station/engineering/atmos) +"vSd" = ( +/obj/structure/table, +/obj/item/multitool/circuit{ + pixel_x = 7 + }, +/obj/item/multitool/circuit, +/obj/item/multitool/circuit{ + pixel_x = -7 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/science/auxlab) +"vSf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"vSg" = ( +/obj/machinery/door/airlock/virology/glass{ + name = "Isolation A" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/virology, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/herringbone, +/area/station/medical/virology) +"vSj" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/crew_quarters/bar) +"vSr" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/co2{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/medical/medbay/central) +"vSv" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/structure/table/reinforced, +/obj/item/folder/white{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = -3; + pixel_y = 4 + }, +/turf/open/floor/iron/freezer, +/area/station/security/checkpoint/medical) +"vSC" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/medical/medbay/lobby) +"vSI" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Hydroponics Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/greater) +"vTb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/iron/textured_large, +/area/station/command/cc_dock) +"vTr" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/atmos) +"vTu" = ( +/obj/structure/table, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/item/storage/medkit/regular{ + pixel_y = 4 + }, +/obj/item/paper/fluff/holodeck/disclaimer, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/commons/fitness/recreation) +"vTF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/closet/emcloset, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/fore) +"vTW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/green/warning{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/small, +/area/station/commons/dorms) +"vUc" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering Storage" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/engine_equipment, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/turf/open/floor/iron/textured_large, +/area/station/engineering/storage) +"vUf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/light_switch/directional/south{ + pixel_y = -24 + }, +/turf/open/floor/carpet/blue, +/area/station/command/bridge) +"vUB" = ( +/obj/machinery/incident_display/delam, +/turf/closed/wall/r_wall, +/area/station/engineering/supermatter) +"vUC" = ( +/obj/structure/chair/pew/left, +/turf/open/floor/iron/chapel{ + dir = 10 + }, +/area/station/service/chapel) +"vUL" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics" + }, +/obj/machinery/door/poddoor/preopen{ + id = "atmoslock"; + name = "Atmospherics Lockdown Blast Door" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/department/engine/atmos/lesser) +"vUR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"vUW" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"vUX" = ( +/obj/structure/closet/firecloset/wall{ + pixel_y = -32 + }, +/obj/effect/turf_decal/trimline/white/end{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/secondary/entry) +"vVb" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/brig) +"vVt" = ( +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/tile/dark_red/half{ + dir = 4 + }, +/obj/vehicle/ridden/secway, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/ai_monitored/security/armory) +"vVF" = ( +/obj/machinery/newscaster/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/broken/directional/south, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/spawner/random/trash/grime, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"vVM" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/large, +/area/station/hallway/primary/fore) +"vVO" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Medbay - Pharmacy"; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/bot_red, +/obj/machinery/chem_heater/withbuffer, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/pharmacy) +"vVT" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/box, +/turf/open/floor/pod, +/area/station/service/chapel) +"vVU" = ( +/obj/machinery/airalarm/directional/west, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/supermatter/room) +"vWb" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/structure/sink/directional/east, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/medical/surgery) +"vWd" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/carpet/orange, +/area/station/command/heads_quarters/ce) +"vWf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/crew_quarters/bar) +"vWi" = ( +/obj/effect/spawner/random/trash/moisture, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"vWs" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/structure/sign/departments/engineering/directional/south, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/aft) +"vWw" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/rd) +"vWy" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/parquet, +/area/station/common/night_club) +"vWC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/lesser) +"vWI" = ( +/obj/machinery/firealarm/directional/south, +/obj/structure/closet/secure_closet/engineering_welding, +/obj/effect/turf_decal/bot, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/main) +"vWN" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/obj/machinery/status_display/ai/directional/north, +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/engineering/break_room) +"vWW" = ( +/obj/effect/turf_decal/trimline/green/corner{ + dir = 1 + }, +/turf/open/floor/iron/large, +/area/station/service/hydroponics) +"vWX" = ( +/obj/structure/sign/picture_frame/portrait/bar{ + pixel_y = 28 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Service - Bar Backroom"; + name = "service camera" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/bed/dogbed{ + anchored = 1; + name = "Pun Pun's bed" + }, +/turf/open/floor/wood/tile, +/area/station/service/bar) +"vWY" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Prison - Perma office"; + dir = 6; + network = list("ss13","prison") + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 6 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/corrections_officer) +"vXf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/textured_large, +/area/station/hallway/secondary/entry) +"vXh" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/window/spawner/directional/east{ + pixel_x = 4 + }, +/obj/effect/turf_decal/tile/green/half, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/window/right/directional/south{ + name = "Service Deliveries"; + req_access = list("cargo") + }, +/obj/effect/turf_decal/trimline/neutral/line, +/obj/effect/turf_decal/trimline/neutral/line, +/obj/effect/turf_decal/trimline/neutral/line, +/obj/effect/turf_decal/trimline/neutral/line, +/obj/effect/turf_decal/trimline/neutral/line, +/obj/effect/turf_decal/trimline/neutral/mid_joiner, +/obj/effect/turf_decal/trimline/neutral/mid_joiner, +/obj/effect/turf_decal/trimline/neutral/mid_joiner, +/obj/effect/turf_decal/trimline/neutral/mid_joiner, +/obj/effect/turf_decal/trimline/neutral/mid_joiner, +/turf/open/floor/iron/textured_large, +/area/station/cargo/sorting) +"vXi" = ( +/obj/structure/cable, +/obj/structure/bodycontainer/morgue{ + dir = 8 + }, +/obj/effect/turf_decal/bot_red, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"vXr" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"vXv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/circuit/green, +/area/station/ai_monitored/turret_protected/ai) +"vXB" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/engine/atmos/lesser) +"vXW" = ( +/obj/machinery/door/poddoor{ + id = "engstorage"; + name = "Secure Storage" + }, +/turf/open/floor/plating/airless, +/area/station/engineering/main) +"vYa" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"vYh" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/turf/open/floor/iron/grimy, +/area/station/service/chapel) +"vYI" = ( +/obj/structure/chair/pew/left, +/turf/open/floor/iron/chapel{ + dir = 9 + }, +/area/station/service/chapel) +"vYJ" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/iron/textured, +/area/station/hallway/secondary/entry) +"vYP" = ( +/obj/item/kirbyplants/random, +/obj/structure/sign/nanotrasen{ + pixel_x = -32 + }, +/turf/open/floor/iron/textured, +/area/station/hallway/secondary/entry) +"vYT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/moisture_trap, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"vZa" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/textured_corner{ + dir = 8 + }, +/area/station/engineering/atmos/hfr_room) +"vZb" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/security/brig) +"vZk" = ( +/obj/machinery/cryopod, +/obj/effect/turf_decal/siding/white, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_large, +/area/station/common/cryopods) +"vZt" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/chair/sofa/bench{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/siding/green{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"vZu" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/machinery/newscaster/directional/east, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/ai_monitored/command/storage/eva) +"vZA" = ( +/obj/machinery/light_switch/directional/east, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/main) +"vZC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "hopblast"; + name = "HoP Blast Door" + }, +/obj/machinery/door/airlock/hop{ + id_tag = "hopdoor"; + name = "Head of Personel's Office" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/hop, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/landmark/navigate_destination/hop, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/hop) +"vZF" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/main) +"vZI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/siding/red, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/office) +"vZM" = ( +/obj/item/storage/fancy/candle_box, +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 6 + }, +/obj/structure/rack{ + icon = 'icons/obj/stationobjs.dmi'; + icon_state = "minibar"; + name = "skeletal minibar" + }, +/turf/open/floor/cult, +/area/station/service/library) +"vZV" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/turf_decal/box, +/obj/structure/sign/poster/official/wtf_is_co2/directional/west, +/turf/open/floor/engine, +/area/station/science/ordnance/storage) +"wab" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/cup/glass/bottle/holywater{ + pixel_x = -2; + pixel_y = 2 + }, +/turf/open/floor/carpet/black, +/area/station/service/chapel/office) +"wag" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/window{ + dir = 8; + id = "ChemStorage"; + name = "Chemical Storage Shutters" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) +"wav" = ( +/obj/effect/turf_decal/siding/dark_blue/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue/half{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"waB" = ( +/obj/machinery/vending/assist, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/edge, +/area/station/commons/storage/primary) +"waK" = ( +/obj/machinery/firealarm/directional/east, +/obj/machinery/photobooth/security, +/turf/open/floor/glass/reinforced, +/area/station/security/execution/transfer) +"waM" = ( +/obj/item/radio/intercom, +/obj/structure/table/wood/fancy/red, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/large, +/area/station/security/courtroom) +"waR" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/effect/turf_decal/tile/red/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/commons/lounge) +"waT" = ( +/obj/structure/railing{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 6 + }, +/turf/open/floor/iron/corner{ + dir = 1 + }, +/area/station/hallway/primary/central) +"waX" = ( +/obj/structure/rack/shelf, +/obj/item/storage/toolbox/mechanical, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/gps/engineering{ + gpstag = "CE0" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/ce) +"wbf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset, +/turf/open/floor/iron/textured, +/area/station/hallway/primary/aft) +"wbv" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/obj/structure/sign/departments/security/directional/east, +/obj/effect/landmark/start/hangover, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"wbx" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Aft Central Primary Hallway" + }, +/turf/open/floor/iron/large, +/area/station/commons/dorms) +"wbB" = ( +/obj/structure/window/reinforced/spawner/directional/west{ + layer = 2.9 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 9 + }, +/obj/structure/rack, +/obj/item/storage/box/syringes{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/storage/box/beakers{ + pixel_x = 6; + pixel_y = 10 + }, +/obj/effect/turf_decal/bot, +/obj/item/wrench, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/science/xenobiology) +"wbC" = ( +/obj/structure/hedge, +/obj/machinery/status_display/evac/directional/west, +/obj/effect/turf_decal/siding/wood/end{ + dir = 1 + }, +/turf/open/floor/wood, +/area/station/commons/fitness/recreation/entertainment) +"wbG" = ( +/obj/effect/turf_decal/siding/thinplating, +/obj/structure/table, +/obj/machinery/coffeemaker, +/obj/structure/window/spawner/directional/south, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/exit/departure_lounge) +"wbW" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/wood, +/area/station/service/library/abandoned) +"wcb" = ( +/obj/structure/chair/sofa/left/maroon{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"wck" = ( +/turf/closed/wall, +/area/station/commons/fitness/recreation/entertainment) +"wcq" = ( +/obj/item/storage/briefcase/secure{ + pixel_x = 1; + pixel_y = 4 + }, +/obj/item/taperecorder{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/flashlight/seclite{ + pixel_x = -12; + pixel_y = 11 + }, +/obj/structure/cable, +/obj/structure/table/reinforced/plastitaniumglass, +/turf/open/floor/carpet/royalblack, +/area/station/command/heads_quarters/hos) +"wcM" = ( +/obj/machinery/power/shieldwallgen/anchored{ + shield_range = 14 + }, +/obj/effect/turf_decal/stripes/box, +/obj/structure/cable, +/turf/open/floor/iron/textured, +/area/station/maintenance/eva_shed/port) +"wcN" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Storage"; + req_access = list("medical") + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/machinery/duct, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/storage) +"wcS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/random/directional/south, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/aft) +"wcU" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/bot, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos/hfr_room) +"wdu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 5 + }, +/turf/open/floor/iron/dark/textured, +/area/station/science/xenobiology) +"wdv" = ( +/obj/structure/easel, +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/bot_white, +/obj/item/canvas/twentythree_twentythree, +/turf/open/floor/iron/grimy, +/area/station/service/library) +"wdO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/science/ordnance_maint) +"wdQ" = ( +/obj/structure/flora/bush/large, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/grass, +/area/station/medical/virology) +"wel" = ( +/obj/effect/turf_decal/trimline/blue/mid_joiner, +/turf/open/space/basic, +/area/space) +"wev" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood, +/area/station/security/prison/garden) +"wex" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"weV" = ( +/obj/structure/table, +/obj/item/paper_bin/construction, +/obj/item/stack/pipe_cleaner_coil/random, +/obj/item/stack/pipe_cleaner_coil/random, +/obj/item/stack/pipe_cleaner_coil/random, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/commons/storage/art) +"weW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light_switch/directional/south, +/obj/effect/decal/cleanable/oil, +/obj/structure/spider/stickyweb, +/obj/structure/cable, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/electrical) +"wfa" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 10 + }, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/item/radio/intercom/directional/south, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/white, +/area/station/medical/storage) +"wfk" = ( +/obj/machinery/door/airlock/medical{ + name = "Medbay Office" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/office) +"wfp" = ( +/obj/structure/closet, +/obj/structure/window/spawner/directional/south, +/obj/item/clothing/under/costume/nova/bathrobe, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white/small, +/area/station/common/pool) +"wfJ" = ( +/obj/structure/table, +/obj/machinery/button/curtain{ + id = "prisonlibrarycurtain"; + pixel_x = 24 + }, +/obj/machinery/computer/libraryconsole/bookmanagement, +/turf/open/floor/wood, +/area/station/security/prison/garden) +"wfL" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/ce) +"wfM" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/obj/item/radio/intercom/directional/east, +/obj/item/kirbyplants/random, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/cargo/office) +"wfU" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/iron/stairs/right{ + dir = 8 + }, +/area/station/maintenance/disposal/incinerator) +"wfV" = ( +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/turf/open/floor/iron/white/diagonal, +/area/station/medical/medbay/central) +"wfX" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"wga" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/primary/central/aft) +"wgl" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/medical/treatment_center) +"wgo" = ( +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/commons/storage/primary) +"wgB" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics Storage" + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos/storage) +"wgI" = ( +/obj/machinery/door/airlock/maintenance{ + name = "EVA Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/eva, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/greater) +"whl" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark/fourcorners, +/obj/effect/landmark/start/janitor, +/turf/open/floor/noslip, +/area/station/service/janitor) +"whm" = ( +/obj/structure/table/wood/fancy, +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"whu" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 10 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"whS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/all/command/gateway, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Gateway Maintenance" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/fore) +"whY" = ( +/obj/structure/closet/secure_closet/evidence, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured, +/area/station/security/warden) +"wia" = ( +/obj/structure/transit_tube/curved{ + dir = 8 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"wik" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/obj/structure/cable, +/turf/open/floor/iron/textured_large, +/area/station/engineering/main) +"wir" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine Room" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/supermatter/room) +"wiv" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/structure/chair/sofa/bench{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/cargo/lobby) +"wiy" = ( +/obj/effect/turf_decal/siding/thinplating, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/exit/departure_lounge) +"wiz" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/greater) +"wiF" = ( +/obj/machinery/light/small/directional/west, +/obj/machinery/door/window/left/directional/north{ + name = "Coffin Storage"; + req_access = list("chapel_office") + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/pod/dark, +/area/station/service/chapel/funeral) +"wiP" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Chamber Extract" + }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/engine_access, +/obj/effect/mapping_helpers/airalarm/link{ + chamber_id = "engine" + }, +/obj/effect/mapping_helpers/airalarm/tlv_no_checks, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"wjk" = ( +/obj/machinery/drone_dispenser, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/science/robotics/mechbay) +"wjq" = ( +/obj/machinery/camera/directional/east{ + c_tag = "Security - Detective's Office" + }, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron/grimy, +/area/station/security/detectives_office) +"wjA" = ( +/obj/effect/turf_decal/tile/dark_red/fourcorners, +/obj/effect/turf_decal/loading_area, +/obj/structure/fireaxecabinet/mechremoval/directional/east, +/turf/open/floor/iron/dark/textured, +/area/station/science/robotics/lab) +"wjH" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_large, +/area/station/cargo/office) +"wjI" = ( +/turf/closed/wall, +/area/station/maintenance/department/crew_quarters/bar) +"wjJ" = ( +/obj/machinery/netpod, +/obj/machinery/light/small/blacklight/directional/west, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/bitrunning/den) +"wjM" = ( +/obj/machinery/status_display/evac/directional/north, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/secondary/command) +"wjR" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/white/textured_edge, +/area/station/medical/medbay/central) +"wka" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"wkc" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/lesser) +"wkj" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet, +/area/station/security/detectives_office) +"wkm" = ( +/obj/structure/nestbox, +/turf/open/floor/grass, +/area/station/service/hydroponics/upper) +"wkK" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/status_display/ai/directional/south, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/power_room) +"wkP" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/dark_green/filled/corner{ + dir = 1 + }, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/textured_corner{ + dir = 1 + }, +/area/station/medical/virology) +"wkT" = ( +/obj/machinery/atmospherics/components/tank/air{ + dir = 8 + }, +/obj/machinery/status_display/ai/directional/north, +/obj/structure/sign/nanotrasen{ + pixel_x = 32 + }, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/aisat/atmos) +"wkU" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured_edge, +/area/station/hallway/primary/aft) +"wld" = ( +/obj/structure/railing, +/obj/structure/bed, +/obj/structure/fluff/beach_umbrella/syndi, +/turf/open/floor/iron/white/small, +/area/station/common/pool) +"wlh" = ( +/obj/machinery/incident_display/delam, +/turf/closed/wall, +/area/station/engineering/main) +"wlj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_large, +/area/station/cargo/office) +"wlk" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/primary/central/aft) +"wlp" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/grimy, +/area/station/commons/lounge) +"wlK" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + id_tag = "innerbrig"; + name = "Security Office" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/security/entrance, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/brig) +"wlV" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + dir = 5; + name = "blue line" + }, +/turf/open/floor/engine/vacuum, +/area/station/science/ordnance/freezerchamber) +"wma" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_large, +/area/station/cargo/storage) +"wme" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/engine/atmos/lesser) +"wmj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/chair/comfy/brown{ + color = "#439C1E"; + dir = 8 + }, +/obj/machinery/firealarm/directional/north, +/obj/machinery/light/warm/directional/north, +/turf/open/floor/carpet/green, +/area/station/command/heads_quarters/nt_rep) +"wmv" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/window/fulltile, +/turf/open/floor/grass, +/area/station/commons/fitness/recreation) +"wmF" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/theater) +"wmH" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/blue/full, +/obj/structure/window/spawner/directional/west, +/obj/item/clothing/suit/jacket/straight_jacket, +/obj/item/clothing/suit/jacket/straight_jacket, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/glasses/blindfold, +/obj/item/clothing/glasses/blindfold, +/obj/item/clothing/mask/muzzle, +/obj/item/clothing/mask/muzzle, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/freezer, +/area/station/medical/surgery) +"wna" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + layer = 2.9; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_y = 4 + }, +/turf/open/floor/carpet/black, +/area/station/service/chapel/office) +"wnd" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron/textured_large, +/area/station/cargo/miningdock) +"wne" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/service/hydroponics) +"wnq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ + dir = 1 + }, +/turf/open/floor/iron/textured_large, +/area/station/science/ordnance) +"wnu" = ( +/turf/closed/wall/r_wall, +/area/station/security/range) +"wnY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/fore) +"woi" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/station/medical/psychology) +"wok" = ( +/obj/machinery/computer/operating{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"wop" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/entry) +"wot" = ( +/obj/machinery/computer/monitor{ + name = "bridge power monitoring console" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"wov" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"woA" = ( +/mob/living/carbon/human/species/monkey, +/obj/structure/flora/bush/sparsegrass, +/obj/structure/window/reinforced/spawner/directional/east{ + layer = 2.9 + }, +/turf/open/floor/grass, +/area/station/medical/virology) +"woB" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/large, +/area/station/hallway/primary/fore) +"woC" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"woG" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"woH" = ( +/obj/docking_port/stationary{ + dheight = 4; + dir = 2; + dwidth = 4; + height = 9; + name = "Aux Base Zone"; + roundstart_template = /datum/map_template/shuttle/aux_base/default; + shuttle_id = "aux_base_zone"; + width = 9 + }, +/turf/open/floor/plating, +/area/station/construction/mining/aux_base) +"woJ" = ( +/turf/open/floor/iron/textured, +/area/station/maintenance/department/science/xenobiology) +"woK" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/structure/chair{ + dir = 1 + }, +/obj/item/toy/figure/prisoner, +/obj/machinery/flasher/directional/south{ + id = "justiceflash" + }, +/turf/open/floor/engine, +/area/station/security/execution/education) +"woM" = ( +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/solars/starboard/fore) +"woT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/pod, +/area/station/service/chapel) +"woX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/purple/filled/end{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/corrections_officer) +"woY" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/entry) +"wpp" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/grass, +/area/station/security/prison/garden) +"wpv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/security/checkpoint/science/research) +"wpy" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/atmos/pumproom) +"wpD" = ( +/obj/effect/landmark/start/ai/secondary, +/obj/item/radio/intercom/directional/north{ + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_x = -8 + }, +/obj/item/radio/intercom/directional/west{ + freerange = 1; + listening = 0; + name = "Common Channel" + }, +/obj/item/radio/intercom/directional/south{ + freerange = 1; + frequency = 1447; + listening = 0; + name = "Private Channel"; + pixel_x = -8 + }, +/turf/open/floor/circuit/green, +/area/station/ai_monitored/turret_protected/ai) +"wpK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"wpL" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/textured_corner, +/area/station/engineering/storage) +"wpR" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/textured_large, +/area/station/hallway/primary/aft) +"wpS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured_large, +/area/station/cargo/miningdock) +"wqd" = ( +/turf/closed/wall, +/area/station/service/kitchen/abandoned) +"wqg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/science/ordnance_maint) +"wqw" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/folder/yellow, +/obj/item/assault_pod/mining, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/textured, +/area/station/construction/mining/aux_base) +"wqx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/cmo) +"wqE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_large, +/area/station/cargo/lobby) +"wqW" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple/diagonal_centre, +/obj/machinery/station_map/engineering/directional/south, +/turf/open/floor/iron/white/diagonal, +/area/station/science/research) +"wrg" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/engine/atmos) +"wrn" = ( +/obj/structure/chair/stool/directional/west{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/iron/cafeteria, +/area/station/service/cafeteria) +"wrA" = ( +/obj/structure/rack, +/obj/item/clothing/head/helmet/sec{ + pixel_y = 6 + }, +/obj/item/clothing/head/helmet/sec{ + pixel_x = -6; + pixel_y = -4 + }, +/obj/item/clothing/head/helmet/sec{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/structure/window/reinforced/spawner/directional/north{ + pixel_y = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/spawner/random/armory/bulletproof_helmet, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/security/armory) +"wrH" = ( +/obj/item/folder/red, +/obj/item/clothing/mask/gas/sechailer, +/obj/structure/table/reinforced/rglass, +/turf/open/floor/glass/reinforced, +/area/station/security/office) +"wrL" = ( +/turf/open/floor/pod, +/area/station/service/chapel) +"wrM" = ( +/obj/structure/closet/emcloset/wall{ + pixel_y = -32 + }, +/obj/effect/turf_decal/trimline/white/end{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 1 + }, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/glass/reinforced, +/area/station/security/execution/transfer) +"wrO" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/lobby) +"wrR" = ( +/obj/effect/spawner/random/structure/girder, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/greater) +"wrT" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/flora/grass/jungle, +/obj/structure/window/fulltile, +/turf/open/floor/grass, +/area/station/service/kitchen) +"wrZ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/station/hallway/secondary/entry) +"wsc" = ( +/obj/effect/spawner/random/engineering/atmospherics_portable, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/lesser) +"wse" = ( +/obj/structure/table, +/obj/machinery/feed_machine{ + pixel_y = 4 + }, +/obj/item/chicken_feed{ + pixel_y = 10; + pixel_x = -5 + }, +/turf/open/floor/wood, +/area/station/service/hydroponics/upper) +"wsg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/greater) +"wsk" = ( +/obj/machinery/duct, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light/neon_lining{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"wsl" = ( +/obj/machinery/vending/autodrobe, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/herringbone, +/area/station/service/theater) +"wsm" = ( +/obj/machinery/computer/crew, +/obj/effect/turf_decal/tile/dark_blue/half{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"wsr" = ( +/obj/machinery/computer/crew, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"wst" = ( +/obj/item/hand_tele, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/structure/table, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/dark/textured_edge, +/area/station/command/teleporter) +"wsy" = ( +/obj/effect/turf_decal/trimline/green/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/small, +/area/station/commons/dorms) +"wsA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured_large, +/area/station/engineering/supermatter/room) +"wsD" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/radio/headset/headset_srvmed{ + pixel_x = -1; + pixel_y = 2 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet, +/area/station/medical/psychology) +"wsN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/crew_quarters/bar) +"wsP" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge, +/area/station/cargo/lobby) +"wsQ" = ( +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/obj/effect/landmark/start/shaft_miner, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/miningdock) +"wsR" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 8 + }, +/obj/machinery/power/terminal{ + dir = 4 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"wsY" = ( +/obj/machinery/field/generator, +/turf/open/floor/engine, +/area/station/engineering/main) +"wsZ" = ( +/obj/structure/closet/emcloset/wall{ + pixel_y = 32 + }, +/obj/effect/turf_decal/trimline/white/end, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/white/mid_joiner, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 4 + }, +/turf/open/floor/glass/reinforced, +/area/station/medical/medbay/central) +"wtc" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/showroomfloor, +/area/station/medical/coldroom) +"wtg" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/rack, +/obj/effect/spawner/random/armory/riot_helmet, +/obj/effect/spawner/random/armory/bulletproof_armor, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/security/armory) +"wtJ" = ( +/obj/effect/turf_decal/trimline/dark_red/arrow_ccw, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"wtQ" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/grassy, +/obj/structure/flora/bush/flowers_yw, +/mob/living/basic/deer, +/turf/open/floor/grass, +/area/station/hallway/secondary/exit/departure_lounge) +"wtS" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured, +/area/station/security/office) +"wue" = ( +/obj/structure/table, +/obj/item/stack/sheet/iron/fifty{ + pixel_y = 4 + }, +/obj/item/stack/sheet/glass/fifty{ + pixel_y = 4 + }, +/obj/item/stock_parts/matter_bin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/micro_laser, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/scanning_module{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stock_parts/scanning_module{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 6 + }, +/obj/structure/sign/warning/electric_shock/directional/south, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white, +/area/station/science/auxlab) +"wuo" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/security/lockers) +"wuT" = ( +/obj/structure/rack, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 9 + }, +/obj/item/crowbar, +/obj/item/wrench, +/obj/item/clothing/mask/gas, +/obj/item/radio, +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white, +/area/station/security/checkpoint/science/research) +"wuU" = ( +/obj/machinery/power/shuttle_engine/heater, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/obj/structure/window/reinforced/plasma/spawner/directional/east, +/turf/open/floor/iron/textured, +/area/station/commons/vacant_room/office) +"wuW" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/cargo/storage) +"wvh" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 9 + }, +/turf/open/floor/iron/textured_large, +/area/station/science/ordnance) +"wvi" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/trimline/green/arrow_cw{ + dir = 1 + }, +/obj/structure/sign/poster/official/no_erp/directional/north, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/small, +/area/station/commons/dorms) +"wvu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/bed/dogbed{ + anchored = 1; + name = "E-N's bed" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/robotics/lab) +"wvy" = ( +/obj/machinery/vending/wardrobe/sec_wardrobe, +/obj/machinery/requests_console/auto_name/directional/north, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/edge, +/area/station/security/checkpoint/customs) +"wvG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/obj/effect/spawner/random/maintenance/four, +/obj/effect/spawner/random/engineering/vending_restock, +/obj/item/stack/sheet/glass{ + amount = 4 + }, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/greater) +"wvK" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/effect/turf_decal/trimline/blue/filled/warning, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/atmos) +"wvU" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/white/textured_edge, +/area/station/hallway/primary/fore) +"wwe" = ( +/obj/structure/chair/sofa/right/brown{ + dir = 1 + }, +/obj/machinery/light/warm/directional/south, +/obj/item/radio/intercom/directional/south, +/obj/effect/landmark/start/assistant, +/turf/open/floor/carpet, +/area/station/commons/dorms) +"wwf" = ( +/obj/machinery/disposal/delivery_chute{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/textured_large, +/area/station/cargo/sorting) +"wwA" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/spawner/random/entertainment/deck, +/turf/open/floor/iron/dark/textured, +/area/station/medical/break_room) +"wwD" = ( +/obj/machinery/photocopier, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/machinery/airalarm/directional/west, +/obj/machinery/status_display/evac/directional/south, +/obj/effect/turf_decal/bot, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"wwH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Fore Primary Hallway" + }, +/obj/structure/sign/directions/upload/directional/west{ + pixel_y = 8 + }, +/obj/structure/sign/directions/science/directional/west{ + dir = 2 + }, +/obj/structure/sign/directions/medical/directional/west{ + dir = 2; + pixel_y = -8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/command) +"wwN" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/science/robotics/lab) +"wwP" = ( +/obj/machinery/teleport/station, +/obj/machinery/status_display/evac/directional/west, +/obj/machinery/camera/directional/west{ + c_tag = "AI Satellite - Teleporter"; + name = "ai camera"; + network = list("minisat"); + start_active = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/aisat/service) +"wwU" = ( +/obj/structure/chair{ + dir = 1; + name = "Defense" + }, +/obj/effect/turf_decal/siding/wood, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/wood/large, +/area/station/security/courtroom) +"wwX" = ( +/turf/closed/wall, +/area/station/security/prison/work) +"wxc" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/turf/open/floor/iron/freezer, +/area/station/security/checkpoint/medical) +"wxn" = ( +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 1 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/textured_edge, +/area/station/hallway/secondary/construction) +"wxq" = ( +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/item/storage/fancy/donut_box, +/obj/item/paper{ + default_raw_text = "Jim Norton's Quebecois Coffee. You see, in 2265 the Quebecois had finally had enough of Canada's shit, and went to the one place that wasn't corrupted by Canuckistan.Je vais au seul endroit qui n'a pas ??? corrompu par les Canadiens ... ESPACE."; + name = "Coffee Shop"; + pixel_x = -4; + pixel_y = 6 + }, +/turf/open/floor/wood, +/area/station/hallway/secondary/entry) +"wxs" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, +/turf/open/floor/engine, +/area/station/science/ordnance/burnchamber) +"wxG" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 1; + id = "medexamshutter"; + name = "Exam Room Shutters" + }, +/turf/open/floor/plating, +/area/station/medical/exam_room) +"wxO" = ( +/obj/structure/chair, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"wxP" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/security/office) +"wxQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance/two, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine/atmos) +"wxS" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/command) +"wxX" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/edge, +/area/station/service/hydroponics) +"wxZ" = ( +/obj/item/radio/intercom/directional/south, +/obj/structure/sign/calendar/directional/east, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/tank_holder/extinguisher, +/obj/effect/turf_decal/siding/dark_blue{ + dir = 6 + }, +/obj/effect/turf_decal/tile/blue/half{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"wyk" = ( +/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/effect/landmark/event_spawn, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"wyv" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/atmos) +"wyz" = ( +/obj/machinery/cryopod, +/obj/effect/turf_decal/siding/white, +/turf/open/floor/iron/dark/textured_large, +/area/station/common/cryopods) +"wyB" = ( +/obj/structure/rack, +/obj/item/fuel_pellet, +/obj/machinery/light_switch/directional/east, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/cargo/drone_bay) +"wyD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/science/ordnance_maint) +"wyH" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/machinery/flasher/directional/south{ + id = "AI"; + pixel_x = 22 + }, +/obj/structure/cable, +/turf/open/floor/circuit/green, +/area/station/ai_monitored/turret_protected/ai) +"wyJ" = ( +/obj/machinery/portable_atmospherics/canister/plasma, +/obj/effect/turf_decal/box, +/turf/open/floor/engine, +/area/station/science/ordnance/storage) +"wyP" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 10 + }, +/obj/structure/table, +/obj/item/storage/box/lights/mixed{ + pixel_y = 3 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/textured, +/area/station/cargo/lobby) +"wyR" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/pod/dark, +/area/station/service/chapel/office) +"wyX" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/item/kirbyplants/random, +/obj/structure/sign/warning/secure_area/directional/west, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"wyY" = ( +/obj/structure/rack, +/obj/item/electronics/firelock, +/obj/item/electronics/firelock, +/obj/item/electronics/firelock, +/obj/item/electronics/firelock, +/obj/item/electronics/firelock, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/electronics/apc, +/obj/item/electronics/apc, +/obj/item/electronics/firealarm, +/obj/item/electronics/firealarm, +/obj/item/electronics/airalarm, +/obj/item/electronics/airalarm, +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/bot, +/turf/open/floor/pod/dark, +/area/station/engineering/storage/tech) +"wzi" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/aft) +"wzn" = ( +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/security/checkpoint/customs) +"wzz" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/filingcabinet, +/obj/effect/turf_decal/bot, +/obj/machinery/status_display/ai/directional/south, +/turf/open/floor/wood, +/area/station/commons/vacant_room/office) +"wzH" = ( +/turf/closed/wall/r_wall, +/area/station/security/brig) +"wzJ" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/item/book/manual/wiki/medicine{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/book/manual/wiki/surgery, +/obj/item/stack/medical/gauze, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/surgery) +"wzT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/status_display/ai/directional/east, +/obj/structure/cable, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"wzV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/carpet/purple, +/area/station/command/heads_quarters/rd) +"wzY" = ( +/obj/machinery/camera/directional/south{ + c_tag = "Security - Brig Aft" + }, +/obj/effect/turf_decal/trimline/red/filled/line, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/security/brig) +"wAj" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"wAp" = ( +/obj/item/plate_shard, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"wAA" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/obj/structure/sign/directions/security/directional/east{ + pixel_y = 8 + }, +/obj/structure/sign/directions/evac/directional/east{ + dir = 2 + }, +/obj/structure/sign/directions/supply/directional/east{ + dir = 2; + pixel_y = -8 + }, +/obj/effect/landmark/start/hangover, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"wAO" = ( +/obj/machinery/atmospherics/components/unary/passive_vent{ + dir = 4; + name = "server vent" + }, +/obj/effect/turf_decal/trimline/neutral/filled/corner, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"wAZ" = ( +/obj/effect/turf_decal/trimline/green/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/small, +/area/station/commons/dorms) +"wBf" = ( +/obj/machinery/light/warm/directional/east, +/obj/machinery/status_display/ai/directional/east, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/delivery/red, +/obj/machinery/restaurant_portal/restaurant, +/turf/open/floor/iron/textured_large, +/area/station/service/cafeteria) +"wBk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/stairs/medium, +/area/station/hallway/secondary/command) +"wBy" = ( +/obj/effect/spawner/random/entertainment/arcade, +/obj/structure/sign/poster/contraband/random/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/broken/directional/north, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"wBE" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/structure/cable, +/turf/open/floor/pod/dark, +/area/station/service/chapel/office) +"wBI" = ( +/turf/closed/wall, +/area/station/engineering/storage_shared) +"wBL" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/white/textured_edge, +/area/station/medical/medbay/central) +"wBO" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical/morgue) +"wBS" = ( +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/xenobiology) +"wBT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 1 + }, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/security/brig) +"wBY" = ( +/obj/machinery/shower/directional/east, +/obj/structure/drain, +/obj/item/radio/intercom/directional/west, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/white/small, +/area/station/common/pool) +"wCb" = ( +/obj/effect/spawner/random/trash/mopbucket, +/turf/open/floor/plating, +/area/station/maintenance/department/medical/central) +"wCh" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/curtain, +/turf/open/floor/iron/freezer, +/area/station/medical/treatment_center) +"wCl" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/primary/central/aft) +"wCt" = ( +/obj/structure/closet/secure_closet/chief_medical, +/obj/item/clothing/head/costume/nursehat, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/cmo) +"wCL" = ( +/obj/structure/window/spawner/directional/south, +/obj/structure/window/spawner/directional/west, +/obj/structure/water_source/puddle, +/obj/structure/flora/bush/reed{ + pixel_y = 8 + }, +/turf/open/floor/grass, +/area/station/science/research) +"wCT" = ( +/obj/structure/chair/sofa/bench, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/sign/nanotrasen{ + pixel_y = 32 + }, +/obj/effect/landmark/start/assistant, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/wood/large, +/area/station/hallway/primary/fore) +"wDc" = ( +/turf/closed/wall, +/area/station/hallway/primary/central) +"wDj" = ( +/obj/structure/window/reinforced/spawner/directional/east{ + layer = 2.9 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"wDv" = ( +/obj/structure/sink/directional/east, +/obj/structure/mirror/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/grime, +/turf/open/floor/iron/kitchen/small, +/area/station/service/kitchen/abandoned) +"wDH" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external/glass{ + name = "Arrival Airlock"; + space_dir = 8 + }, +/turf/open/floor/catwalk_floor, +/area/station/hallway/secondary/entry) +"wDJ" = ( +/obj/structure/curtain/cloth/fancy/mechanical/start_closed{ + desc = "A set of curtains serving as a fancy theater backdrop. They can only be opened by a button."; + id = "theater_curtains"; + name = "Theater Curtains" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/service/theater) +"wDO" = ( +/obj/machinery/door/airlock{ + name = "Law Office" + }, +/obj/effect/mapping_helpers/airlock/access/all/service/lawyer, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/large, +/area/station/service/lawoffice) +"wDS" = ( +/obj/effect/landmark/start/assistant, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall1"; + location = "hall24" + }, +/turf/open/floor/iron/white/textured_large, +/area/station/hallway/primary/fore) +"wDW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/turf/open/floor/iron/white/diagonal, +/area/station/medical/medbay/central) +"wEb" = ( +/obj/structure/bookcase/random/reference, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/item/toy/figure/psychologist{ + pixel_y = 18 + }, +/turf/open/floor/wood/large, +/area/station/medical/psychology) +"wEd" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/grimy, +/area/station/service/library) +"wEg" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Central Hallway" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/textured_large, +/area/station/hallway/primary/aft) +"wEj" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/effect/turf_decal/stripes/red/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"wEm" = ( +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, +/obj/machinery/door/airlock/maintenance{ + name = "Command Hallway Maintenance" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/commons/vacant_room) +"wEB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/warm/directional/south, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet/cyan, +/area/station/command/heads_quarters/blueshield) +"wEC" = ( +/obj/structure/table, +/obj/item/stock_parts/subspace/analyzer, +/obj/item/stock_parts/subspace/analyzer, +/obj/item/stock_parts/subspace/analyzer, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/storage/tcomms) +"wED" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/dark/fourcorners, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/light_switch/directional/north, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 9 + }, +/turf/open/floor/noslip, +/area/station/service/janitor) +"wEJ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 6 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"wEK" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/bot_red, +/obj/effect/turf_decal/stripes/line, +/obj/structure/railing, +/obj/machinery/chem_master, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/pharmacy) +"wEO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/theater) +"wEV" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/iron/textured_large, +/area/station/hallway/primary/aft) +"wFc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/department/medical/central) +"wFd" = ( +/obj/structure/railing, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/green/filled/line, +/turf/open/floor/iron/half, +/area/station/hallway/primary/central) +"wFk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/engine, +/area/station/tcommsat/computer) +"wFp" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "custodialshutters"; + name = "Custodial Closet Shutters" + }, +/obj/effect/turf_decal/tile/dark/fourcorners, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/noslip, +/area/station/service/janitor) +"wFL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/ai_monitored/command/storage/eva) +"wFR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/nova_decals/enclave/bottom/right{ + color = "#52B4E9" + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/lobby) +"wFV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/science/xenobiology) +"wFW" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/obj/item/toy/dodgeball, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/station/commons/fitness/recreation/entertainment) +"wFY" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/atmos/storage) +"wGg" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/hidden, +/turf/open/floor/plating, +/area/station/maintenance/department/medical/central) +"wGw" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_large, +/area/station/construction/mining/aux_base) +"wGy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/small, +/area/station/commons/dorms) +"wGI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/wood, +/area/station/service/hydroponics/upper) +"wGQ" = ( +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1; + name = "Air to Distro" + }, +/turf/open/floor/pod, +/area/station/service/chapel/funeral) +"wGR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/spawner/random/structure/steam_vent, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port) +"wGT" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"wHn" = ( +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/plasticflaps, +/turf/open/floor/iron/textured_large, +/area/station/cargo/sorting) +"wHy" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"wHN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine) +"wHR" = ( +/obj/machinery/shower/directional/east, +/obj/structure/drain, +/obj/machinery/airalarm/directional/west, +/obj/machinery/camera/directional/west{ + c_tag = "Dormitories - Pool"; + name = "dormitories camera" + }, +/turf/open/floor/iron/white/small, +/area/station/common/pool) +"wHZ" = ( +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/aft/upper) +"wIg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/electric_shock/directional/south, +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 1 + }, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/electrical) +"wIo" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/plasma, +/obj/structure/window/reinforced/plasma/spawner/directional/north, +/obj/structure/window/reinforced/plasma/spawner/directional/west, +/obj/effect/turf_decal/tile/purple/full, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"wIz" = ( +/obj/machinery/door/airlock/security{ + name = "Detective's Office" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/detective, +/turf/open/floor/iron/dark/textured, +/area/station/security/warden) +"wIM" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Storage Closet" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/aft/lesser) +"wIO" = ( +/obj/effect/turf_decal/trimline/green/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 8 + }, +/turf/open/floor/iron/large, +/area/station/service/hydroponics) +"wJg" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/machinery/modular_computer/preset/cargochat/cargo{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/cargo/office) +"wJx" = ( +/obj/structure/window/reinforced/spawner/directional/west{ + layer = 2.9 + }, +/obj/structure/chair{ + dir = 1; + name = "Accused" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/courtroom) +"wJK" = ( +/obj/structure/plaque/static_plaque/atmos, +/turf/closed/wall, +/area/station/engineering/atmos/storage) +"wJM" = ( +/obj/structure/closet/crate/hydroponics, +/obj/item/seeds/banana, +/obj/item/seeds/carrot, +/obj/item/seeds/carrot/parsnip, +/obj/item/seeds/chili, +/obj/item/seeds/lemon, +/obj/item/seeds/lime, +/obj/item/seeds/orange, +/obj/item/seeds/pineapple, +/obj/item/seeds/watermelon, +/obj/item/seeds/wheat/oat, +/obj/item/seeds/wheat/rice, +/obj/item/seeds/eggplant, +/obj/item/seeds/berry, +/obj/item/seeds/cherry/blue, +/obj/item/seeds/cherry, +/obj/item/seeds/grape, +/obj/item/seeds/grape/green, +/obj/item/seeds/grass, +/obj/item/seeds/pumpkin, +/obj/item/seeds/tomato, +/obj/item/food/grown/onion, +/obj/item/food/breadslice/plain, +/obj/item/food/grown/potato, +/turf/open/floor/grass, +/area/station/security/prison/garden) +"wJP" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/large, +/area/station/commons/storage/primary) +"wJS" = ( +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/cargo/storage) +"wKa" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/security/prison/work) +"wKf" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"wKg" = ( +/obj/machinery/airalarm/directional/west, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/cargo/warehouse) +"wKi" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"wKm" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/machinery/power/smes, +/obj/structure/cable, +/turf/open/floor/iron/textured, +/area/station/maintenance/disposal/incinerator) +"wKq" = ( +/obj/machinery/light/neon_lining{ + dir = 4 + }, +/obj/machinery/duct, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/science/xenobiology) +"wKt" = ( +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/ai_upload) +"wKz" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/obj/structure/window/reinforced/plasma/spawner/directional/west, +/obj/effect/turf_decal/tile/dark_red/full, +/obj/effect/turf_decal/tile/neutral/full, +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, +/obj/machinery/atmospherics/components/binary/pump/off/yellow/visible{ + dir = 4; + name = "N2O to Pure" + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"wKP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"wKS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/main) +"wLb" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/turf/open/floor/iron/dark/diagonal, +/area/station/engineering/transit_tube) +"wLc" = ( +/obj/structure/table, +/obj/item/stack/cable_coil{ + amount = 5 + }, +/obj/item/flashlight, +/obj/effect/turf_decal/trimline/dark_red/filled/line, +/obj/machinery/camera/directional/south{ + c_tag = "Engineering - Construction Storage" + }, +/obj/structure/sign/poster/random/directional/south, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/secondary/construction) +"wLe" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/light/directional/west, +/obj/structure/sign/departments/chemistry/pharmacy/directional/west, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/primary/central/aft) +"wLg" = ( +/obj/machinery/door/poddoor/massdriver_trash, +/obj/structure/fans/tiny, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/maintenance/disposal) +"wLh" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/siding/dark_blue{ + dir = 5 + }, +/obj/effect/turf_decal/tile/blue/anticorner{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"wLl" = ( +/obj/item/storage/medkit/regular{ + pixel_y = 4 + }, +/obj/item/folder/white{ + pixel_y = 4 + }, +/obj/item/flashlight/pen{ + pixel_y = 4 + }, +/obj/item/clothing/neck/stethoscope{ + pixel_y = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/machinery/light_switch/directional/east{ + pixel_x = 23 + }, +/obj/structure/table/wood/fancy/blue, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/cmo) +"wLt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet, +/area/station/service/library/abandoned) +"wLP" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/medical/medbay/lobby) +"wLQ" = ( +/obj/machinery/atmospherics/components/binary/pump/off{ + dir = 8 + }, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/aisat/atmos) +"wLU" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/upper) +"wLZ" = ( +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/cargo/lobby) +"wMb" = ( +/obj/machinery/portable_atmospherics/scrubber/huge, +/obj/effect/turf_decal/box, +/obj/machinery/camera/directional/west{ + c_tag = "Atmospherics - Fore Port"; + name = "atmospherics camera"; + network = list("ss13","engine") + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"wMh" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/qm) +"wMl" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/textured_edge, +/area/station/medical/medbay/lobby) +"wMm" = ( +/obj/structure/chair/stool/directional/north, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/landmark/start/scientist, +/obj/structure/sign/calendar/directional/west, +/turf/open/floor/wood/large, +/area/station/science/research) +"wMw" = ( +/obj/item/plate/oven_tray{ + pixel_x = -2; + pixel_y = 1 + }, +/obj/item/plate/oven_tray{ + pixel_x = -2; + pixel_y = 3 + }, +/obj/item/clothing/suit/apron/chef{ + pixel_y = 11 + }, +/obj/item/book/manual/wiki/cooking_to_serve_man{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/structure/table, +/obj/item/knife/kitchen{ + pixel_x = -13; + pixel_y = 3 + }, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"wMA" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos/hfr_room) +"wMB" = ( +/obj/structure/chair/comfy, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/green, +/area/station/command/heads_quarters/nt_rep) +"wMI" = ( +/obj/structure/fluff/paper/stack, +/obj/item/paper/crumpled{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/structure/bed/maint, +/obj/structure/sign/poster/official/the_owl/directional/south, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/wood, +/area/station/maintenance/department/engine/atmos) +"wMS" = ( +/obj/machinery/rnd/production/techfab/department/cargo, +/obj/effect/turf_decal/stripes/box, +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/cargo/office) +"wMT" = ( +/obj/machinery/duct, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/commons/vacant_room) +"wNh" = ( +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge, +/area/station/hallway/secondary/construction) +"wNk" = ( +/obj/machinery/power/shuttle_engine/heater, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/obj/structure/window/reinforced/plasma/spawner/directional/east, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine/atmos) +"wNm" = ( +/obj/structure/table, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 5 + }, +/obj/item/folder{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/item/folder/white{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/item/pen{ + pixel_y = 4 + }, +/obj/machinery/button/door/directional/north{ + id = "rndlab1"; + name = "Desk Shutters" + }, +/turf/open/floor/iron/white, +/area/station/science/lab) +"wNt" = ( +/obj/structure/table, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/structure/sign/warning/no_smoking/directional/east, +/obj/item/computer_disk/ordnance{ + pixel_y = 5 + }, +/obj/item/computer_disk/ordnance{ + pixel_x = 5 + }, +/obj/item/computer_disk/ordnance{ + pixel_x = -5 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/science/ordnance/testlab) +"wNu" = ( +/obj/structure/lattice, +/obj/structure/cable, +/obj/structure/transit_tube/horizontal{ + dir = 1 + }, +/turf/open/space/basic, +/area/space/nearstation) +"wNw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/blue/filled/warning, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/command/teleporter) +"wNy" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/science/general, +/obj/machinery/door/airlock/research/glass{ + name = "Research Satellite Access" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/white/textured_large, +/area/station/science/research) +"wNJ" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 6 + }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/tlv_cold_room, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/turf/open/floor/iron/showroomfloor, +/area/station/medical/coldroom) +"wNS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/textured, +/area/station/maintenance/solars/starboard/fore) +"wOo" = ( +/obj/structure/sign/warning/no_smoking/directional/north, +/turf/closed/wall/r_wall, +/area/station/engineering/storage_shared) +"wOx" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/dark_red/diagonal_centre, +/obj/effect/turf_decal/tile/neutral/diagonal_centre, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/execution/transfer) +"wOB" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/lesser) +"wOP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"wOS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/line, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/science/ordnance) +"wPb" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/white/textured_corner{ + dir = 1 + }, +/area/station/medical/medbay/lobby) +"wPp" = ( +/obj/item/target, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera/preset/ordnance{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"wPC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/solars/port/fore) +"wPL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/iron/textured_large, +/area/station/command/cc_dock) +"wPO" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/fore) +"wPP" = ( +/obj/machinery/status_display/evac/directional/west, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"wPR" = ( +/obj/machinery/announcement_system, +/obj/machinery/requests_console/directional/east{ + department = "Telecomms Admin"; + name = "Telecomms Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/announcement, +/obj/effect/mapping_helpers/requests_console/information, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/machinery/light_switch/directional/north, +/obj/effect/turf_decal/bot, +/turf/open/floor/circuit/green, +/area/station/tcommsat/computer) +"wPT" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/structure/closet/emcloset/wall{ + pixel_x = -32 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/white/end{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/science/research) +"wQb" = ( +/obj/machinery/mineral/ore_redemption, +/obj/machinery/door/window/left/directional/south{ + name = "Ore Redemption Access"; + req_access = list("mineral_storeroom") + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/textured_large, +/area/station/cargo/sorting) +"wQg" = ( +/obj/machinery/light/cold/directional/south, +/turf/open/floor/wood/large, +/area/station/service/barber) +"wQo" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/edge, +/area/station/service/hydroponics) +"wQs" = ( +/obj/effect/turf_decal/tile/green/anticorner{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 4 + }, +/area/station/service/hydroponics/garden) +"wQx" = ( +/obj/effect/turf_decal/tile/red/anticorner{ + dir = 8 + }, +/turf/open/floor/pod/dark, +/area/station/service/chapel/office) +"wQL" = ( +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/textured_edge, +/area/station/cargo/drone_bay) +"wQU" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating/airless, +/area/station/engineering/atmos) +"wQX" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/machinery/duct, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/science/research) +"wRj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/hobo_squat, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine/atmos) +"wRU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical/central) +"wRZ" = ( +/obj/structure/window/spawner/directional/north, +/obj/structure/window/spawner/directional/east, +/obj/structure/flora/rock/pile/jungle, +/turf/open/misc/beach/sand, +/area/station/science/research) +"wSc" = ( +/obj/structure/closet/secure_closet/blueshield, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/blueshield) +"wSg" = ( +/obj/machinery/computer/communications, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"wSm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/station/tcommsat/computer) +"wSz" = ( +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/obj/machinery/airalarm/directional/west, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/white/diagonal, +/area/station/medical/medbay/central) +"wSR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Medical Maintenance" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical/central) +"wSX" = ( +/obj/effect/turf_decal/trimline/green/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/corner, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 1 + }, +/turf/open/floor/iron/corner, +/area/station/service/hydroponics) +"wTh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/landmark/generic_maintenance_landmark, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/greater) +"wTj" = ( +/obj/machinery/power/shuttle_engine/heater, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/obj/structure/window/reinforced/plasma/spawner/directional/west, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"wTm" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/hallway/secondary/command) +"wTq" = ( +/obj/structure/trash_pile, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/upper) +"wTr" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/machinery/door/airlock/external, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/aft) +"wTC" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Prison - Laundry"; + network = list("ss13","prison") + }, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/kitchen{ + dir = 1 + }, +/area/station/security/prison/work) +"wUe" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/table/wood, +/obj/item/storage/briefcase/secure{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/storage/lockbox/medal, +/obj/structure/sign/painting/library{ + pixel_x = -32 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain/private) +"wUs" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/machinery/firealarm/directional/east, +/obj/machinery/camera/motion/directional/east{ + c_tag = "E.V.A. Storage"; + name = "motion-sensitive command camera" + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/ai_monitored/command/storage/eva) +"wUC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Aft Central Primary Hallway" + }, +/turf/open/floor/iron/grimy, +/area/station/service/library) +"wUP" = ( +/obj/structure/table/wood, +/obj/item/taperecorder{ + pixel_x = -9; + pixel_y = 3 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/item/flashlight/lamp/green{ + pixel_x = 7; + pixel_y = 12 + }, +/obj/item/hand_labeler{ + pixel_x = 6 + }, +/turf/open/floor/iron/grimy, +/area/station/security/detectives_office) +"wUT" = ( +/obj/machinery/camera/directional/west{ + c_tag = "Atmospherics Tank - O2"; + name = "atmospherics camera"; + network = list("ss13","engine") + }, +/turf/open/floor/engine/o2, +/area/station/engineering/atmos) +"wVh" = ( +/obj/effect/turf_decal/trimline/dark_red/arrow_ccw, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/station_map/engineering/directional/south, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central) +"wVn" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/textured_large, +/area/station/hallway/secondary/construction) +"wVw" = ( +/obj/structure/sign/poster/contraband/borg_fancy_1/directional/west, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/effect/turf_decal/tile/dark_red/anticorner/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/bot_red, +/obj/machinery/vending/mechcomp, +/turf/open/floor/iron/dark/textured, +/area/station/science/robotics/lab) +"wVD" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/cargo/sorting) +"wVH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos/storage/gas) +"wVN" = ( +/obj/structure/table, +/obj/item/reagent_containers/condiment/saltshaker{ + pixel_x = 7; + pixel_y = 9 + }, +/obj/item/reagent_containers/condiment/peppermill{ + pixel_x = 7; + pixel_y = 5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/reagent_containers/spray/cleaner, +/turf/open/floor/iron/dark/textured, +/area/station/medical/break_room) +"wVQ" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + dir = 4; + location = "QM #1" + }, +/obj/effect/turf_decal/box, +/mob/living/simple_animal/bot/mulebot, +/turf/open/floor/iron/textured_edge, +/area/station/cargo/storage) +"wWw" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/chair/office{ + color = "#A46106"; + dir = 4 + }, +/obj/effect/turf_decal/tile/brown/half{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"wWQ" = ( +/turf/open/floor/iron/dark/textured, +/area/station/security/warden) +"wXc" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/landmark/start/hangover/closet, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/commons/fitness/recreation/entertainment) +"wXg" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Atmospherics Maintenance" + }, +/obj/machinery/door/poddoor/preopen{ + id = "atmoslock"; + name = "Atmospherics Lockdown Blast Door" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port) +"wXr" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 9 + }, +/obj/structure/sign/warning/no_smoking/directional/north, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"wXR" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/structure/sign/poster/official/moth_meth/directional/west, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"wYd" = ( +/obj/machinery/byteforge, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/bitrunning/den) +"wYo" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Gateway Chamber" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/gateway, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/gateway) +"wYw" = ( +/obj/structure/toilet{ + color = "#d4af37"; + dir = 8; + name = "Gilded toilet" + }, +/obj/machinery/light/warm/directional/east, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/iron/freezer, +/area/station/command/heads_quarters/captain/private) +"wYK" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/white/end{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/iron/white, +/area/station/science/xenobiology) +"wZs" = ( +/obj/machinery/photocopier, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/qm) +"wZR" = ( +/obj/structure/table/reinforced/rglass, +/obj/machinery/keycard_auth{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/item/laser_pointer/blue, +/turf/open/floor/carpet/blue, +/area/station/command/bridge) +"wZT" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/commons/fitness/recreation/entertainment) +"xag" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/station/service/library/abandoned) +"xai" = ( +/obj/structure/trash_pile, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/security/brig) +"xao" = ( +/obj/structure/closet/crate/solarpanel_small, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/solars/starboard/aft) +"xaD" = ( +/obj/effect/landmark/start/cargo_technician, +/turf/open/floor/iron/textured_large, +/area/station/cargo/office) +"xaL" = ( +/obj/docking_port/stationary/escape_pod, +/turf/open/space/basic, +/area/space/nearstation) +"xaR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 5 + }, +/obj/machinery/light/small/directional/east, +/obj/machinery/light_switch/directional/east, +/obj/machinery/pipedispenser/disposal, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/hallway/secondary/construction) +"xaX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/white/side{ + dir = 8 + }, +/area/station/science/lab) +"xbj" = ( +/obj/machinery/computer/atmos_alert, +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow/half{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"xbl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet/royalblack, +/area/station/command/heads_quarters/hos) +"xbo" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/effect/turf_decal/tile/red/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/iron, +/area/station/commons/lounge) +"xbx" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/engine, +/area/station/engineering/atmos/storage/gas) +"xbD" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/grass, +/area/station/security/prison/garden) +"xbH" = ( +/obj/machinery/modular_computer/preset/id{ + dir = 4 + }, +/obj/machinery/keycard_auth/directional/north{ + pixel_x = -27 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/carpet/royalblack, +/area/station/command/heads_quarters/hos) +"xbK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/pod/dark, +/area/station/service/chapel/funeral) +"xbQ" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "cargoload" + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/storage) +"xcf" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/grassy, +/obj/structure/flora/bush/flowers_yw, +/obj/machinery/camera/directional/north{ + c_tag = "Departures - Lounge"; + name = "departures camera" + }, +/obj/machinery/light/warm/directional/north, +/mob/living/basic/chicken{ + forced_gender = "male" + }, +/turf/open/floor/grass, +/area/station/hallway/secondary/exit/departure_lounge) +"xcg" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/large, +/area/station/commons/fitness/recreation/entertainment) +"xck" = ( +/obj/structure/sign/poster/random/directional/east, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/engine) +"xcl" = ( +/obj/structure/closet/emcloset/wall{ + pixel_y = 32 + }, +/obj/effect/turf_decal/trimline/white/end, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/white/mid_joiner, +/turf/open/floor/carpet/black, +/area/station/commons/dorms) +"xcq" = ( +/obj/structure/flora/bush/fullgrass, +/obj/structure/flora/bush/ferny, +/obj/structure/window/fulltile, +/turf/open/floor/grass, +/area/station/service/kitchen) +"xcD" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 5 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"xcG" = ( +/turf/open/floor/engine/air, +/area/station/engineering/atmos) +"xcZ" = ( +/obj/structure/weightmachine/weightlifter, +/obj/effect/turf_decal/tile/yellow/full, +/obj/effect/turf_decal/bot, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/white/textured_large, +/area/station/commons/fitness/recreation/entertainment) +"xdH" = ( +/obj/machinery/conveyor_switch/oneway{ + dir = 8; + id = "garbage"; + name = "disposal conveyor" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/disposal) +"xdT" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, +/obj/machinery/door/airlock/external/glass{ + name = "External Access"; + space_dir = 1 + }, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/department/security/greater) +"xdZ" = ( +/obj/machinery/door/airlock/mining{ + name = "Mining Lobby" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/turf/open/floor/iron/textured_large, +/area/station/cargo/miningoffice) +"xec" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/gateway) +"xeg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/door/airlock/mining{ + name = "Waste Disposal" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/effect/landmark/navigate_destination/disposals, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/disposal) +"xfa" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 4 + }, +/obj/structure/window/spawner/directional/west, +/obj/structure/window/spawner/directional/south, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/turf/open/floor/iron/dark/textured, +/area/station/medical/medbay/central) +"xfl" = ( +/obj/structure/dresser, +/obj/item/radio/intercom/directional/south, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/carpet/cyan, +/area/station/command/heads_quarters/blueshield) +"xfx" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing, +/turf/open/floor/iron/textured, +/area/station/command/cc_dock) +"xfA" = ( +/obj/machinery/computer/security/telescreen/vault{ + dir = 8; + pixel_x = 26 + }, +/obj/machinery/computer/records/medical{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/carpet/executive, +/area/station/command/heads_quarters/hop) +"xfB" = ( +/obj/structure/chair/sofa/bench/left, +/obj/effect/landmark/start/hangover, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"xfM" = ( +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/science/robotics/mechbay) +"xfS" = ( +/obj/structure/rack, +/obj/effect/spawner/random/trash/garbage, +/obj/effect/spawner/random/trash/soap, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/science/ordnance_maint) +"xfY" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/science/research) +"xgf" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/sign/poster/official/random/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/break_room) +"xgj" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 5 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"xgv" = ( +/obj/effect/turf_decal/trimline/dark_green/filled/line{ + dir = 4 + }, +/obj/structure/sign/poster/official/cleanliness/directional/east, +/obj/effect/turf_decal/bot, +/obj/machinery/light/cold/directional/east, +/obj/machinery/disease2/incubator, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/medical/virology) +"xgy" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/machinery/medical_kiosk, +/turf/open/floor/iron/white/textured_corner{ + dir = 4 + }, +/area/station/medical/medbay/lobby) +"xgA" = ( +/obj/item/reagent_containers/cup/beaker/large, +/obj/item/reagent_containers/cup/beaker/large, +/obj/item/reagent_containers/dropper, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner{ + dir = 4 + }, +/obj/structure/table/reinforced/rglass, +/obj/machinery/reagentgrinder{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/stack/sheet/mineral/plasma{ + amount = 5; + pixel_y = 6 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/chemistry) +"xgK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/department/engine) +"xgQ" = ( +/obj/structure/table/reinforced/plastitaniumglass, +/obj/item/toy/captainsaid/collector, +/obj/item/taperecorder{ + name = "Captain's Log" + }, +/obj/effect/turf_decal/tile/dark_blue/half{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"xha" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/grandfatherclock, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/nt_rep) +"xhb" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/table, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 10 + }, +/turf/open/floor/iron/textured, +/area/station/science/ordnance/testlab) +"xhd" = ( +/obj/machinery/door/airlock{ + id_tag = "Cell2"; + name = "Cell 2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/grimy, +/area/station/service/chapel) +"xhq" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/item/kirbyplants/photosynthetic, +/obj/structure/sign/plaques/kiddie{ + pixel_x = -32 + }, +/turf/open/floor/circuit/green, +/area/station/ai_monitored/turret_protected/ai_upload) +"xhr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/department/engine) +"xhS" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/fore) +"xhU" = ( +/obj/structure/chair/sofa/left/brown{ + dir = 8 + }, +/obj/item/toy/plush/beeplushie{ + desc = "Maybe hugging this will make you feel better about yourself."; + name = "Therabee" + }, +/turf/open/floor/carpet, +/area/station/medical/psychology) +"xig" = ( +/obj/machinery/light/small/directional/east, +/obj/machinery/growing/soil, +/obj/effect/spawner/random/food_or_drink/seed, +/turf/open/floor/grass, +/area/station/service/hydroponics/garden/abandoned) +"xik" = ( +/obj/machinery/door/window/right/directional/east{ + name = "Justice Storage"; + req_access = list("armory") + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/execution/education) +"xim" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/hidden, +/turf/open/floor/plating, +/area/station/maintenance/department/medical/central) +"xir" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/black, +/area/station/commons/dorms) +"xiD" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/port) +"xiF" = ( +/mob/living/basic/chicken/brown{ + forced_gender = "female" + }, +/turf/open/floor/grass, +/area/station/service/hydroponics/upper) +"xiI" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"xjd" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"xjf" = ( +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 4 + }, +/obj/machinery/camera/directional/east{ + c_tag = "Science - Ordnance Lab Starboard"; + name = "science camera"; + network = list("ss13","rd") + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/science/ordnance) +"xjI" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/table/wood, +/obj/item/toy/figure/dsquad, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"xjQ" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/bot, +/obj/machinery/recharge_station, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/lobby) +"xjU" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/medical/medbay/central) +"xjX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/command) +"xkg" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_corner{ + dir = 1 + }, +/area/station/hallway/primary/fore) +"xkh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/hallway/secondary/command) +"xkk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/warden, +/obj/effect/turf_decal/tile/dark_red/half{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/ai_monitored/security/armory) +"xko" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/poddoor/shutters{ + id = "medicalbridge"; + name = "Medical Pod Space Bridge" + }, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/department/medical) +"xkq" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating/airless, +/area/station/hallway/primary/central/aft) +"xkA" = ( +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"xkP" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/command) +"xkQ" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/siding/dark_red{ + dir = 6 + }, +/turf/open/floor/iron/large, +/area/station/hallway/secondary/exit/departure_lounge) +"xkS" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass{ + amount = 30 + }, +/obj/item/stack/cable_coil, +/obj/effect/spawner/random/engineering/vending_restock, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/fore) +"xkU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/obj/machinery/meter, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"xla" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/green{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/hydroponics/garden) +"xlt" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/security/brig) +"xlw" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 5 + }, +/obj/item/kirbyplants/random, +/obj/structure/sign/departments/holy/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/primary/fore) +"xlB" = ( +/turf/open/floor/carpet, +/area/station/security/courtroom) +"xlC" = ( +/obj/effect/spawner/liquids_spawner{ + reagent_list = list(/datum/reagent/water=600) + }, +/mob/living/basic/carp/mega/shorki{ + obj_damage = 0 + }, +/turf/open/misc/asteroid, +/area/station/commons/dorms) +"xlE" = ( +/turf/closed/wall/r_wall, +/area/station/command/heads_quarters/nt_rep) +"xlM" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "bankshutter"; + name = "Bank Shutter" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/greater) +"xlZ" = ( +/obj/structure/table/glass, +/obj/structure/microscope, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/item/reagent_containers/cup/beaker{ + pixel_x = -8; + pixel_y = 12 + }, +/obj/item/biopsy_tool{ + pixel_x = 14; + pixel_y = 4 + }, +/turf/open/floor/iron/white/textured_edge, +/area/station/science/xenobiology) +"xma" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera/directional/east{ + c_tag = "Command Hallway - Aft Starboard"; + name = "hallway camera" + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron/stairs/medium, +/area/station/hallway/secondary/command) +"xml" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/stairs/right, +/area/station/command/cc_dock) +"xmt" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/iron/kitchen{ + dir = 1 + }, +/area/station/commons/dorms/laundry) +"xmF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/department/medical/central) +"xmH" = ( +/obj/effect/spawner/random/engineering/atmospherics_portable, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/crew_quarters/bar) +"xmK" = ( +/obj/effect/turf_decal/tile/blue/anticorner{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"xmL" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/garbage, +/obj/machinery/light/small/directional/north, +/obj/structure/cable, +/turf/open/floor/wood, +/area/station/commons/vacant_room/office) +"xmN" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/ears/earmuffs{ + pixel_y = 7 + }, +/obj/item/clothing/glasses/sunglasses{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/structure/window/reinforced/spawner/directional/east{ + layer = 2.9; + pixel_x = 4 + }, +/turf/open/floor/engine, +/area/station/security/range) +"xmO" = ( +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "Barshutters"; + name = "Bar Shutters" + }, +/obj/item/storage/fancy/cigarettes/cigars{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/item/storage/fancy/cigarettes/cigars/havana{ + pixel_x = 2; + pixel_y = 8 + }, +/obj/item/storage/fancy/cigarettes/cigars/cohiba{ + pixel_x = 2; + pixel_y = 10 + }, +/obj/item/holosign_creator/robot_seat/bar, +/turf/open/floor/iron/large, +/area/station/service/bar) +"xna" = ( +/obj/structure/chair/sofa/bench, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/sign/logo{ + icon_state = "nanotrasen_sign3"; + pixel_y = 32 + }, +/obj/item/storage/medkit/emergency, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/white/textured_edge, +/area/station/medical/medbay/lobby) +"xnk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"xnl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/tcommsat/computer) +"xnu" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/railing, +/turf/open/floor/wood/parquet, +/area/station/common/night_club) +"xnw" = ( +/turf/closed/wall/r_wall, +/area/station/security/checkpoint/engineering) +"xnP" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner, +/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner{ + dir = 4 + }, +/obj/machinery/requests_console/directional/south{ + department = "Pharmacy"; + name = "Pharmacy Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/ore_update, +/obj/effect/turf_decal/bot_red, +/obj/machinery/chem_dispenser{ + layer = 2.7 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/pharmacy) +"xnR" = ( +/obj/structure/cable, +/obj/item/stack/sheet/cardboard, +/turf/open/floor/plating, +/area/station/maintenance/department/security/brig) +"xnU" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Arrivals" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/large, +/area/station/commons/dorms) +"xnZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/table, +/obj/item/flashlight/flare/candle, +/obj/effect/spawner/random/entertainment/lighter{ + pixel_x = 9 + }, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/central) +"xof" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"xou" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"xoG" = ( +/obj/machinery/biogenerator, +/obj/item/reagent_containers/cup/beaker{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/reagent_containers/cup/beaker/large, +/obj/item/reagent_containers/cup/beaker/large, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/small, +/area/station/security/prison/garden) +"xoL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/hallway/secondary/command) +"xoN" = ( +/obj/machinery/door/airlock/external{ + name = "External Solar Access" + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/solars/port/fore) +"xoT" = ( +/obj/machinery/door/airlock/engineering{ + name = "Construction Area" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/hallway/secondary/construction) +"xoW" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/station_map/engineering/directional/north, +/turf/open/floor/iron/dark/textured_edge, +/area/station/hallway/primary/fore) +"xpd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_red/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/sign/warning/vacuum/external/directional/east, +/obj/machinery/camera/directional/east{ + c_tag = "Departures - Starboard"; + name = "departures camera" + }, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"xpf" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/wood/large, +/area/station/medical/psychology) +"xpl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wood/end{ + dir = 8 + }, +/obj/machinery/light/small/directional/west, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/wood, +/area/station/commons/vacant_room/office) +"xpr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"xpt" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/closet/firecloset, +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"xpw" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/hallway/secondary/command) +"xpx" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/machinery/firealarm/directional/south, +/obj/machinery/duct, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/science/research) +"xpC" = ( +/obj/machinery/rnd/production/protolathe/department/engineering, +/obj/effect/turf_decal/bot, +/obj/structure/sign/poster/official/random/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/storage_shared) +"xpH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/textured_large, +/area/station/hallway/primary/fore) +"xpL" = ( +/obj/structure/frame/machine{ + anchored = 1 + }, +/obj/item/stack/cable_coil, +/turf/open/floor/iron/textured, +/area/station/science/research/abandoned) +"xpO" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/item/radio/intercom/directional/south, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/aft) +"xpU" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 5 + }, +/obj/machinery/flasher/directional/east{ + id = "secentranceflasher"; + pixel_x = 24; + pixel_y = 23 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/office) +"xpW" = ( +/obj/structure/chair/stool/directional/north{ + pixel_y = 8 + }, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/exit/departure_lounge) +"xqb" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/storage) +"xqc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/textured_large, +/area/station/engineering/gravity_generator) +"xqf" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating/airless, +/area/station/science/robotics/mechbay) +"xqh" = ( +/obj/structure/window/reinforced/survival_pod/spawner/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured_large, +/area/station/commons/fitness/recreation/entertainment) +"xqm" = ( +/obj/structure/table/reinforced/plastitaniumglass, +/obj/item/pinpointer/nuke, +/obj/item/disk/nuclear, +/obj/machinery/status_display/evac/directional/west, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/window/reinforced/spawner/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/captain/private) +"xqq" = ( +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 4 + }, +/turf/open/floor/iron/smooth_half{ + dir = 1 + }, +/area/station/engineering/gravity_generator) +"xqs" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/obj/structure/sign/warning/secure_area/directional/west, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"xqv" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/textured_corner{ + dir = 8 + }, +/area/station/science/ordnance/testlab) +"xqA" = ( +/obj/machinery/chem_heater/withbuffer, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/bot_red, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/chemistry) +"xqF" = ( +/obj/structure/chair/sofa/bench/right, +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/turf/open/floor/iron/diagonal, +/area/station/hallway/secondary/exit/departure_lounge) +"xqO" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/burgundy, +/turf/open/space/basic, +/area/space/nearstation) +"xqQ" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/red/filled/corner, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/security/brig) +"xrd" = ( +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/power_room) +"xrm" = ( +/obj/machinery/griddle, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/kitchen, +/area/station/security/prison/mess) +"xru" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/machinery/firealarm/directional/east, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/primary/central/aft) +"xrw" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/pen/fourcolor{ + pixel_y = 4 + }, +/turf/open/floor/carpet/blue, +/area/station/command/bridge) +"xry" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/stairs/medium{ + dir = 8 + }, +/area/station/medical/medbay/central) +"xrG" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Medical Office Maintenance" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical/central) +"xrH" = ( +/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/carpet/blue, +/area/station/command/bridge) +"xrI" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/white, +/area/station/science/research) +"xrL" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/atmos/hfr_room) +"xrO" = ( +/obj/structure/table, +/obj/effect/turf_decal/bot, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/obj/machinery/camera/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/power_room) +"xrZ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/textured_corner{ + dir = 4 + }, +/area/station/engineering/atmos) +"xsd" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/service/hydroponics) +"xsj" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/atmos) +"xsE" = ( +/obj/item/kirbyplants/random, +/obj/machinery/airalarm/directional/east{ + pixel_x = 22 + }, +/obj/item/radio/intercom/directional/south, +/obj/machinery/light/floor/has_bulb, +/turf/open/floor/iron/grimy, +/area/station/hallway/primary/central/fore) +"xsF" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 10 + }, +/turf/open/space/basic, +/area/space/nearstation) +"xsG" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/aft/greater) +"xsT" = ( +/obj/structure/table/wood, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/microwave{ + desc = "Cooks and boils stuff, somehow."; + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/floor/carpet/cyan, +/area/station/commons/dorms) +"xsW" = ( +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 5 + }, +/obj/structure/closet/crate/secure{ + desc = "A secure crate containing various materials for building a customised test-site."; + name = "Test Site Materials Crate" + }, +/obj/item/target/syndicate, +/obj/item/target/alien, +/obj/item/target/clown, +/obj/item/target, +/obj/machinery/light_switch/directional/east, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/auxlab/firing_range) +"xsY" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/cargo/storage) +"xsZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/fore) +"xtk" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Medical Break Room Maintenance" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical) +"xtq" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Treatment Center Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical) +"xtu" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical) +"xtx" = ( +/obj/machinery/deepfryer, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"xtF" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/atmos) +"xtI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical/morgue) +"xtV" = ( +/turf/closed/wall, +/area/station/maintenance/solars/port/aft) +"xtW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/science/xenobiology) +"xud" = ( +/turf/closed/wall, +/area/station/maintenance/starboard/lesser) +"xur" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/commons/storage/primary) +"xuZ" = ( +/obj/structure/cable, +/obj/structure/closet/emcloset, +/turf/open/floor/pod/light, +/area/station/service/chapel) +"xvb" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/service/library) +"xvg" = ( +/obj/machinery/sparker/directional/west{ + id = "justicespark" + }, +/turf/open/floor/engine, +/area/station/security/execution/education) +"xvh" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/machinery/camera/directional/east{ + c_tag = "Security Post - Arrivals" + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/security/checkpoint/customs) +"xvj" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"xvm" = ( +/obj/structure/table/wood, +/obj/item/food/grown/poppy{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/food/grown/poppy{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/food/grown/poppy, +/turf/open/floor/pod/dark, +/area/station/service/chapel/funeral) +"xvp" = ( +/obj/item/stack/sheet/glass{ + amount = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/port) +"xvt" = ( +/obj/effect/turf_decal/weather/sand, +/turf/open/floor/grass, +/area/station/hallway/primary/central/fore) +"xvu" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"xvD" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/main) +"xvJ" = ( +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/carpet/black, +/area/station/command/heads_quarters/qm) +"xvN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/turf/open/floor/iron/white/diagonal, +/area/station/medical/medbay/central) +"xvR" = ( +/obj/item/reagent_containers/cup/bottle/epinephrine, +/obj/item/reagent_containers/cup/bottle/multiver{ + pixel_x = 6 + }, +/obj/item/reagent_containers/syringe, +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/structure/sign/departments/exam_room/directional/west, +/obj/machinery/door/window/left/directional/north{ + name = "Medbay Front Desk"; + req_access = list("medical") + }, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/lobby) +"xwb" = ( +/obj/machinery/light/warm/directional/north, +/obj/machinery/button/door/directional/north{ + id = "teleportershutters"; + name = "Teleporter Shutters"; + req_access = list("command") + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/hallway/secondary/command) +"xwf" = ( +/obj/structure/trash_pile, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"xwm" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/turf/open/floor/iron/textured_large, +/area/station/engineering/power_room) +"xwC" = ( +/obj/machinery/photocopier, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/white, +/area/station/medical/office) +"xwO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/landmark/start/head_of_personnel, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 5 + }, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/secondary/command) +"xwU" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/cup/glass/trophy{ + pixel_y = 8 + }, +/turf/open/floor/carpet/stellar, +/area/station/service/chapel) +"xwW" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/hallway/primary/aft) +"xxa" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/commons/fitness/recreation) +"xxb" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"xxd" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 5 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/textured, +/area/station/engineering/storage) +"xxh" = ( +/turf/open/floor/iron/large, +/area/station/commons/fitness/recreation) +"xxi" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/siding/red, +/obj/effect/landmark/start/head_of_security, +/turf/open/floor/iron/dark/textured_edge, +/area/station/security/office) +"xxp" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"xxv" = ( +/turf/closed/wall, +/area/station/maintenance/eva_shed/port) +"xxJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/aisat_interior) +"xyf" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/large, +/area/station/commons/fitness/recreation/entertainment) +"xyn" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/turf/closed/wall, +/area/station/engineering/atmos/storage) +"xyv" = ( +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral/half, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 1 + }, +/turf/open/floor/iron/smooth_half, +/area/station/engineering/gravity_generator) +"xyx" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/ai_upload) +"xyD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/cargo_technician, +/turf/open/floor/iron/textured_large, +/area/station/cargo/storage) +"xyE" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/large, +/area/station/hallway/primary/fore) +"xyG" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/security/prison) +"xyI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/radio/intercom/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/carpet/cyan, +/area/station/command/heads_quarters/blueshield) +"xyX" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, +/obj/machinery/door/airlock/science/glass{ + name = "Ordnance Freezer Chamber" + }, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/turf/open/floor/engine/vacuum, +/area/station/science/ordnance/freezerchamber) +"xzk" = ( +/obj/structure/flora/tree/jungle/small/style_random, +/turf/open/floor/grass, +/area/station/service/chapel) +"xzq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/green{ + dir = 8 + }, +/obj/effect/turf_decal/siding/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/hydroponics/garden) +"xzy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + id_tag = "MedbayFoyer"; + name = "Emergency Medical Entrance" + }, +/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/treatment_center) +"xzN" = ( +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/fore) +"xzW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/duct, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/engineering/atmos) +"xzX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"xAo" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple/diagonal_centre, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/white/diagonal, +/area/station/science/xenobiology) +"xAr" = ( +/turf/open/floor/iron/grimy, +/area/station/commons/vacant_room/office) +"xAy" = ( +/obj/machinery/airalarm/directional/north, +/obj/effect/landmark/start/assistant, +/obj/machinery/light_switch/directional/north{ + pixel_x = 13 + }, +/obj/structure/window/spawner/directional/west, +/obj/structure/chair/sofa/corp/left{ + color = "#DE3A3A"; + dir = 4 + }, +/turf/open/floor/iron/cafeteria, +/area/station/service/cafeteria) +"xAC" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/wood/parquet, +/area/station/common/night_club) +"xAV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/station/commons/dorms) +"xBm" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/hallway/primary/fore) +"xBq" = ( +/obj/structure/bookcase/random/fiction, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/wood/large, +/area/station/service/library) +"xBB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 6 + }, +/turf/open/floor/iron/textured, +/area/station/science/ordnance/testlab) +"xBD" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/cup/beaker{ + pixel_y = 4 + }, +/obj/item/reagent_containers/syringe{ + pixel_y = 4 + }, +/obj/item/reagent_containers/dropper{ + pixel_y = 4 + }, +/obj/machinery/camera{ + c_tag = "Medbay - Virology Ward 2"; + dir = 4; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/turf/open/floor/iron/white/herringbone, +/area/station/medical/virology) +"xBE" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 1; + id = "briglockdown"; + name = "Warden Desk Shutters" + }, +/turf/open/floor/plating, +/area/station/security/warden) +"xBW" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/camera/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/main) +"xCg" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/white/filled/corner, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"xCu" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos/storage) +"xCw" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 5 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/main) +"xCF" = ( +/turf/open/floor/iron/textured_large, +/area/station/cargo/miningoffice) +"xCG" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/large, +/area/station/security/courtroom) +"xCP" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 1; + id = "cmoshutter"; + name = "CMO Office Shutters" + }, +/turf/open/floor/plating, +/area/station/command/heads_quarters/cmo) +"xCR" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/photocopier, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/cargo/office) +"xDf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/theater) +"xDL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/hallway/secondary/construction) +"xEc" = ( +/obj/structure/table, +/obj/item/kitchen/rollingpin{ + pixel_y = 18 + }, +/obj/structure/sign/poster/contraband/random/directional/east, +/obj/item/clothing/suit/apron/chef, +/obj/item/clothing/head/soft/mime, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"xEs" = ( +/obj/effect/turf_decal/trimline/blue/line, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/trimline/blue/mid_joiner, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/storage) +"xEH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/green{ + dir = 4 + }, +/turf/open/floor/iron/textured, +/area/station/service/hydroponics/garden/abandoned) +"xEK" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/table/wood, +/obj/item/storage/crayons, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/wood, +/area/station/service/library/abandoned) +"xES" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/moisture_trap, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/central) +"xEU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/engine, +/area/station/tcommsat/computer) +"xFd" = ( +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"xFh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central) +"xFo" = ( +/turf/open/floor/plating, +/area/station/maintenance/department/medical/morgue) +"xFt" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/textured_corner{ + dir = 1 + }, +/area/station/engineering/atmos) +"xFv" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/science/lab) +"xFy" = ( +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 6 + }, +/obj/machinery/firealarm/directional/south, +/obj/structure/rack, +/obj/item/storage/briefcase, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/station/commons/vacant_room) +"xFz" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8; + name = "Gas to Cooling Loop" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"xFD" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/break_room) +"xFH" = ( +/turf/open/floor/iron/grimy, +/area/station/service/lawoffice) +"xFM" = ( +/obj/structure/table/reinforced/rglass, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/machinery/door/firedoor, +/obj/item/storage/medkit/regular{ + pixel_x = 12; + pixel_y = 4 + }, +/obj/item/storage/box/bodybags{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/machinery/door/poddoor/shutters/window/preopen{ + dir = 4; + id = "paramed_dispatch_desk"; + name = "Desk Shutters" + }, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/lobby) +"xFQ" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/pod/dark, +/area/station/service/chapel/funeral) +"xFW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/cargo/miningdock) +"xGe" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/conveyor_switch/oneway{ + id = "shuttletodelivery"; + name = "disposals conveyor switch" + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/textured_corner{ + dir = 4 + }, +/area/station/cargo/sorting) +"xGh" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet, +/area/station/security/detectives_office) +"xGk" = ( +/obj/machinery/light/neon_lining{ + dir = 8 + }, +/obj/machinery/duct, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/science/xenobiology) +"xGr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"xGv" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/textured_corner{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"xGA" = ( +/turf/closed/wall, +/area/station/maintenance/aft) +"xGT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/grimy, +/area/station/service/library) +"xGY" = ( +/obj/structure/frame/machine, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/small, +/area/station/security/prison/work) +"xHb" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"xHc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/newscaster/directional/east, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/hallway/secondary/command) +"xHn" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/lawyer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"xHx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/weather/snow, +/mob/living/basic/goat/pete, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/service/kitchen/coldroom) +"xHB" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos) +"xHG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/turf/open/floor/plating, +/area/station/engineering/supermatter) +"xHJ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"xHP" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/structure/sign/warning/chem_diamond/directional/west, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/light/warm/directional/west, +/turf/open/floor/iron/freezer, +/area/station/medical/pharmacy) +"xHW" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/textured_large, +/area/station/cargo/office) +"xIu" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/command/heads_quarters/rd) +"xIF" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 5 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/obj/machinery/newscaster/directional/north{ + pixel_x = 6 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/office) +"xIK" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2, +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/trimline/green/arrow_cw{ + dir = 1 + }, +/obj/machinery/computer/security/telescreen/entertainment/directional/north, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/small, +/area/station/commons/dorms) +"xIU" = ( +/obj/machinery/door/airlock/external{ + name = "MiniSat External Access" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/science/minisat, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/port/upper) +"xJp" = ( +/obj/structure/chair/stool/directional/south, +/turf/open/floor/iron/grimy, +/area/station/commons/lounge) +"xJr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/aft/greater) +"xJt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/textured_large, +/area/station/cargo/storage) +"xJD" = ( +/obj/machinery/rnd/production/protolathe/department/science, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/iron/large, +/area/station/science/lab) +"xJE" = ( +/obj/item/clipboard{ + pixel_y = 3 + }, +/obj/structure/table/reinforced/rglass, +/obj/item/clothing/accessory/armband/deputy, +/obj/item/clothing/accessory/armband/deputy, +/obj/item/clothing/accessory/armband/deputy, +/obj/item/clothing/accessory/armband/deputy, +/obj/item/clothing/accessory/armband/deputy, +/turf/open/floor/glass/reinforced, +/area/station/security/office) +"xJH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/engine/atmos) +"xJW" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/north, +/obj/machinery/power/shuttle_engine/heater{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/window/reinforced/plasma/spawner/directional/east, +/turf/open/floor/iron/textured, +/area/station/security/prison) +"xKl" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/ai) +"xKm" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/primary/central) +"xKx" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/basic/spider/giant/hunter/scrawny, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/electrical) +"xKJ" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 4 + }, +/area/station/hallway/secondary/command) +"xKS" = ( +/obj/structure/window/spawner/directional/south, +/obj/effect/spawner/random/vending/snackvend, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/bot, +/turf/open/floor/wood/large, +/area/station/science/research) +"xKZ" = ( +/turf/open/floor/iron/textured_edge, +/area/station/hallway/secondary/entry) +"xLd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/hallway/secondary/construction) +"xLF" = ( +/obj/machinery/door/poddoor/shutters{ + id = "teleportershutters"; + name = "Teleporter Shutters" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/teleporter) +"xLN" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/textured_corner{ + dir = 8 + }, +/area/station/cargo/lobby) +"xLQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/poster/contraband/random/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) +"xLX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/crate_loot, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/lesser) +"xLZ" = ( +/turf/closed/wall, +/area/station/common/cryopods) +"xMk" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/personal, +/obj/item/shard, +/obj/item/shard, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/greater) +"xMo" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/commons/fitness/recreation/entertainment) +"xMq" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"xMx" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/iron/stairs/right, +/area/station/engineering/main) +"xMA" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "brigprison"; + name = "Prison Blast Door" + }, +/turf/open/floor/plating, +/area/station/security/execution/transfer) +"xMV" = ( +/obj/structure/table/wood, +/obj/item/folder/blue{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/folder/yellow{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/folder/red{ + pixel_y = 1 + }, +/obj/item/stamp/law, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/grimy, +/area/station/service/lawoffice) +"xMY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood/large, +/area/station/commons/fitness/recreation/entertainment) +"xNd" = ( +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/structure/displaycase/forsale{ + pixel_y = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/station/hallway/secondary/entry) +"xNf" = ( +/obj/structure/table/wood, +/obj/item/toy/cards/deck, +/obj/machinery/light/warm/directional/south, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/wood, +/area/station/security/prison/garden) +"xNg" = ( +/obj/structure/sign/poster/random/directional/south, +/obj/machinery/vending/hydronutrients, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/hydroponics/garden) +"xNh" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "rdoffice"; + name = "Research Director's Shutters" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/station/command/heads_quarters/rd) +"xNl" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/poddoor/preopen{ + id = "engielock"; + name = "Engineering Lockdown Blast Door" + }, +/obj/machinery/door/airlock/engineering/glass{ + name = "EngineRoom" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured_large, +/area/station/engineering/main) +"xNE" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/greater) +"xNH" = ( +/obj/effect/spawner/liquids_spawner, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/lowered/iron/pool, +/area/station/common/pool) +"xNL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical/central) +"xNZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/lobby) +"xOh" = ( +/obj/effect/spawner/random/structure/girder, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/greater) +"xOp" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/navigate_destination/dockarrival, +/obj/machinery/door/airlock/external/glass{ + name = "Arrival Airlock"; + space_dir = 1 + }, +/turf/open/floor/catwalk_floor, +/area/station/hallway/secondary/entry) +"xOz" = ( +/obj/effect/turf_decal/trimline/dark_red/filled/line, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/secondary/construction) +"xOG" = ( +/turf/open/floor/iron/white/textured_large, +/area/station/medical/treatment_center) +"xOR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/obj/effect/spawner/random/maintenance/four, +/obj/item/storage/box/lights/tubes, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/crew_quarters/bar) +"xOU" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) +"xPa" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Telecomms Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/tcoms, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/tcommsat/computer) +"xPf" = ( +/obj/structure/chair/wood, +/obj/item/radio/intercom/chapel{ + pixel_x = -27 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/service/chapel) +"xPg" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "Cell1Privacy"; + name = "curtain" + }, +/turf/open/floor/plating, +/area/station/security/prison) +"xPs" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/landmark/generic_maintenance_landmark, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/fore) +"xPw" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/white/small, +/area/station/common/pool) +"xPP" = ( +/obj/machinery/vending/security, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/security/lockers) +"xPT" = ( +/obj/machinery/vending/wardrobe/sec_wardrobe, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured, +/area/station/security/lockers) +"xPW" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"xQe" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/chair/stool/bar/directional/east, +/turf/open/floor/wood/parquet, +/area/station/common/night_club) +"xQj" = ( +/obj/machinery/biogenerator, +/obj/effect/turf_decal/siding/green{ + dir = 1 + }, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/hydroponics/garden) +"xQn" = ( +/obj/structure/table/wood, +/obj/item/kirbyplants/organic/plant22{ + pixel_y = 8 + }, +/turf/open/floor/carpet/stellar, +/area/station/service/chapel/office) +"xQK" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/trimline/purple/filled/line, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/science/xenobiology) +"xQM" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/effect/turf_decal/nova_decals/enclave/bottom/right{ + color = "#52B4E9" + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/command) +"xQQ" = ( +/obj/structure/sign/directions/medical/directional/west{ + dir = 2; + pixel_y = 8 + }, +/obj/structure/sign/directions/engineering/directional/west{ + dir = 2 + }, +/obj/structure/sign/directions/supply/directional/west{ + dir = 2; + pixel_y = -8 + }, +/obj/structure/tank_holder/extinguisher, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/theater) +"xQU" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/nitrogen_input{ + dir = 4 + }, +/turf/open/floor/engine/n2, +/area/station/engineering/atmos) +"xRh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/small, +/area/station/hallway/secondary/exit/departure_lounge) +"xRu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/engine/atmos) +"xRw" = ( +/obj/machinery/holopad/secure, +/obj/machinery/flasher/directional/west{ + id = "AI"; + pixel_y = -26 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "AI Core shutters"; + name = "AI Core Shutters" + }, +/obj/machinery/door/window/brigdoor/left/directional/east{ + name = "Secondary AI Core Acces Door"; + req_access = list("ai_upload") + }, +/turf/open/floor/vault, +/area/station/ai_monitored/turret_protected/ai) +"xRx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft/lesser) +"xRy" = ( +/obj/machinery/gravity_generator/main, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral/half, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 1 + }, +/turf/open/floor/iron/smooth_half, +/area/station/engineering/gravity_generator) +"xRB" = ( +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 8 + }, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/ai) +"xRC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/lobby) +"xRG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"xRL" = ( +/obj/structure/table, +/obj/item/stock_parts/subspace/transmitter, +/obj/item/stock_parts/subspace/transmitter, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/turf/open/floor/iron/textured, +/area/station/engineering/storage/tcomms) +"xRQ" = ( +/turf/open/floor/iron/dark/textured_large, +/area/station/security/execution/transfer) +"xRR" = ( +/turf/closed/wall, +/area/station/maintenance/department/medical/morgue) +"xRY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/turf/open/floor/iron/textured_corner{ + dir = 4 + }, +/area/station/engineering/atmos) +"xSc" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/stairs/medium{ + dir = 8 + }, +/area/station/science/research) +"xSl" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 1 + }, +/obj/item/gun/energy/laser/practice{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/gun/energy/laser/practice{ + pixel_x = -11; + pixel_y = 1 + }, +/obj/structure/extinguisher_cabinet/directional/north{ + pixel_x = 6 + }, +/obj/machinery/firealarm/directional/north{ + pixel_x = -7 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/auxlab/firing_range) +"xSp" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 9 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"xSq" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/warm/directional/south, +/turf/open/floor/carpet/executive, +/area/station/command/heads_quarters/hop) +"xSt" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/closet/emcloset/wall{ + pixel_x = 32 + }, +/obj/effect/turf_decal/trimline/white/mid_joiner, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_red/diagonal_centre, +/obj/effect/turf_decal/trimline/white/end{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/diagonal_centre, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/execution/transfer) +"xSy" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"xSz" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos/hfr_room) +"xSD" = ( +/obj/structure/rack/shelf, +/obj/item/reagent_containers/cup/bottle/lithium{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/reagent_containers/cup/bottle/iron{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/reagent_containers/cup/bottle/multiver{ + pixel_x = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) +"xSK" = ( +/turf/open/floor/iron/large, +/area/station/commons/storage/primary) +"xSM" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/computer/station_alert, +/obj/machinery/requests_console/directional/east{ + department = "Atmospherics"; + name = "Atmospherics Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/structure/sign/poster/contraband/atmosia_independence/directional/north, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos/storage/gas) +"xSN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/chair_maintenance{ + dir = 4 + }, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/central) +"xSU" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/textured_large, +/area/station/hallway/secondary/construction) +"xSY" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/engineering/atmos) +"xTh" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/holopad/secure, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/turf/open/floor/iron/textured_large, +/area/station/command/heads_quarters/hos) +"xTv" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured, +/area/station/medical/break_room) +"xTw" = ( +/obj/effect/turf_decal/trimline/green/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/corner, +/obj/effect/turf_decal/siding/green{ + dir = 8 + }, +/turf/open/floor/iron/large, +/area/station/service/hydroponics) +"xTF" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/blueshield) +"xTN" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_corner{ + dir = 8 + }, +/area/station/cargo/storage) +"xTY" = ( +/turf/closed/wall/r_wall, +/area/station/security/corrections_officer) +"xUa" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/pod/dark, +/area/station/service/chapel) +"xUk" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/construction/mining/aux_base) +"xUw" = ( +/obj/structure/railing, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 6 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"xUB" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Chemistry Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/pharmacy, +/obj/effect/mapping_helpers/airlock/access/any/medical/chemistry, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical/morgue) +"xUK" = ( +/obj/structure/disposaloutlet{ + dir = 1; + name = "Cargo Deliveries" + }, +/obj/structure/window/reinforced/spawner/directional/west{ + layer = 2.9 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/status_display/ai/directional/south, +/obj/structure/plasticflaps, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/textured_large, +/area/station/cargo/storage) +"xUP" = ( +/obj/item/reagent_containers/cup/bucket/wooden{ + name = "waste bucket" + }, +/turf/open/floor/iron/textured, +/area/station/security/prison/work) +"xUZ" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/mod/module/plasma_stabilizer{ + pixel_y = 16 + }, +/obj/item/inspector, +/obj/item/mod/module/thermal_regulator{ + pixel_y = 16 + }, +/turf/open/floor/glass/reinforced, +/area/station/security/office) +"xVm" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/disposal/incinerator) +"xVB" = ( +/obj/structure/cable, +/turf/open/floor/pod/dark, +/area/station/engineering/storage/tech) +"xVN" = ( +/obj/structure/displaycase/trophy, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/service/library) +"xVP" = ( +/obj/effect/spawner/random/trash/moisture_trap, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/aft) +"xVS" = ( +/obj/structure/liquid_pump, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/lesser) +"xWf" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth/fancy/mechanical{ + id = "barbershopcurtains" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/service/barber) +"xWm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_large, +/area/station/science/ordnance/office) +"xWo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/turf/open/floor/iron/dark/diagonal, +/area/station/engineering/transit_tube) +"xWq" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/service/theater) +"xWw" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Break Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/break_room) +"xWK" = ( +/obj/structure/closet, +/obj/effect/spawner/random/maintenance/four, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/engineering/vending_restock, +/obj/effect/spawner/random/entertainment/money, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/greater) +"xWN" = ( +/obj/machinery/newscaster/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/carpet/blue, +/area/station/command/heads_quarters/cmo) +"xWP" = ( +/obj/structure/table, +/obj/item/cutting_board{ + pixel_x = -5; + pixel_y = 10 + }, +/obj/item/knife/kitchen{ + pixel_x = 8; + pixel_y = 13 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen/abandoned) +"xWZ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/royalblack, +/area/station/command/heads_quarters/hos) +"xXg" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/medical/central) +"xXi" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/directional/south{ + c_tag = "Aft Primary Hallway - Starboard"; + name = "hallway camera" + }, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/aft) +"xXo" = ( +/turf/open/space/basic, +/area/space/nearstation) +"xXv" = ( +/obj/machinery/atmospherics/components/unary/passive_vent, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"xXC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/textured_large, +/area/station/cargo/miningoffice) +"xXU" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"xXY" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"xYh" = ( +/obj/machinery/door/airlock/command{ + name = "E.V.A. Storage" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/navigate_destination/eva, +/obj/effect/mapping_helpers/airlock/access/any/command/eva, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/command/storage/eva) +"xYi" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/structure/closet/emcloset/wall{ + pixel_x = -32 + }, +/obj/effect/turf_decal/trimline/white/end{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/trimline/white/mid_joiner{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/hallway/primary/aft) +"xYq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4; + name = "Armospherics Junction" + }, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/effect/mapping_helpers/mail_sorting/engineering/atmospherics, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos/storage) +"xYy" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/machinery/door/window/left/directional/south{ + name = "Robotics Deliveries"; + req_access = list("robotics") + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/robotics/lab) +"xYA" = ( +/obj/structure/rack, +/obj/item/latexballoon, +/obj/item/scooter_frame, +/obj/effect/spawner/random/maintenance/two, +/obj/effect/decal/cleanable/dirt, +/obj/item/screwdriver, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/medical/central) +"xYN" = ( +/obj/item/radio/intercom/directional/east, +/obj/structure/table, +/obj/machinery/microwave{ + desc = "Cooks and boils stuff, somehow."; + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/floor/iron/kitchen, +/area/station/service/kitchen) +"xZa" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/commons/fitness/recreation) +"xZk" = ( +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/white/diagonal, +/area/station/medical/medbay/central) +"xZo" = ( +/obj/effect/turf_decal/trimline/dark_red/filled/line, +/obj/machinery/camera/directional/south{ + c_tag = "Engineering - Construction Starboard" + }, +/turf/open/floor/iron/textured_edge{ + dir = 1 + }, +/area/station/hallway/secondary/construction) +"xZr" = ( +/obj/structure/table, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/filter, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/engineering/storage/tcomms) +"xZS" = ( +/obj/structure/tank_dispenser/oxygen, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/command/storage/eva) +"xZY" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera/directional/north{ + c_tag = "Arrivals - Bay Fore Starboard"; + name = "arrivals camera" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/textured_large, +/area/station/command/cc_dock) +"yaa" = ( +/obj/structure/table/reinforced, +/obj/machinery/microwave{ + desc = "Cooks and boils stuff, somehow."; + pixel_x = -2; + pixel_y = 5 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/storage) +"yae" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/central) +"yaf" = ( +/obj/structure/bed, +/obj/item/bedsheet/red, +/obj/effect/landmark/start/prisoner, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 5 + }, +/obj/machinery/button/curtain{ + id = "Cell1Privacy"; + pixel_x = -4; + pixel_y = 24 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"yaj" = ( +/turf/closed/wall, +/area/station/cargo/miningoffice) +"yak" = ( +/obj/structure/cable, +/turf/open/floor/wood, +/area/station/security/prison/garden) +"yaE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/maintenance/port/aft) +"yaH" = ( +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/tile/red/fourcorners, +/turf/open/floor/iron/dark/textured, +/area/station/security/warden) +"ybj" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/grimy, +/area/station/service/library) +"ybu" = ( +/obj/structure/table/reinforced, +/obj/item/flashlight/seclite, +/obj/item/flashlight/seclite, +/obj/item/flashlight/seclite, +/obj/item/clothing/mask/gas/sechailer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/mask/gas/sechailer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/mask/gas/sechailer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/lockbox/loyalty{ + pixel_y = -11 + }, +/obj/structure/window/reinforced/spawner/directional/north{ + pixel_y = 1 + }, +/obj/structure/window/reinforced/spawner/directional/east{ + layer = 2.9; + pixel_x = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/obj/item/storage/box/flashbangs{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/box/teargas{ + pixel_x = 6; + pixel_y = -6 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/security/armory) +"ybE" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/edge, +/area/station/commons/storage/primary) +"ybF" = ( +/obj/effect/spawner/random/vending/snackvend, +/obj/effect/turf_decal/siding/red{ + dir = 8 + }, +/turf/open/floor/iron/large, +/area/station/hallway/primary/fore) +"ybI" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/structure/sign/warning/pods/directional/north, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/glass/reinforced, +/area/station/medical/medbay/central) +"ybJ" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/duct, +/obj/structure/disposalpipe/sorting/mail{ + dir = 2; + name = "Virology Junction" + }, +/obj/effect/mapping_helpers/mail_sorting/medbay/virology, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/medical/medbay/central) +"ybP" = ( +/obj/structure/table, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 10 + }, +/obj/item/taperecorder{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/structure/window/reinforced/spawner/directional/west, +/turf/open/floor/iron/white, +/area/station/science/explab) +"ybR" = ( +/obj/structure/table/reinforced, +/obj/item/plate, +/obj/item/plate{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/plate{ + pixel_x = -2; + pixel_y = 7 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/kitchen/abandoned) +"ybS" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/obj/machinery/light/floor/has_bulb, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"ybV" = ( +/obj/machinery/computer/mechpad{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/science/robotics/lab) +"ycf" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral/diagonal_centre, +/turf/open/floor/iron/diagonal, +/area/station/commons/dorms) +"yci" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"yct" = ( +/obj/machinery/growing/tray, +/obj/item/radio/intercom/prison/directional/north, +/turf/open/floor/grass, +/area/station/security/prison/garden) +"ycu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/engine) +"ycv" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/turf/open/floor/iron/textured, +/area/station/maintenance/department/medical) +"ycy" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/science/lab) +"ycB" = ( +/obj/effect/turf_decal/stripes/box, +/obj/machinery/rnd/production/techfab/department/service, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/hallway/secondary/service) +"ycD" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/textured_large, +/area/station/engineering/gravity_generator) +"ycH" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 8 + }, +/area/station/security/brig) +"ycM" = ( +/obj/machinery/power/shuttle_engine/huge, +/turf/open/space/basic, +/area/space) +"ycQ" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 6 + }, +/obj/structure/closet/secure_closet/brig{ + id = "Cell 2"; + name = "Cell 2 Locker" + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/brig) +"ycR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/primary/central/aft) +"ycU" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 1 + }, +/obj/machinery/duct, +/turf/open/floor/iron/white/side{ + dir = 6 + }, +/area/station/science/lab) +"ydl" = ( +/obj/machinery/light_switch/directional/east, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_red/opposingcorners, +/turf/open/floor/iron, +/area/station/service/theater) +"ydA" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/spawner/random/trash/grime, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"ydE" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow/anticorner{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"ydJ" = ( +/obj/structure/chair/stool/directional/north, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/effect/turf_decal/tile/red/opposingcorners{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/commons/lounge) +"ydK" = ( +/turf/open/floor/wood/large, +/area/station/service/barber) +"yea" = ( +/obj/machinery/atmospherics/components/binary/pump, +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 4 + }, +/obj/structure/sign/warning/cold_temp/directional/east, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/science/ordnance) +"yec" = ( +/obj/machinery/light/cold/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/execution/transfer) +"yef" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Art Gallery"; + name = "library camera" + }, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/spawner/random/decoration/statue{ + spawn_loot_chance = 35 + }, +/obj/structure/table/wood/fancy, +/obj/structure/sign/painting/large/library{ + dir = 1 + }, +/turf/open/floor/wood, +/area/station/service/library) +"yeg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/dark_blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue/half{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/bridge) +"yep" = ( +/obj/structure/railing, +/obj/structure/flora/grass/jungle, +/turf/open/floor/grass, +/area/station/hallway/secondary/exit/departure_lounge) +"yew" = ( +/obj/structure/lattice, +/obj/machinery/camera/directional/west{ + c_tag = "AI Satellite - Starboard"; + name = "ai camera"; + network = list("minisat"); + start_active = 1 + }, +/turf/open/space/basic, +/area/space/nearstation) +"yeD" = ( +/obj/machinery/computer/mech_bay_power_console{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/circuit/red, +/area/station/science/robotics/mechbay) +"yeF" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/plasticflaps/opaque{ + name = "Engineering Deliveries" + }, +/obj/machinery/door/poddoor/preopen{ + id = "engielock"; + name = "Engineering Lockdown Blast Door" + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + dir = 4; + location = "Engineering" + }, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/starboard/aft) +"yeI" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/turf/open/floor/iron/grimy, +/area/station/commons/dorms) +"yeO" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/engine/atmos/lesser) +"yfa" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/turf/open/floor/iron/diagonal, +/area/station/hallway/secondary/service) +"yfl" = ( +/obj/effect/turf_decal/trimline/green/filled/warning, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/hallway/primary/fore) +"yfq" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/secondary/command) +"yft" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/firealarm/directional/west, +/obj/machinery/camera/directional/west{ + c_tag = "Courtroom - Port" + }, +/turf/open/floor/carpet, +/area/station/security/courtroom) +"yfx" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/aft) +"yfB" = ( +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/hallway/secondary/command) +"yfK" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8; + name = "Engine Coolant Bypass" + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"yfW" = ( +/obj/structure/bed/double, +/obj/item/bedsheet/hos/double, +/obj/machinery/newscaster/directional/north, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/carpet/royalblack, +/area/station/command/heads_quarters/hos) +"ygc" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/aft) +"yge" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/fore) +"ygg" = ( +/obj/structure/chair/office, +/obj/effect/turf_decal/trimline/purple/filled/warning, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/science/robotics/lab) +"ygz" = ( +/obj/effect/spawner/random/trash/garbage, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/aft) +"ygP" = ( +/turf/closed/wall/r_wall, +/area/station/ai_monitored/command/storage/eva) +"ygT" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/security/brig) +"ygX" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/two, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/fore) +"yhr" = ( +/obj/effect/turf_decal/trimline/dark_red/arrow_cw{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/radio/intercom/directional/north, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/small, +/area/station/hallway/primary/central) +"yhs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/item/radio/intercom/directional/south, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/turf/open/floor/iron/white/diagonal, +/area/station/medical/medbay/central) +"yhC" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/clothing/suit/jacket/letterman_nanotrasen, +/obj/item/clothing/suit/toggle/lawyer, +/obj/item/clothing/under/costume/maid, +/obj/item/clothing/head/costume/kitty, +/obj/effect/turf_decal/siding/wood/end{ + dir = 1 + }, +/turf/open/floor/wood, +/area/station/commons/dorms) +"yhD" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/qm) +"yhL" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/textured_large, +/area/station/command/gateway) +"yhP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/science/xenobiology) +"yhS" = ( +/obj/effect/turf_decal/siding/thinplating/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 2 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central/fore) +"yhZ" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/hallway/secondary/command) +"yib" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/cargo/miningdock) +"yis" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/medbay/central) +"yiu" = ( +/obj/machinery/oven, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/terracotta, +/area/station/service/kitchen/abandoned) +"yiT" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"yiU" = ( +/turf/closed/wall/rust, +/area/station/maintenance/aft/greater) +"yiX" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/siding/red{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/security/office) +"yja" = ( +/obj/structure/table, +/obj/item/stack/sheet/iron/fifty, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/supermatter/room) +"yjw" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/iron/stairs/left{ + dir = 1 + }, +/area/station/engineering/atmos) +"yjP" = ( +/obj/machinery/requests_console/directional/east{ + department = "Chemistry"; + name = "Chemistry Requests Console" + }, +/obj/machinery/light/cold/directional/east, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/obj/effect/mapping_helpers/requests_console/ore_update, +/turf/open/floor/iron/freezer, +/area/station/medical/chemistry) +"yjU" = ( +/obj/machinery/computer/slot_machine, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/wood/large, +/area/station/commons/fitness/recreation) +"ykd" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/grassy, +/obj/structure/flora/bush/flowers_br, +/mob/living/basic/sheep, +/turf/open/floor/grass, +/area/station/hallway/secondary/exit/departure_lounge) +"ykh" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain/cloth/fancy, +/turf/open/floor/plating, +/area/station/service/hydroponics/upper) +"yki" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/edge, +/area/station/hallway/primary/central) +"ykq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/wood, +/area/station/commons/vacant_room/office) +"ykz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/tank_holder/oxygen/yellow, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/aft) +"ykC" = ( +/obj/machinery/power/shuttle_engine/heater, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/turf/open/floor/iron/textured, +/area/station/commons/vacant_room/office) +"ykE" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/fore) +"ykF" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/obj/effect/turf_decal/tile/dark/full, +/obj/effect/turf_decal/bot, +/obj/machinery/computer/atmos_control/carbon_tank{ + dir = 4 + }, +/obj/structure/window/reinforced/plasma/spawner/directional/west, +/turf/open/floor/iron/textured_large, +/area/station/engineering/atmos) +"ykT" = ( +/obj/machinery/smartfridge/chemistry/preloaded, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistry_shutters"; + name = "Pharmacy Shutters" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/pharmacy) +"ylg" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/textured, +/area/station/engineering/atmos/pumproom) +"yli" = ( +/obj/machinery/dryer{ + dir = 8; + pixel_x = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/sink/directional/south, +/obj/structure/mirror/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet) +"ylx" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "brigprison"; + name = "Prison Blast Door" + }, +/turf/open/floor/plating, +/area/station/security/corrections_officer) +"yly" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/space/basic, +/area/space/nearstation) +"ylS" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/rd) +"ylT" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/obj/machinery/light_switch/directional/east{ + pixel_y = 11 + }, +/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner{ + dir = 1 + }, +/obj/machinery/button/door/directional/east{ + id = "chemistry_shutters"; + name = "Shutters Control"; + req_access = list("pharmacy") + }, +/obj/effect/turf_decal/bot_red, +/obj/machinery/chem_dispenser{ + layer = 2.7 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/pharmacy) + +(1,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(2,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(3,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(4,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(5,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(6,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(7,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(8,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(9,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(10,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(11,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(12,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(13,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(14,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(15,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(16,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(17,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(18,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(19,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(20,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ltB +ttw +ltB +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(21,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +bgi +ttw +bgi +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(22,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +bgi +bgi +ttw +bgi +bgi +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(23,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +bgi +bgi +pZQ +fGB +pZQ +bgi +bgi +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(24,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +bgi +bgi +fGB +pZQ +bBy +pZQ +fGB +bgi +bgi +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(25,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +bgi +bgi +pZQ +pZQ +evm +wPp +jKp +pZQ +pZQ +bgi +bgi +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(26,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ltB +bgi +bgi +fGB +fGB +aye +pNc +dbc +iKV +hZq +fGB +fGB +bgi +bgi +ltB +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(27,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +pZQ +sdi +ugz +nbV +kTR +dwH +dbc +rKf +pZQ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(28,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ltB +bgi +bgi +fGB +fGB +wxO +iHX +ugz +grD +gLJ +fGB +fGB +bgi +bgi +ltB +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(29,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +bgi +bgi +pZQ +pZQ +mzy +dbc +eit +pZQ +pZQ +bgi +bgi +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(30,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +bgi +bgi +fGB +pZQ +nQP +pZQ +fGB +bgi +bgi +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(31,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +rug +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +bgi +bgi +pZQ +ioZ +pZQ +bgi +bgi +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(32,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +rug +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +bgi +bgi +ttw +bgi +bgi +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(33,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +bgi +ttw +bgi +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(34,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ltB +ttw +ltB +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(35,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +rug +ttw +ttw +ttw +ttw +ttw +xMq +ttw +xMq +ttw +ttw +ttw +ttw +ttw +rug +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(36,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +ttw +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(37,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +ttw +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(38,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +ttw +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(39,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +ttw +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(40,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +ttw +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(41,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +ttw +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(42,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +rug +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +ttw +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(43,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +ttw +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(44,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +xMq +gPJ +gPJ +gPJ +gPJ +gPJ +gPJ +gPJ +gPJ +gPJ +gPJ +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +ttw +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(45,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +rug +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +ttw +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +ttw +gPJ +xMq +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +ttw +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(46,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +vhU +bqg +bqg +bqg +bqg +bqg +bqg +bqg +bqg +bqg +vhU +bOb +bOb +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +ttw +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(47,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +iLQ +iLQ +vhU +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +vhU +kVS +rhS +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +ttw +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(48,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +vhU +vhU +vhU +bqg +bqg +bqg +bqg +bqg +bqg +bqg +bqg +bqg +vhU +bOb +bOb +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +ttw +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +rug +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(49,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +kbK +ttw +iuX +xMq +xMq +xMq +xMq +xMq +fVg +thv +xMq +xMq +ttw +ttw +odJ +gPJ +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +ttw +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(50,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +kbK +ttw +uQV +uQV +uQV +uQV +uQV +uQV +rDp +rDp +xMq +xMq +xMq +ttw +odJ +iuX +gPJ +gPJ +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +ttw +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(51,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +gPJ +gPJ +kbK +kbK +uQV +uQV +uQV +uQV +uQV +uQV +uQV +rDp +rDp +rDp +rDp +rDp +rDp +rDp +rDp +gPJ +xMq +gPJ +gPJ +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +ttw +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +rug +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(52,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +gPJ +odJ +kbK +dAI +gRN +uQV +uQV +uQV +hef +wwP +rpJ +dve +rDp +rDp +rDp +rDp +rDp +rDp +rDp +rDp +rDp +xMq +xMq +xMq +gPJ +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +ttw +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(53,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +gPJ +odJ +odJ +jkZ +gRN +gRN +uQV +uQV +vKI +hzR +eza +bXW +bew +rDp +knP +rTt +rDp +rDp +wpD +rDp +rDp +rDp +rDp +rDp +vvZ +xMq +gPJ +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +ttw +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(54,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +odJ +odJ +jkZ +jkZ +onb +kAk +uQV +uQV +nbB +cPS +vpR +lDe +bwz +rDp +dBr +toj +rDp +jEA +xRw +ull +rDp +rDp +rDp +rDp +rDp +tXE +xMq +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +ttw +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(55,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +iLQ +iLQ +gPJ +odJ +jkZ +jkZ +shM +vFF +oGH +uQV +uQV +uQV +uQV +hDc +uQV +uQV +rDp +qEq +vIx +uPy +uPy +bWK +qmE +uKy +eai +rDp +rDp +rDp +rDp +xMq +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +ttw +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(56,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +xMq +odJ +odJ +odJ +odJ +jkZ +vkf +vFF +vFF +xPW +oBx +oBx +enT +aIi +bBd +tOI +teP +qmg +lvx +pXI +fRS +vXv +fRS +fRS +lvx +toj +kgu +rDp +rDp +rDp +xMq +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +rug +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +ttw +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +rug +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +gPJ +xMq +gPJ +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(57,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +xMq +odJ +fBB +qBR +sSj +qBR +dYr +huh +vFF +myX +vEX +prp +oKY +pCr +oXq +evL +rkg +eJc +rDp +gil +mFl +rDp +rDp +uwi +rDp +uQi +aNH +nAb +nAb +rDp +rDp +xMq +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +ttw +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +rug +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +xMq +fYl +xMq +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(58,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +odJ +vnj +odJ +odJ +odJ +xXv +cPe +qIb +bjS +jlK +ggB +aBb +fOp +nlD +uGy +gvs +fOp +fOp +jbf +gBB +buX +rDp +iPD +wyH +dYb +uQi +bWK +lvx +coc +rDp +rDp +xMq +gPJ +ttw +ttw +ttw +ttw +ttw +rug +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +ttw +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +xMq +cEx +xMq +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(59,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +odJ +rDl +odJ +xMq +xMq +jkZ +jkZ +jkZ +vFF +cUV +hSo +aMb +ocj +aLH +gLX +cqJ +oXq +ueg +rDp +qFF +elt +rDp +rDp +sMQ +rDp +sgt +uPy +duG +xRB +rDp +rDp +xMq +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +ttw +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +gPJ +gPJ +gPJ +gPJ +gPJ +gPJ +xMq +hBQ +xMq +gPJ +gPJ +gPJ +gPJ +gPJ +gPJ +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(60,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +odJ +rDl +odJ +odJ +xqO +meq +iXW +bBp +axd +axd +iSa +oBx +oBx +jfp +aIi +xxJ +nfC +asM +aeL +lvx +bdP +elt +scd +elt +bdL +dqT +fjr +uBe +rDp +rDp +rDp +xMq +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +ttw +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +ttw +ttw +ttw +xMq +ttw +ttw +xMq +hBQ +xMq +ttw +ttw +xMq +ttw +ttw +ttw +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(61,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +odJ +rDl +odJ +xMq +xMq +jkZ +jkZ +jkZ +lBW +vFF +tTp +nAH +nAH +nAH +nAH +tjy +nAH +nAH +rDp +qEq +mqA +uPy +uPy +bWK +xKl +vGT +eJO +rDp +rDp +rDp +rDp +xMq +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +ttw +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +rug +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +ttw +sDI +sDI +sDI +sDI +sDI +xMq +gSS +xMq +sDI +sDI +sDI +sDI +sDI +ttw +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(62,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +odJ +rDl +odJ +odJ +odJ +odJ +odJ +jkZ +jkZ +rwg +gtq +nAH +nAH +mGP +fHk +eXP +hRb +oHJ +rDp +cPU +oYr +rDp +gsL +qEJ +kHn +rDp +rDp +rDp +rDp +rDp +lnp +xMq +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +ttw +xMq +ttw +ttw +ttw +ttw +ttw +rug +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +xMq +hBQ +hBQ +hBQ +hBQ +hBQ +hBQ +gSS +hBQ +hBQ +hBQ +hBQ +hBQ +hBQ +xMq +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +rug +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(63,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +odJ +rDl +odJ +xMq +gPJ +gPJ +odJ +odJ +jkZ +gRN +gRN +nAH +nAH +qqv +tGq +wLQ +fyG +cZb +rDp +pWf +vhC +rDp +rDp +dVy +rDp +rDp +rDp +rDp +rDp +vvZ +xMq +gPJ +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +ttw +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +gPJ +ttw +sDI +sDI +sDI +sDI +sDI +xMq +gSS +xMq +sDI +sDI +sDI +sDI +sDI +ttw +gPJ +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(64,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +odJ +oFc +odJ +iLQ +ttw +gPJ +gPJ +odJ +kbK +cpP +gRN +nAH +nAH +nAH +wkT +eeN +dss +sZR +rDp +rDp +rDp +rDp +rDp +rDp +rDp +rDp +rDp +xMq +xMq +xMq +gPJ +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +xXo +xXo +rLn +xXo +xXo +rLn +ttw +ttw +qxs +ttw +ttw +ttw +ttw +cvG +ttw +ttw +ttw +ttw +ttw +xMq +ttw +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +rug +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +sxD +vnu +vnu +vnu +vnu +vnu +vnu +vnu +jgz +xMq +ttw +cvG +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +ttw +ttw +ttw +ttw +xMq +ttw +ttw +xMq +gSS +xMq +ttw +ttw +xMq +ttw +ttw +ttw +ttw +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(65,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +odJ +rDl +odJ +iLQ +ttw +ttw +gPJ +gPJ +gPJ +kbK +kbK +nAH +nAH +nAH +nAH +nAH +nAH +nAH +rDp +rDp +rDp +rDp +rDp +rDp +rDp +rDp +gPJ +xMq +gPJ +gPJ +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xXo +xXo +xXo +xXo +xXo +xXo +xMq +xMq +oMs +seE +seE +seE +seE +oMs +xMq +xMq +iLQ +iLQ +iLQ +xMq +ttw +xMq +xMq +iLQ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +vnu +vnu +dzh +vnu +cqf +paz +kmU +paz +wdQ +vnu +soY +qbX +qbX +vnu +qbX +qbX +vnu +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +ttw +sDI +sDI +sDI +sDI +sDI +xMq +xMq +gSS +xMq +xMq +sDI +sDI +sDI +sDI +sDI +ttw +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(66,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +odJ +rDl +odJ +iLQ +ttw +ttw +ttw +ttw +ttw +gPJ +kbK +ttw +nAH +nAH +nAH +nAH +nAH +nAH +rDp +rDp +xMq +xMq +xMq +ttw +odJ +tlW +gPJ +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +pkp +pkp +pkp +pkp +pkp +pkp +xMq +jgz +seE +bLQ +ipL +ipL +vPr +seE +ttw +ttw +ttw +ttw +ttw +xMq +ttw +xMq +ttw +iLQ +iLQ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +vnu +mDd +pCd +vnu +woA +dBG +cmO +uTK +woA +vnu +iHU +oUn +hBV +vnu +bvV +hhO +qbX +qbX +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +xMq +hBQ +hBQ +hBQ +hBQ +hBQ +hBQ +gSS +mql +gSS +hBQ +hBQ +hBQ +hBQ +hBQ +hBQ +xMq +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(67,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +rug +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +odJ +rDl +odJ +iLQ +ttw +ttw +ttw +ttw +ttw +gPJ +kbK +ttw +tlW +xMq +xMq +xMq +xMq +xMq +yew +vvt +xMq +xMq +ttw +ttw +odJ +gPJ +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +dWX +dWX +dWX +hag +tJM +tJM +jQV +tJM +sKL +dWX +rMN +seE +avX +ike +wBS +xQK +seE +ttw +ttw +ttw +ttw +ttw +xMq +ttw +xMq +ttw +ttw +iLQ +iLQ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +vnu +ivF +bKT +lNn +fVz +ihB +gvA +ihB +mKo +pQY +wkP +uIo +cIZ +oCP +kXw +aQo +atW +qbX +qbX +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +ttw +sDI +sDI +sDI +sDI +sDI +xMq +xMq +qIH +xMq +xMq +sDI +sDI +sDI +sDI +sDI +ttw +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(68,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +odJ +rDl +odJ +iLQ +ttw +ttw +ttw +ttw +ttw +xMq +vhU +vhU +vhU +bqg +bqg +bqg +bqg +bqg +bqg +bqg +bqg +bqg +vhU +bOb +bOb +xMq +ttw +ttw +ttw +ttw +ttw +dWX +iLW +iLW +dWX +dWX +woJ +dWX +yhP +ihT +bnf +evr +bnf +bnf +ihT +mIm +ofa +bup +mMB +iEB +xQK +seE +odJ +odJ +ttw +ttw +ttw +xMq +ttw +xMq +ttw +ttw +ttw +xMq +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +vnu +nCp +gAC +vnu +njV +dQO +vyQ +tdB +gdQ +bCw +sZC +cIz +scE +vnu +oAf +dQu +pXg +fNY +qbX +qbX +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +ttw +ttw +ttw +ttw +xMq +ttw +ttw +xMq +gSS +xMq +ttw +ttw +xMq +ttw +ttw +ttw +ttw +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(69,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +odJ +rDl +odJ +xMq +ttw +ttw +ttw +ttw +ttw +iLQ +iLQ +iLQ +vhU +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +vhU +kVS +rhS +gPJ +ttw +ttw +ttw +ttw +dWX +dWX +ubn +azp +dWX +hOr +woJ +woJ +bnf +kVR +kVR +kVR +kVR +kVR +kVR +kVR +kVR +wdu +vne +bly +ocV +oer +mTW +odJ +odJ +dtt +odJ +qNd +ttw +qNd +cvG +ttw +ttw +ttw +xMq +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +rFG +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +vnu +bmv +cqz +vnu +ivS +ihA +vnu +vSg +ivS +vnu +vnu +fXr +vnu +vnu +pId +oUG +oqM +bQy +okV +qbX +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +gPJ +ttw +sDI +sDI +sDI +sDI +sDI +xMq +gSS +xMq +sDI +sDI +sDI +sDI +sDI +ttw +gPJ +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(70,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +odJ +oFc +odJ +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +vhU +bqg +bqg +bqg +bqg +bqg +bqg +bqg +bqg +bqg +vhU +bOb +bOb +xMq +ttw +ttw +ttw +dWX +dWX +jMf +iDa +dIL +dWX +woJ +woJ +woJ +bjI +kVR +uiw +hNw +uiw +uiw +oMs +dtW +uBw +wbB +nRo +mNb +kgb +oMs +hKy +hKy +hKy +tdv +kHU +kHU +keO +tdv +tdv +kHU +kHU +ttw +ttw +iLQ +iLQ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iTA +wDH +iTA +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +rug +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +vnu +gPi +gPi +vnu +bNs +vHy +ivS +vHy +oLN +vnu +sOG +uhb +qRj +vnu +vMv +sqo +bGR +sqo +kzj +qbX +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +xMq +hBQ +hBQ +hBQ +hBQ +hBQ +hBQ +gSS +hBQ +hBQ +hBQ +hBQ +hBQ +hBQ +xMq +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +rug +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(71,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +odJ +rDl +odJ +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +ttw +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +ttw +gPJ +xMq +gPJ +ttw +ttw +ttw +dWX +blT +ccV +mnQ +lkR +dWX +oMA +djc +odG +axD +kVR +uiw +rHL +uiw +hdS +vRS +wDj +wYK +sMO +bxT +wFV +gtM +oMs +xMq +xMq +xMq +tdv +lff +xhb +mJV +tdv +rsC +bTM +kHU +kHU +ttw +ttw +iLQ +iLQ +xMq +xMq +xMq +xMq +xMq +xMq +xMq +ttw +ttw +iTA +pYu +iTA +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +vnu +vnu +vnu +vnu +pNw +btY +ivS +uNN +xBD +vnu +ltw +kEM +gAh +vnu +fZs +lva +xgv +txt +uOs +qbX +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +ttw +sDI +sDI +sDI +sDI +sDI +xMq +gSS +xMq +sDI +sDI +sDI +sDI +sDI +ttw +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(72,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +odJ +rDl +odJ +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +xMq +gPJ +gPJ +gPJ +gPJ +gPJ +gPJ +gPJ +gPJ +gPJ +gPJ +gPJ +ttw +ttw +ttw +ttw +ttw +dWX +dWX +dWX +aBq +dWX +dWX +djc +qLu +dfs +lSP +kVR +jRP +abP +nlj +mIH +rCy +cfa +sYn +vBO +ktF +jMH +qgS +oMs +xMq +xMq +xMq +tdv +hCr +eWi +nMV +tdv +lZV +xqv +bTM +kHU +ttw +ttw +ttw +iLQ +xqO +odJ +odJ +odJ +odJ +odJ +iTA +qjA +iTA +iTA +qfQ +iTA +iTA +qjA +iTA +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +cvH +rDa +vnu +vnu +vnu +vnu +vnu +vnu +vnu +uvX +cPj +cPF +lAB +lAB +lAB +lAB +lAB +lAB +lAB +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +ttw +ttw +ttw +xMq +ttw +ttw +xMq +gSS +xMq +ttw +ttw +xMq +ttw +ttw +ttw +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(73,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +odJ +rDl +odJ +iLQ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +dWX +xtW +xtW +xtW +iGR +djc +djc +qLu +woJ +sOy +kVR +uiw +uiw +uiw +kSV +oMs +gUA +jRN +dfq +uNG +aLt +koP +oMs +xMq +xMq +xMq +tdv +nrE +oeS +dvQ +tCa +eHj +jVp +nPT +tdv +xMq +xMq +xMq +xMq +odJ +ttw +ttw +ttw +ttw +ttw +qjA +bgi +qjA +vYP +iyf +rSZ +qjA +bgi +qjA +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +sAM +sAM +cvH +uYX +aOk +ruH +caK +jGF +eFg +sCH +vnu +vnu +qLq +vnu +lAB +xYA +fWu +cay +fOq +ryw +cEh +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +gPJ +gPJ +gPJ +gPJ +gPJ +xMq +xMq +bdb +xMq +xMq +gPJ +gPJ +gPJ +gPJ +gPJ +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(74,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +odJ +rDl +odJ +iLQ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +dWX +dWX +ajP +kVR +kVR +kVR +qic +bRl +qic +itv +kVR +kVR +oMs +oMs +oMs +oMs +oMs +oMs +iMC +tDI +rjU +hyK +eBk +oMs +ddS +ddS +ddS +nOt +kgS +nOO +lMZ +tdv +eWG +nZn +jKg +tdv +lPC +ttw +ttw +iLQ +odJ +ttw +ttw +ttw +ttw +ttw +iTA +qjA +iTA +rOd +iEH +vUX +iTA +qjA +iTA +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +sAM +ehe +neO +aJr +wsD +vgc +woi +aXr +cBU +xpf +cvH +pZE +nPC +mCN +pxe +hAp +eak +cay +pxe +pxe +pxe +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +eFk +bNZ +eFk +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(75,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +odJ +rDl +odJ +iLQ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +fYK +dWX +qLu +ajP +kVR +vfx +nAP +rJo +nAP +mom +aFv +nAP +tgT +nAP +aka +sSK +sYm +aqx +uVp +oaZ +dLE +shd +hyK +oAD +oMs +jTu +pJg +nwN +nOt +rnf +paM +mXc +qkz +vdn +pNU +qwS +tdv +ttw +ttw +ttw +iLQ +odJ +ttw +ttw +ttw +ttw +ttw +iEL +duu +lUn +kqb +vXf +lmU +fKv +sLO +dJN +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +sAM +nvM +cvH +mMV +lLU +lLU +ign +giU +iwe +nst +dzH +qCH +xvN +mxq +oNL +kGp +pKl +kGp +xXg +pxe +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +eFk +dus +eFk +xMq +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(76,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +odJ +oFc +odJ +iLQ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +dWX +qLu +mIm +kVR +dVY +uiw +sYU +uiw +xXU +dVY +uiw +uiw +uiw +xXU +dVY +uiw +sYU +uiw +xXU +xlZ +ohh +dfq +swL +oMs +hJx +glq +imw +nOt +ctu +qKN +lJI +rdT +dtY +cFr +nUB +tdv +ttw +ttw +ttw +iLQ +odJ +ttw +ttw +ttw +ttw +ttw +iTA +qjA +iTA +cQZ +atf +swZ +iTA +qjA +iTA +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +sAM +jVE +cvH +knY +xhU +oZc +sEF +wEb +jFJ +aub +cvH +grR +mUM +rcl +pxe +pxe +pxe +pxe +oQo +pxe +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +eFk +eFk +tAD +eFk +eFk +xMq +ttw +ttw +ttw +ttw +ttw +uUU +uUU +bSM +bSM +uUU +uUU +uUU +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(77,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +odJ +rDl +odJ +iLQ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +dWX +qLu +mIm +lAp +dVY +uiw +edL +tAl +nUm +uKe +tAl +ecx +uiw +xXU +dVY +tAl +agX +uiw +xXU +mIy +ohh +vJY +gmL +oMs +fqs +oFU +nBM +nOt +tdv +cnb +tdv +sBX +cmM +ghB +dlv +tdv +ttw +ttw +ttw +xMq +odJ +ttw +ttw +ttw +ttw +ttw +qjA +eDN +tvo +xKZ +gNe +lmU +rva +ast +qjA +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +sAM +jVE +cvH +cvH +cvH +cvH +cvH +cvH +cvH +cvH +cvH +qIT +yhs +rcl +liB +qgv +dGj +pxe +wFc +pxe +pxe +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +ttw +ttw +ttw +ttw +xMq +ttw +ttw +ttw +xMq +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xtV +myq +sLD +tnD +xtV +uUU +uUU +uUU +uUU +uUU +uUU +uUU +uUm +aWY +mnM +uUU +oVO +pkp +ttw +ycM +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(78,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +odJ +rDl +odJ +iLQ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +dWX +qLu +mIm +qic +nty +raP +raP +raP +mEC +cXP +wsk +raP +raP +irO +iVS +wsk +raP +raP +hbZ +lNx +eTZ +huS +vgh +tBt +jCv +uMi +wxs +vNn +pLH +iQV +tdv +dri +wNt +nwu +xBB +tdv +xqO +odJ +odJ +odJ +odJ +ttw +ttw +ttw +ttw +ttw +qjA +qXO +woY +xKZ +gNe +lmU +dNz +obp +qjA +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +sAM +sAM +vik +qFH +sAM +oXc +eyH +okG +gtg +oVv +spB +mTx +wfV +mUM +pcx +gjT +wtc +sNq +pxe +wFc +mJA +pxe +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +ttw +ttw +ttw +xMq +xMq +xMq +xMq +xMq +gCm +xMq +xMq +xMq +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +xMq +xMq +xtV +bTj +gRC +ooi +xtV +vFB +ydA +sWI +ron +lQt +oxA +ipJ +dwi +vPk +rzh +uUU +jwC +pkp +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(79,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +odJ +rDl +odJ +xMq +ttw +ttw +ttw +rug +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +dWX +qLu +bMr +kVR +meR +meR +meR +meR +meR +meR +biy +meR +meR +meR +meR +biy +meR +meR +jKr +dar +ezO +eyR +oMs +tBt +fqs +kDU +nBM +nOt +qFu +wOS +tdv +tdv +tdv +eyy +nJt +eyy +hSY +uvj +xMq +ttw +odJ +ttw +ttw +ttw +ttw +ttw +qjA +jJE +wop +kJv +nHY +qCP +dNz +jPt +qjA +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +sAM +tLz +cyO +qHI +xtk +dub +sfx +rwr +hsr +kcD +xWw +pbG +gTb +wDW +flH +mdK +oLS +hbE +pxe +wGg +gHM +pxe +ttw +ttw +ttw +ttw +ttw +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +pkR +pkR +pkR +lJu +axc +pkR +pkR +xMq +xMq +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +uUU +uUU +uUU +uUU +xtV +mGv +dMS +sbU +xtV +dUO +lQt +eMd +oxA +oxA +oxA +uUU +ptY +voU +oOK +uUU +rmo +pkp +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(80,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +odJ +rDl +odJ +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +gPJ +xMq +gPJ +gPJ +ttw +ttw +ttw +rug +ttw +ttw +ttw +ttw +ttw +dWX +qLu +bMr +oRY +iIn +iIn +tvP +iIn +iIn +iIn +ckQ +sLA +iIn +iIn +iIn +xGk +gbf +iIn +iIn +bka +vEz +pgM +oMs +uOt +gEe +rQf +bpa +nKb +bSW +mkK +sYC +eHA +fAN +eyy +nFs +uvj +fTK +uvj +xMq +xMq +odJ +ttw +ttw +ttw +ttw +ttw +qjA +srZ +wop +xKZ +gNe +lmU +dNz +kTq +qjA +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +sAM +fDA +sAM +fSS +sAM +pgP +rDL +wwA +jvf +hJR +spB +wfV +otW +wfV +rcl +fUy +bMN +wNJ +lMx +xim +pxe +pxe +ttw +ttw +ttw +ttw +ttw +cgZ +cgZ +cgZ +cgZ +fYi +iJR +pCA +pCA +pCA +pkR +pkR +qPh +iGO +moV +qbS +eVW +pkR +pkR +pkR +xMq +xMq +xMq +xMq +xMq +xMq +uUU +uUU +uUU +uUU +uUU +uUU +ngv +anW +jAM +xtV +xtV +uMK +xtV +xtV +aDC +qQC +qMB +xwf +yaE +oNW +uUU +ipJ +uUU +uUU +uUU +uUU +uUU +uUU +uUU +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(81,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +odJ +rDl +odJ +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +xMq +fYl +xMq +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +dWX +qLu +ttO +oRY +kxA +kxA +kxA +kxA +kxA +kxA +uNu +uNu +uNu +uNu +uNu +uNu +uNu +uNu +uNu +iZa +vEz +cQJ +oMs +sYg +qdr +oZv +wnq +pSC +dlg +pSC +wvh +oZv +lVP +eyy +nFs +uvj +ktn +uvj +uvj +xMq +odJ +ttw +ttw +ttw +ttw +ttw +qjA +jLL +aAd +xKZ +prG +rUz +nJj +urb +qjA +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +rug +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +fSS +fDA +fSS +ttw +hIh +hIh +pHo +wVN +fRm +xTv +hIh +fbx +wfV +hUI +rcl +rcl +rcl +rcl +pxe +xmF +pxe +ttw +ttw +ttw +ttw +ttw +cgZ +cgZ +jLS +sYt +mIp +aXF +lvC +rlC +lvC +aXF +cyz +nhU +vAk +qbS +xiD +rSG +vAk +ryX +kMf +pkR +pkR +pkR +uUU +uUU +uUU +uUU +uUU +xwf +eWw +uUU +oNW +lUi +pZH +tgU +oxA +oxA +oxA +nSF +bcq +uUU +uUU +ipJ +uUU +uUU +uUU +uUU +uUU +pZH +eGo +eJd +spp +uUU +oVO +pkp +ttw +ycM +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(82,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +odJ +oFc +odJ +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +xMq +cCl +xMq +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +dWX +qLu +bMr +oRY +kHC +kHC +uyE +kHC +kHC +kHC +nQy +bwJ +kHC +kHC +kHC +wKq +jcW +kHC +kHC +mxy +guX +jHT +oMs +awa +azr +qPS +wvh +oZv +oZv +oZv +oZv +oZv +qIZ +gLi +wdO +eGk +wyD +usk +uvj +uvj +odJ +ttw +ttw +ttw +ttw +ttw +iTA +qjA +iTA +cQZ +aqb +gKZ +iTA +qjA +iTA +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +sAM +qsN +sAM +ttw +xMq +hIh +spB +spB +hIh +spB +hIh +abQ +aCm +xZk +asX +tme +vAC +xwC +pxe +xmF +hxT +ttw +ttw +ttw +ttw +cgZ +cgZ +kIm +kIm +vGO +cgZ +sEq +azI +sEq +sEq +sEq +pkR +nhU +ukh +rSG +bvt +ukh +ukh +vAk +qbS +rSG +rSG +qbS +uUU +qmn +dul +xGr +pZH +oxA +eMd +eMd +tqv +oxA +oxA +oxA +oxA +pZH +eMd +nSF +pZH +uUU +mUE +oxA +hDI +dul +ptX +sSH +qIS +oxA +dXM +oxA +iaq +uUU +jwC +pkp +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(83,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +odJ +rDl +odJ +iLQ +ttw +ttw +ttw +ttw +gPJ +gPJ +gPJ +gPJ +gPJ +gPJ +gPJ +xMq +hdF +xMq +gPJ +gPJ +gPJ +gPJ +gPJ +gPJ +gPJ +ttw +ttw +ttw +dWX +qLu +mIm +kVR +uzN +meR +meR +meR +meR +meR +biy +meR +meR +meR +meR +biy +meR +meR +meR +oMs +gdS +oMs +oMs +iZQ +iRd +qPS +fAG +fAG +qKM +jOF +hYn +yea +paS +eyy +rcr +nFs +mYn +oKR +oBd +uvj +odJ +ttw +ttw +ttw +ttw +ttw +iEL +duu +xOp +kqb +iEH +rUz +fKv +sLO +dJN +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +sAM +dyC +sAM +ttw +xMq +ttw +ttw +xMq +rFD +odJ +bxX +rFD +jzo +xry +asX +cEB +tzN +eKs +pxe +xNL +pxe +ttw +ttw +ttw +cgZ +cgZ +eMx +gmJ +tSx +vGO +cgZ +eQQ +hNN +kZJ +kZJ +kRE +pkR +imc +imc +imc +nMv +nhU +nhU +nhU +nhU +nhU +nhU +wGR +pGY +kUr +tjw +dbP +wpK +eLz +wpK +wpK +wpK +wpK +wpK +wpK +eLz +eLz +eLz +eLz +eLz +gEq +eLz +eLz +qAt +wpK +wpK +qBl +eLz +eLz +eLz +rBy +eMd +uUU +rmo +pkp +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(84,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +odJ +rDl +odJ +iLQ +ttw +ttw +ttw +ttw +gPJ +ttw +ttw +ttw +xMq +ttw +ttw +xMq +hdF +xMq +ttw +ttw +xMq +ttw +ttw +ttw +gPJ +ttw +ttw +ttw +dWX +qLu +mIm +qic +sOZ +lXQ +lXQ +lXQ +ibR +dgw +cKl +lXQ +lXQ +pBo +jSr +cKl +lXQ +lXQ +fPB +uWl +qeQ +nQM +oMs +oew +iXi +idG +xjf +kxt +olt +otw +dpo +otw +xyX +eyy +kJq +nFs +lyJ +vzg +rcf +mbJ +odJ +ttw +ttw +ttw +ttw +ttw +iTA +qjA +iTA +sCX +gNe +moK +iTA +qjA +iTA +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +ptC +phD +xko +xMq +nxH +cXd +ayr +rPY +abQ +abQ +abQ +rFD +icP +icP +wfk +cGu +jqH +vIY +xrG +oQo +fUk +ttw +ttw +cgZ +cgZ +lvJ +cJm +xWK +hbp +cgH +cgZ +wxn +qlA +qFA +qFA +rDm +pkR +imc +vAk +lMS +alm +axc +lMS +lMS +lMS +lMS +lMS +lMS +gTW +gTW +gTW +gTW +gTW +gTW +gTW +gTW +gTW +gTW +gTW +gTW +gTW +gTW +gTW +gTW +gTW +gTW +gTW +gTW +gTW +gTW +gTW +gTW +gTW +gTW +uUU +gEq +gTW +gTW +gTW +gTW +gTW +gTW +tjr +tjr +tjr +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(85,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +odJ +rDl +odJ +iLQ +ttw +ttw +ttw +ttw +gPJ +ttw +sqQ +sqQ +sqQ +sqQ +sqQ +xMq +byl +xMq +sqQ +sqQ +sqQ +sqQ +sqQ +ttw +gPJ +ttw +ttw +ttw +dWX +qLu +bMr +sAL +dVY +uiw +kJT +tAl +nUm +uKe +tAl +sHp +uiw +xXU +dVY +tAl +qBt +uiw +xXU +oMs +xAo +agi +fmb +ncR +vHj +dou +ciZ +hXI +iue +otw +fDb +twb +wlV +eyy +qtl +nFs +lyJ +oKR +ixT +uvj +xqO +ttw +ttw +ttw +net +ttw +qjA +bgi +iTA +rQj +atf +hTN +iTA +bgi +qjA +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +ptC +phD +xko +ttw +odJ +vPV +ttw +ttw +ttw +ttw +abQ +ybI +icP +icP +asX +asX +asX +asX +pxe +oQo +pxe +ttw +ttw +cgZ +rDU +rol +rol +sgk +kIm +cgH +cgZ +wNh +qlA +qFA +krh +fZT +pkR +imc +eVW +lMS +ipg +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +toq +ofo +iBp +qhE +wMA +diz +uRz +par +cie +xrL +dOx +tjr +tjr +tjr +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +rug +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(86,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +odJ +rDl +odJ +iLQ +ttw +ttw +ttw +ttw +gPJ +xMq +hdF +hdF +hdF +hdF +hdF +hdF +byl +hdF +hdF +hdF +hdF +hdF +hdF +kXK +gPJ +ttw +ttw +ttw +dWX +qLu +mIm +kVR +dVY +uiw +sYU +uiw +xXU +dVY +uiw +uiw +uiw +xXU +dVY +uiw +sYU +uiw +xXU +oMs +qbI +dnE +oMs +muZ +bem +nIB +ciZ +gmE +jgy +qkp +tps +bri +lns +eyy +eMb +ggQ +xfS +dtR +uvj +uvj +wjI +wjI +wjI +rpk +rpk +wjI +iTA +iTA +iTA +sCG +gNe +lWz +iTA +qjA +iTA +iTA +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +ptC +phD +xko +ttw +xMq +gMQ +ttw +ttw +ttw +xaL +dMY +icP +rBo +icP +wxG +tvc +plo +pcS +pxe +oQo +hxT +ttw +ttw +cgZ +jLS +cgZ +cgZ +cgZ +cgZ +sYt +cgZ +wNh +qlA +qFA +krh +oJG +pkR +ijj +rSG +lMS +ipg +fSa +fSa +fSa +nhc +fSa +fSa +fSa +fSa +fSa +nhc +nhc +fSa +fSa +xMq +fSa +fSa +fSa +fSa +fSa +fSa +fSa +fSa +fSa +fSa +fSa +fSa +fSa +fSa +fSa +fSa +fSa +xMq +toq +gSY +iBp +tjr +qyv +jjY +bOj +nEp +nEp +nEp +vZa +iXr +ruG +tjr +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(87,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +odJ +rDl +odJ +iLQ +ttw +ttw +ttw +gPJ +gPJ +ttw +sqQ +sqQ +sqQ +sqQ +sqQ +xMq +byl +xMq +sqQ +sqQ +sqQ +sqQ +sqQ +ttw +gPJ +gPJ +ttw +fYK +dWX +qLu +ajP +kVR +oky +eSk +mNX +eSk +nRP +gwJ +eSk +cOf +eSk +bie +sig +eSk +svj +eSk +ksB +oMs +lGw +oMs +oMs +gkM +vvT +gkM +enW +enW +enW +enW +enW +enW +enW +eyy +cIc +nFs +kJq +uvj +uvj +sjR +bnJ +fuT +bnJ +bnJ +sLC +bnJ +bnJ +bMc +rNC +gkI +loF +pTi +iUz +xNd +pey +iTA +iTA +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +ptC +phD +xko +ttw +odJ +vPV +ttw +ttw +ttw +ttw +abQ +wsZ +icP +icP +ooU +ngZ +efn +kzV +pxe +wSR +pxe +pxe +pxe +cgZ +cgZ +cgZ +qHg +xMk +cgZ +lnU +cgZ +wNh +oMd +qFA +krh +xOz +pkR +nhU +rSG +lMS +ipg +fSa +toL +gvf +toL +fSa +oHr +wUT +oHr +fSa +xcG +eyI +xcG +fSa +xMq +fSa +vhP +vhP +vhP +fSa +lzN +lzN +lzN +fSa +sUB +sUB +sUB +fSa +uTv +uTv +uTv +fSa +xMq +toq +gNB +iBp +tjr +ofY +pbp +qhl +hzk +hnk +hzk +dfY +lxr +hBa +bVL +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(88,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +odJ +oFc +odJ +xMq +ttw +ttw +ttw +gPJ +ttw +ttw +ttw +ttw +xMq +ttw +ttw +xMq +byl +xMq +ttw +ttw +xMq +ttw +ttw +ttw +ttw +gPJ +ttw +ttw +dWX +dWX +ajP +kVR +kVR +kVR +kVR +dWX +pCQ +kVR +lAp +kVR +gJt +gDf +fNI +gHH +dBe +ybP +ezu +imh +glD +mrl +ukB +mfr +pXB +hNn +enW +wyJ +wyJ +bpL +aFO +vZV +enW +lpz +lFl +uss +lFl +bQF +uvj +nGH +bnJ +wjI +ecF +iZB +pYc +hsp +ioI +wjI +vYJ +qCd +gNe +rUz +mSw +srL +ueA +jos +iTA +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +ptC +phD +xko +xMq +nxH +cUP +oTr +rPY +abQ +abQ +abQ +rFD +icP +icP +wxG +ofG +mTl +icH +pxe +idg +lgX +lgX +lgX +nQs +wKf +sud +iii +jom +wKf +lnU +cgZ +wNh +oMd +rKu +krh +oio +pkR +nhU +kPt +lMS +ipg +nhc +qst +mVF +taI +fSa +vKC +liY +oWS +fSa +rfo +sCk +rls +fSa +xMq +fSa +rJe +dkF +qiF +fSa +gCG +uCn +mOn +fSa +tdr +iQz +fCb +fSa +gtG +uTv +iWc +fSa +xMq +toq +kMh +iBp +tjr +nGg +kDk +hzk +omW +uMe +jYT +hzk +lUs +kjz +bVL +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(89,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +odJ +rDl +odJ +xMq +ttw +ttw +ttw +gPJ +ttw +sqQ +sqQ +sqQ +sqQ +sqQ +xMq +xMq +byl +xMq +xMq +sqQ +sqQ +sqQ +sqQ +sqQ +ttw +gPJ +ttw +ttw +ttw +dWX +awR +ajP +ajP +mIm +rzB +jMI +ksx +nQt +ksx +kVR +imy +oyg +oyg +jQR +pnr +umQ +urW +cvm +fcd +bxL +oBf +rKd +xWm +vnY +tEA +wyJ +wyJ +ceS +aFO +mSI +enW +dUw +lyJ +uss +wqg +wqg +mHq +vDi +vDi +cXr +cXr +cXr +cXr +cXr +cXr +cHR +cHR +uDw +chJ +cme +rQC +wxq +dXg +vwc +iTA +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +sAM +nMx +sAM +sAM +xMq +ttw +ttw +xMq +rFD +xMq +xMq +rFD +pyQ +pyQ +wxG +pAE +qkb +irU +bgo +ikc +jwV +utq +lgX +gMx +wKf +ryt +olf +rLZ +wKf +lnU +cgZ +wxn +oMd +qFA +krh +gMl +pkR +nhU +aTo +lMS +ipg +fSa +xQU +jpg +fAA +nhc +hau +vSc +kJk +fSa +cGw +eHu +plZ +fSa +xMq +nhc +uIc +jPD +cqq +nhc +gDE +lar +kgl +nhc +pvF +vSb +nbP +nhc +nxz +vNc +djR +fSa +xMq +toq +pPh +iBp +tjr +lcf +kDk +vGs +kvy +gJU +dYV +mZO +lUs +vHx +tjr +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(90,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +odJ +rDl +odJ +xMq +ttw +ttw +ttw +gPJ +xMq +hdF +hdF +hdF +hdF +hdF +hdF +byl +cGC +byl +hdF +hdF +hdF +hdF +hdF +hdF +xMq +gPJ +ttw +ttw +ttw +dWX +dWX +dWX +dWX +vqJ +nlz +nlz +nlz +nlz +gwB +kVR +gXM +pNx +mXv +rOi +rmH +cBj +ezu +ikh +oVS +iun +iJg +lfO +rdi +kaf +mRv +aoQ +gle +tGp +twc +kVn +jpG +wyD +oLK +wqg +lFl +bao +uvj +kkv +vDi +cXr +bpz +jXE +hQd +tfi +mRU +aAe +kqf +qCd +gNe +cme +blY +dfA +vqW +aef +iTA +bku +nfJ +nfJ +nfJ +nfJ +nfJ +nfJ +nfJ +nfJ +nfJ +nfJ +nfJ +nfJ +nfJ +bku +sAM +sAM +qsN +qFH +uFl +fSS +fSS +fSS +fSS +sAM +fSS +sAM +sAM +rNH +hEf +nwW +vOX +vOX +vOX +lAB +mDL +lAB +lAB +nzC +eak +wKf +gQi +qaN +kEw +wKf +cgH +cgZ +wNh +qFA +qFA +krh +oio +pkR +pXE +kMI +lMS +ipg +fSa +gVG +uJx +rdd +fSa +gVG +uJx +rdd +fSa +ahw +uJx +ahw +fSa +xMq +fSa +gVG +uJx +rdd +fSa +gVG +uJx +rdd +fSa +gVG +uJx +rdd +fSa +gVG +uJx +sRk +fSa +xMq +toq +tHC +mMD +tjr +qSH +kDk +hzk +jYT +vrk +omW +hzk +lUs +jaz +bVL +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(91,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +odJ +rDl +odJ +iLQ +ttw +ttw +ttw +gPJ +ttw +sqQ +sqQ +sqQ +sqQ +sqQ +xMq +xMq +dnr +xMq +xMq +sqQ +sqQ +sqQ +sqQ +sqQ +ttw +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +dWX +uIZ +dWX +dWX +dWX +cwO +pmk +kVR +jIT +tEK +uba +aOs +dTn +skf +aVa +uJu +tNy +oki +nIO +rkw +bUy +pRX +tEA +hIu +siT +siT +sEa +btZ +enW +lpz +qwH +lyJ +bao +uvj +uvj +fAu +vDi +hfE +gMV +mMS +ddH +kEL +qTG +pZC +mRU +qCd +aqb +cme +hSy +jmN +vqW +qvc +iTA +qKl +asg +mPj +asg +sIy +asg +mPj +asg +mPj +asg +sIy +asg +mPj +asg +gHG +sAM +nMf +rvJ +dtK +flb +aQn +xtu +hkM +hkM +xtu +xtu +xtu +fpl +gqB +lJJ +wSz +fkM +axY +erF +gzy +xWN +lpZ +lAB +duU +eak +ukV +iSK +bDF +coR +cgZ +cgH +cgZ +wNh +qFA +qFA +krh +oio +pkR +nhU +kMf +lMS +kbU +bJF +ieu +xMq +lLy +xMq +ieu +xMq +lLy +xMq +jMM +xMq +jMM +xMq +xMq +xMq +ieu +xMq +lLy +xMq +ieu +xMq +lLy +xMq +ieu +xMq +lLy +xMq +ieu +xMq +rzK +xMq +xMq +toq +oYN +iBp +tjr +uqH +peM +ues +hzk +cSh +hzk +kuI +qai +oHi +bVL +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(92,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +odJ +rDl +odJ +iLQ +ttw +ttw +ttw +gPJ +ttw +ttw +ttw +ttw +xMq +ttw +ttw +xMq +byl +xMq +ttw +ttw +xMq +ttw +ttw +ttw +ttw +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +dWX +uIZ +dAX +ttw +dWX +dWX +pmk +kVR +kVR +kVR +kVR +kVR +kVR +kVR +kVR +dvU +wqW +eyy +eyy +eyy +eyy +dyd +enW +uLp +trl +trl +bHW +eAG +enW +uvj +tFf +uvj +uvj +uvj +foU +nGH +iRw +hfE +lvX +fPT +tmC +bWT +mRU +wzn +mRU +qCd +prG +cme +wrZ +art +vqW +nNc +iTA +osX +hPi +hPi +hPi +hPi +hPi +rJY +fLd +wPL +hPi +hPi +hPi +hPi +hPi +sMi +sAM +nMf +rba +sAM +sAM +sAM +sAM +sAM +sAM +rrb +lOd +odD +sAM +dhM +iWJ +jJz +cdo +hwG +bKK +iSI +wCt +azV +lAB +mqY +fWu +cgZ +kKC +ooh +hXP +cgZ +sYt +cgZ +sNG +jtE +oON +krh +xZo +pkR +imc +nQG +lMS +deE +sEs +mod +uJx +bhK +byP +mod +uJx +bhK +byP +gwf +uJx +gwf +deE +deE +deE +mod +uJx +aCY +deE +mod +uJx +aCY +deE +mod +uJx +aCY +deE +mod +uJx +mRN +deE +deE +toq +sYX +iBp +tjr +wcU +jjY +xSz +bvK +bvK +bvK +lnK +qRZ +qdT +tjr +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(93,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +odJ +rDl +odJ +iLQ +ttw +ttw +ttw +gPJ +gPJ +ttw +sqQ +sqQ +sqQ +sqQ +sqQ +xMq +byl +xMq +sqQ +sqQ +sqQ +sqQ +sqQ +ttw +gPJ +gPJ +ttw +rug +ttw +ttw +ttw +ttw +dWX +oru +dAX +ttw +ttw +dWX +tgQ +uri +uri +uri +uri +uri +uri +uri +uGk +dxg +rgW +tCx +oLK +eFQ +qwH +qwH +enW +vba +hQk +lxx +trl +enW +enW +fal +qwH +aLp +uvj +kSK +nGH +wsN +vDi +hfE +wvy +oeq +grg +avD +cXr +dfk +mRU +qCd +eFq +cSD +lbX +mdF +gOn +gIW +iTA +osX +hPi +hPi +hPi +rJY +hPi +hPi +hPi +hPi +hPi +wPL +hPi +hPi +hPi +vmy +sAM +ahd +rba +sAM +oLp +ady +gJm +eiV +sAM +sAM +sAM +kOq +uyk +tNX +eDH +kED +cdo +uCS +anM +uCS +pJQ +pJQ +lAB +bes +wCb +cgZ +cgZ +cgZ +cgZ +cgZ +sYt +cgZ +nqj +xSU +qFA +hzD +kXW +pkR +imc +rSG +lMS +wMb +jmT +jTi +gwc +mKU +nRz +xxb +gwc +sCV +hmV +wfX +gwc +wfX +xqs +fIQ +wyX +xHB +gwc +mKU +nhx +xHB +gwc +mKU +tLA +xHB +gwc +mKU +koo +srV +gwc +inB +kug +dSI +toq +eYa +iBp +tjr +rHR +jCo +nFS +gWV +pYi +iKZ +qdT +tjr +tjr +tjr +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(94,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +odJ +oFc +odJ +iLQ +ttw +ttw +ttw +ttw +gPJ +kXK +hdF +hdF +hdF +hdF +hdF +hdF +byl +hdF +hdF +hdF +hdF +hdF +hdF +kXK +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +dWX +gkc +dAX +ttw +ttw +dWX +dWX +dWX +dWX +dWX +dWX +dWX +dWX +dWX +kVR +pkN +qQb +eyy +uvj +uvj +lpz +eFQ +enW +enW +enW +enW +enW +enW +vmd +oKR +eFQ +rTF +uvj +vdV +see +egP +cfR +hiA +kuK +niX +xvh +mmq +vNj +ewi +kQh +caj +rET +iMv +uRb +uRb +bYP +uRb +uRb +cVe +hPi +hPi +vkP +hPi +hPi +hPi +vkP +hPi +hPi +hPi +vkP +hPi +hPi +vmy +lWP +kyg +rba +kfJ +lsQ +fDf +mcW +kam +aQC +aZe +kyH +lMC +uyk +mCM +fsR +kCQ +cdo +tLD +bKK +oQw +lYd +hSX +lAB +wRU +piR +kuJ +aLj +vBd +vBd +vBd +vBd +mnt +nqj +wVn +qFA +nMA +dPw +pkR +tdL +qnm +lMS +tGo +vUR +tMH +ldk +aSA +kaY +jkH +mhO +ihy +mPo +bdH +bJr +pZa +giQ +pci +kms +qHc +ykF +ujv +nhS +wIo +otl +fEX +mVc +vlS +pFr +wKz +nhS +lTD +hDY +oVk +pao +ovT +toq +dKF +hIe +tjr +ecq +mgy +iFZ +emh +tjr +tjr +tjr +tjr +tjr +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(95,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +odJ +rDl +odJ +iLQ +ttw +ttw +ttw +ttw +gPJ +ttw +sqQ +sqQ +sqQ +sqQ +sqQ +xMq +byl +xMq +sqQ +sqQ +sqQ +sqQ +sqQ +ttw +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +xMq +dWX +cyj +dWX +ttw +ttw +ttw +ttw +xMq +ttw +ttw +xMq +ogB +xMq +xMq +ogB +saE +xSc +oxv +ttw +uvj +uvj +mHy +qwH +qwH +opy +bQF +uvj +oKR +hAA +rpS +eFQ +pMu +uvj +vhy +cfR +wjI +wjI +hfE +cXr +cXr +cXr +cXr +cXr +cHR +cHR +qVk +htJ +igo +uRb +uJl +xmt +sXF +uRb +sOM +hPi +hPi +rJY +hPi +hPi +hPi +hPi +hPi +hPi +hPi +wPL +hPi +hPi +kAJ +sAM +odD +ycv +sAM +uwo +cAR +jiJ +ail +sUx +kdk +abw +wfa +uyk +kVk +szx +jIt +xCP +sgB +dTG +oQw +kXu +bTK +lAB +uLt +lAB +sHv +sHv +sHv +sHv +sHv +sHv +eVu +nqj +bza +uPe +xDL +vzs +pkR +nhU +pxn +lMS +njd +rcg +pJO +iLm +tIh +wyv +cci +bfE +lri +wyv +lYR +bfE +lYR +jpN +oxa +lmS +cci +bfE +lri +kuw +cci +bfE +lri +kuw +cci +bfE +iVz +rUO +ucY +iLm +pdO +aQl +vof +toq +umf +nsE +deE +dhd +pJO +uyL +ttC +tot +deE +wTj +pkp +ttw +ycM +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(96,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +odJ +rDl +odJ +xMq +ttw +ttw +ttw +ttw +gPJ +ttw +ttw +ttw +xMq +ttw +ttw +xMq +byl +xMq +ttw +ttw +xMq +ttw +ttw +ttw +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +xMq +nnZ +sVi +caV +xMq +xMq +xMq +xMq +nxH +cXd +ayr +aXM +ohH +ohH +eDt +ogB +rOA +rOA +kmM +ttw +xMq +uvj +uvj +uvj +bDW +dHs +eFQ +fLX +eFQ +qwH +eFQ +uRe +ekX +uvj +ioI +see +wjI +nqC +jDw +rhF +kJQ +awh +jzK +qXY +mhe +uSd +wsy +hbY +noU +uRb +iMd +xmt +aga +uRb +osX +hPi +hPi +hPi +hPi +hPi +hPi +hPi +hPi +hPi +hPi +hPi +hPi +hPi +nua +sAM +xtq +sAM +uyk +uyk +uyk +uyk +byq +xEs +gvI +gJS +urP +niG +hdn +fRZ +aWv +pmu +wqx +mdP +cVG +ino +imd +lAB +rPx +lAB +aaV +sIL +pAn +bJz +dXs +sHv +eVu +cgZ +nqj +lSs +nqj +pkR +pkR +pGY +lMS +lMS +ltK +hLI +dYh +aCW +dYh +hFA +hrq +hrq +hrq +hdk +fbD +dYh +hqu +sXd +luV +cLl +gqc +gqc +cUg +ajK +ajK +orM +ajK +mZX +ucH +elk +vHo +odh +lGS +ajK +ilm +dYh +wvK +vUL +hBC +vXB +mVr +npi +lXr +gws +dYh +urO +deE +mwR +pkp +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(97,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +odJ +rDl +odJ +xMq +ttw +ttw +ttw +ttw +gPJ +gPJ +gPJ +gPJ +gPJ +gPJ +xMq +xMq +vmg +xMq +xMq +gPJ +gPJ +gPJ +gPJ +gPJ +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +xMq +nnZ +sVi +caV +ttw +ttw +ttw +ttw +odJ +vPV +ttw +ttw +ttw +ttw +eDt +uuC +rOA +dcd +kmM +ttw +xMq +ttw +ttw +mbJ +eFQ +oKR +vvr +uvj +uvj +uvj +uvj +uvj +uvj +uvj +wjI +qFI +wjI +mhe +mhe +mhe +dap +jrn +ugT +vam +plM +bnD +qLy +ndE +uvK +uRb +fgh +vjc +efJ +uRb +qyR +hPi +hPi +hPi +hPi +hPi +hPi +hPi +hPi +hPi +hPi +hPi +hPi +hPi +nua +rXv +dIJ +giB +ent +ayV +irm +niG +iky +tos +liH +rHH +jYS +niG +hdn +kUZ +cMG +xCP +wLl +qoN +pvG +npR +dYX +lAB +uLt +lAB +gfr +jTn +qIv +eyh +oXR +sHv +kxk +cgZ +fia +jNA +tAw +pkR +rSG +nhU +hCL +twe +nzp +srG +xpr +xpr +dYh +dYh +dYh +dYh +dYh +dYh +dYh +dYh +hqu +ixv +fIQ +cMm +fYF +lSY +lSY +bIs +qrH +qrH +qrH +rvY +loe +muc +woC +mPM +woC +bHP +qGv +woC +eGi +djI +tLl +kch +kyw +ghz +pus +vTr +dVG +fon +deE +gyG +pkp +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(98,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +odJ +rDl +odJ +xMq +ttw +rug +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +kTc +xoN +kTc +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +nnZ +eyq +caV +ttw +ttw +ttw +ttw +xMq +cLN +ttw +ttw +ttw +xaL +peN +rOA +rOA +rOA +kmM +ttw +rSu +xsF +xMq +uvj +lKX +oBd +uvj +uvj +iIq +txV +niI +pBu +wjI +eBR +sZB +see +wjI +yhC +mWZ +stJ +nQY +fsk +fAW +xsT +mhe +pHa +qVm +cSL +uxP +bQT +gMA +cqB +mdo +uRb +osX +hPi +hPi +jOe +hPi +hPi +hPi +vkP +hPi +hPi +hPi +vTb +hPi +hPi +bBq +rXv +etW +rMu +dac +lpc +bGd +niG +dnm +kOk +uxV +mOa +ows +niG +hdn +kUZ +oga +qDk +qDk +pgq +qDk +qDk +qDk +qDk +aLk +qDk +ohz +cna +qtN +wAO +eQj +sHv +kxk +cgZ +cyL +gpz +bow +pkR +iXs +jmM +wXg +mMw +irQ +pzD +qPY +hix +ksH +bNc +kLU +dYh +dYh +dYh +dYh +dYh +hqu +ixv +fIQ +cMm +nEW +lyr +odh +rch +ajK +igG +ajK +dAj +eVM +aoi +lGS +uar +dYh +ybS +rXo +dYh +ilY +toq +dKF +yeO +xVm +uJi +bdJ +fgP +wfU +xVm +xVm +xVm +xVm +xVm +xVm +xMq +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(99,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +odJ +rDl +odJ +iLQ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +kTc +bXf +kTc +ttw +ttw +ttw +ttw +qBA +qBA +qBA +qBA +qBA +ttw +ttw +ttw +ttw +xMq +nnZ +sVi +caV +ttw +ttw +ttw +ttw +odJ +vPV +ttw +ttw +ttw +ttw +eDt +mwP +rOA +rOA +kmM +ttw +lnJ +odJ +ttw +mbJ +eFQ +rcf +uvj +ioI +nGH +lQf +mlv +kIf +wjI +ffz +dgb +see +wjI +mhe +mhe +mhe +mhe +mhe +mhe +mhe +mhe +unp +oAo +mKc +mms +uRb +gQO +bYi +oWQ +uRb +sEn +hPi +hPi +vkP +hPi +hPi +hPi +hPi +hPi +hPi +hPi +vkP +hPi +hPi +bFy +rXv +iHh +eeC +wCh +hxv +kzU +uyk +niG +niG +wcN +niG +niG +uyk +shm +kUZ +qHh +otQ +wBO +pCB +hbU +cqN +cqN +hbU +fru +qDk +loq +nXi +fmo +kAt +aFm +sHv +kxk +cgZ +kbV +vco +wLc +pkR +cEL +xvp +lMS +nXs +nAn +nTS +fTR +goF +luV +luV +cej +dYh +dYh +dYh +lED +ace +sBt +nQW +raX +foE +ieQ +ace +mcR +ace +llW +llW +llW +ace +ace +hAR +dKm +dKm +hVk +ldr +utx +eeX +rde +toq +qjG +fpk +xVm +hNb +tAc +ksR +oiZ +mCI +atG +huN +bwG +snT +xVm +xVm +xVm +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(100,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +odJ +oFc +odJ +iLQ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +kTc +kTc +uBV +kTc +kTc +pFi +fQH +qBA +qBA +aRf +vNq +pNL +qBA +qBA +ttw +ttw +ttw +xMq +nnZ +sVi +caV +xMq +xMq +xMq +xMq +nxH +cUP +oTr +aXM +ohH +ohH +eDt +ogB +dcd +rOA +kmM +ttw +eOF +ksV +xMq +uvj +rWs +uvj +uvj +xmH +lQf +rXL +lQf +nRd +wjI +nSU +gGT +okX +wjI +nqC +jDw +rhF +geE +eLP +fyB +dzE +mhe +bJB +qIx +tPr +pIi +uRb +ouk +uRb +ouk +uRb +nIP +cQG +jYk +hPi +jOe +hPi +hPi +hPi +hPi +hPi +vTb +hPi +boe +gPd +blV +rXv +aKO +acW +acW +wgl +qMS +flo +qhe +hjU +tpu +gBd +hjU +kio +iHA +rmr +rGH +xRR +jtH +xRR +xRR +xRR +xRR +xRR +srC +qDk +nIi +eti +uxM +tAb +ctO +sHv +gHy +cgZ +xaR +xLd +iOb +pkR +lGH +rnL +lMS +sNa +jAK +iwz +fTR +jkV +cgA +gIu +nAn +dYh +dYh +aRs +kVc +dYh +nyT +cjC +fIQ +bBn +nEW +dYh +vxF +kwl +lGS +lGS +lGS +lGS +lGS +vDL +kbj +pye +eIP +dBV +lUF +gJQ +wka +toq +bbN +tsN +xVm +qeK +rgP +jPc +faq +eVt +oiZ +oiZ +oiZ +oiZ +hBo +bSC +xVm +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(101,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +odJ +rDl +odJ +iLQ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +qBA +qBA +veh +veh +pZx +sFE +ptN +veh +sdR +bVr +qBA +ggm +sFw +lYn +pNL +dck +qBA +ttw +ttw +ttw +xMq +veh +rPr +veh +ttw +ttw +ttw +ttw +xMq +ttw +ttw +xMq +ogB +xMq +xMq +ogB +juQ +jfZ +giY +ttw +xMq +ttw +ttw +rpk +aUu +aiq +wjI +gwZ +nGH +ayc +mlv +lsn +wjI +vSj +qRh +see +wjI +mhe +mhe +mhe +ntS +jSS +ajx +kHT +mkd +bnD +qLy +ndE +utY +uRb +iWi +uRb +abt +uRb +pMO +fKb +nHf +hPi +hPi +hPi +hPi +hPi +hPi +hPi +hPi +hPi +lcL +fKb +rmV +xzy +iQd +xOG +hQK +mfm +rpI +uyG +iXp +ojO +phu +lNu +lNu +ybJ +oiR +jGf +tQM +iui +sfU +akv +akv +akv +akv +xRR +srC +qDk +iVp +xCg +cHE +jFM +tNq +sHv +kxk +cgZ +cgZ +xoT +pkR +pkR +lGH +qoS +lMS +vHh +jAK +iwz +fTR +hXQ +saA +fgR +nAn +dYh +dYh +wyk +kVc +dYh +nyT +sEd +luV +nca +nEW +dYh +nUN +dYh +dYh +dYh +dYh +dYh +dYh +hUp +luV +luV +tBC +hKF +cNd +tBC +luV +toq +jKu +nES +xVm +iHL +eJf +dPY +oaD +oaD +oaD +pnB +uAf +jPc +jPc +eKr +qdb +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(102,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +odJ +rDl +odJ +iLQ +ttw +ttw +ttw +ttw +ttw +ttw +qBA +qBA +xkS +fmR +veh +dbv +keN +jqi +veh +veh +veh +veh +sRK +hrR +kLk +cwH +gQh +veh +veh +veh +veh +veh +veh +rlT +veh +veh +veh +veh +veh +veh +veh +veh +veh +veh +veh +veh +txu +kZs +loJ +ohH +hfE +wjI +wjI +wjI +wjI +dTz +lQf +wjI +wjI +wjI +gYJ +wjI +wjI +wjI +rFB +hpp +see +wjI +vRi +eFp +stJ +jCE +bBE +juC +ieX +mhe +wvi +xAV +bLW +dns +uRb +uRb +uRb +uRb +uRb +brc +buI +fKb +bdd +vek +pmU +hPi +vkP +hPi +fFe +hFM +quy +buI +aPq +eme +rXv +giK +ovf +ovf +pEi +uqV +izt +guE +kUZ +nuh +abQ +nYj +dQH +xfa +qpe +qHh +ljI +aXO +lXh +lXh +lXh +bfF +xRR +srC +qDk +cgt +uwh +gep +qhK +kUi +sHv +eBl +quG +nMZ +izm +gCH +iqX +hIm +qoS +lMS +cAj +fgv +vfn +eEH +fCx +htB +gIu +nAn +dYh +dYh +aRs +kVc +dYh +nyT +cQn +fIQ +cMm +bzI +dVG +xrZ +pYf +dVG +dVG +akb +dYh +dYh +xSY +luV +kkr +ltK +pJO +pJO +rOM +vIt +toq +jKu +nES +xVm +eRt +izg +hCS +rwV +qmM +bdA +lKO +hKp +oZp +oMm +fta +jrv +jnc +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(103,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +odJ +rDl +odJ +iLQ +ttw +ttw +ttw +ttw +ttw +ttw +qBA +dDP +nPy +fmR +veh +gum +wPC +bbz +veh +lhS +mDn +veh +veh +veh +cTq +veh +veh +veh +iJC +hEZ +cVH +iJC +cQj +wnY +tIz +dFh +tIz +tIz +tIz +tIz +qGW +qGW +keF +thN +thN +thN +jzf +qkJ +nSp +lXH +lPJ +bnJ +vsc +kAC +kAC +uDM +hdb +ucl +oNj +pKM +oqF +pKM +pKM +dqM +pDx +qUt +see +wjI +mhe +mhe +mhe +mhe +mhe +mhe +mhe +mhe +rLq +sSF +nkA +uxP +emF +qda +qcV +ogL +mnP +uzX +uVO +fKb +nlO +qfV +pmU +hPi +vkP +hPi +fFe +xml +baF +fKb +fKb +fkP +rXv +gCC +rQi +svU +mOL +vtT +rXv +ePK +kUZ +dYR +lxm +ifS +eux +iAl +wjR +ldf +ljI +sUC +ePm +nYs +qta +wEj +xRR +srC +qDk +riI +mfT +rAh +dfV +feo +sHv +cgZ +oXT +bXt +lMS +lMS +lMS +hcU +fTH +deE +cAj +nOX +tek +aUE +luV +luV +htB +lJL +dYh +dYh +dYh +kVc +dYh +vLz +hTr +pie +ewu +qTQ +fDu +fKt +fTR +vGe +dWY +nAn +dYh +nny +hUp +tTU +hwW +hzM +dYh +dYh +dYh +uvy +toq +vsH +dSC +hWl +vOC +bVW +ewT +xVm +fKI +xVm +xVm +xVm +xVm +hDg +wKm +xVm +xMq +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(104,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +odJ +rDl +odJ +iLQ +ttw +ttw +ttw +ttw +ttw +veh +veh +scI +nWl +fmR +veh +veh +oQh +veh +veh +hpq +knn +eSD +gQh +pnU +xsZ +gQh +lrY +lrY +hND +sjw +lrY +lrY +lrY +hml +vHV +dQq +knn +gbM +jYe +mPw +pnU +bcf +vtD +wPO +snc +bMT +txu +bnr +pRV +aoa +hfE +tpR +ozH +hfE +hfE +hfE +hfE +hfE +vew +clk +gAG +bnJ +lQf +lQf +vWf +nGH +lbi +wjI +nqC +jDw +rhF +jtc +sNj +bsn +jBX +mhe +xIK +sVp +tPr +uxP +eYw +miZ +fQS +mgk +mnP +uRS +fxR +nHf +hPi +hPi +hPi +hPi +hPi +hPi +hPi +hPi +hPi +lcL +fxR +pfD +rXv +etW +rMu +ups +ufc +ufc +jRj +rnF +kUZ +dYR +psn +mls +vSr +lBf +cUH +qQS +dmn +ikp +kqs +nfr +vXi +vXi +xRR +srC +qDk +dmf +rEV +lFg +ihz +aFU +sHv +wiz +rol +jtq +sHv +mjM +biU +jbL +xRL +luV +luV +egJ +xXY +gLx +fmX +btc +fmX +aQl +dYh +dYh +dYh +kVc +dYh +hqu +ixv +fIQ +cMm +mBF +rEk +ijx +fTR +kiN +ohI +nAn +dYh +dYh +pAI +yjw +nAn +dYh +nmg +dYh +dYh +xtF +toq +nFg +hYA +xVm +tXe +kth +mqP +oxP +mzm +jkI +kyU +nXb +xVm +cah +xVm +xVm +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(105,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +odJ +rDl +odJ +iLQ +ttw +ttw +ttw +ttw +ttw +veh +tgh +snc +eyv +veh +veh +vlt +tTQ +aXD +knn +knn +tTQ +pCm +pCm +tTQ +pCm +pCm +pCm +noH +noH +noH +noH +noH +noH +noH +noH +noH +noH +txu +txu +txu +txu +txu +txu +txu +txu +txu +txu +tcm +wNy +ohH +bsI +ueH +jGI +aij +cqt +gty +vLk +bsI +wjI +wjI +wjI +lvs +wjI +wjI +vWf +hpp +tbn +wjI +mhe +mhe +mhe +gQD +dex +fZt +pcI +sDJ +bnD +qLy +ndE +eMe +wAZ +wAZ +wAZ +cSB +dxr +uRS +fKb +nHf +hPi +hPi +jOe +hPi +hPi +hPi +vTb +hPi +hPi +lcL +buI +pfD +rXv +dIJ +dDR +ofc +kMs +qgK +jRj +qiD +kUZ +dYR +uYT +fKN +pEQ +bKZ +cUH +aeg +ljI +ljI +rIN +eMf +nPN +pdU +xRR +srC +qDk +jJs +luM +kQt +rMr +sea +sHv +naG +rol +jtq +sHv +dWt +eUH +ktl +sJg +luV +qHT +nAn +foS +hqu +tit +dYh +dYh +dYh +dYh +dYh +dYh +kVc +dYh +hqu +ixv +fIQ +mhQ +vrU +pJO +uYv +oYv +pJO +pJO +sOo +dYh +dYh +pAI +pVr +osx +hXV +hXV +dYh +dYh +pSj +toq +lEm +wme +xVm +kOS +qYo +cON +taN +fDO +dgO +fSo +hrU +qCM +gQq +mVo +sEK +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +rug +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(106,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +odJ +oFc +odJ +xMq +ttw +ttw +ttw +ttw +veh +veh +veh +veh +bWZ +veh +lQh +lQh +tTQ +pCm +pCm +pCm +tTQ +eou +cEP +das +iJC +hrf +snc +txu +xXo +xMq +xXo +xXo +xMq +xXo +xXo +xMq +xXo +bFO +hDC +pgZ +bFO +vvU +bhv +pJo +pYx +pWt +tac +dMZ +alq +teN +air +jSl +uqW +csg +mJy +twz +gDd +bsI +jOd +jOd +lov +ydK +ydK +wjI +lGy +eWu +nPV +wjI +tRY +omp +stJ +iWk +nlu +enC +mWD +mhe +deV +qVm +kVd +qso +bcC +bcC +bcC +suy +rCB +lrX +fKb +gbO +vkP +hPi +hPi +hPi +vkP +hPi +hPi +hPi +vkP +lcL +fKb +aNJ +rXv +jJZ +rXv +qxO +qxO +qxO +qxO +pcl +kUZ +mRi +abQ +nYj +ldD +uEA +qnh +ldf +bLE +ljI +gVD +iNk +bAT +jET +xRR +srC +qDk +exT +oEy +dei +jpF +uUS +sHv +pRv +vij +bXt +sHv +thY +xZr +wEC +tAa +luV +cVX +lXa +dHB +qLT +nPp +xRY +kIc +xcD +dYh +dYh +dYh +kVc +dYh +mDr +fZo +dbp +qWi +por +dYh +nUN +dYh +dYh +dYh +dYh +dYh +vHY +hUp +wQU +ciQ +rwT +tFh +dYh +wEJ +owP +toq +uat +wme +xVm +cZv +tve +uio +pwd +rcB +xVm +xVm +uKg +xVm +qdb +xVm +xVm +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(107,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +odJ +rDl +odJ +xMq +ttw +ttw +ttw +ttw +veh +snc +hrf +kZF +hrf +lQh +icf +cjh +cjh +cjh +cjh +cjh +cjh +cjh +hIA +hIA +hIA +pwH +hIA +hIA +xMq +cRe +cRe +cRe +cRe +cRe +cRe +cRe +xMq +bFO +gjj +jQS +bFO +aCi +cIG +qpn +jgD +dow +uZB +jDA +pxK +dlB +air +vJV +bPc +mXt +tzk +vSd +wue +bsI +jOd +jOd +gNh +rUo +wQg +wjI +lGy +lQf +omw +wjI +mhe +mhe +mhe +mhe +mhe +mhe +mhe +mhe +eGZ +qVm +mKc +hNF +azX +mcB +lTl +fHg +mnP +tVH +arc +xfx +hPi +hPi +hPi +hPi +hPi +hPi +hPi +hPi +hPi +tYS +arc +qyW +jgg +ixX +gzZ +qxO +voi +snJ +qxO +kCj +qft +fve +eFN +eFN +eFN +eFN +rOB +tSw +bDp +ljI +uXa +nho +qpV +kRg +xRR +xtI +qDk +fnQ +fHI +wsR +ads +vxT +sHv +jLS +jtq +sHv +sHv +fXP +aFY +aFY +aFY +aFY +fEo +pZr +wgB +pZr +fEo +jHV +gQP +hqu +dYh +dYh +dYh +qcS +ace +lgo +buO +luV +nOQ +opI +eCM +vcr +opI +rzR +pPE +kMj +kMj +nbD +tDe +luV +xgj +jyF +gSO +cXk +kIq +afb +toq +dKF +flr +xVm +xVm +xVm +xVm +xVm +xVm +xVm +xMq +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(108,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +odJ +rDl +odJ +xMq +ttw +ttw +ttw +jrF +veh +veh +whS +veh +veh +lQh +aWH +cjh +gOd +bZZ +uhv +wUe +xqm +sOq +aDA +puw +ivy +acx +wwD +hIA +cRe +cRe +nUJ +ceP +hRD +xhq +aNg +cRe +cRe +bFO +dTw +kne +bFO +jgD +kFS +jgD +jgD +pDo +iah +sgG +pxK +jLt +mOD +air +qlS +dje +dje +dje +dje +dje +oqn +oqn +iVy +jQM +ydK +wjI +lGy +mlv +jFH +wjI +nqC +jDw +rhF +rUQ +hUZ +qwZ +vQW +mhe +kKK +qVm +tPr +hNF +tat +kCM +gai +xjI +mnP +ucB +hPi +hPi +hPi +hPi +rJY +hPi +fAV +hPi +wPL +hPi +hPi +hPi +hPi +tUB +cnC +abF +abF +lgm +nOP +wxc +ivR +wBL +tTx +yis +tTx +tTx +tTx +tTx +dZR +qQS +bkB +ljI +oGw +bIx +vdw +gHW +xRR +xtI +qDk +oBl +lMj +oOG +rXD +jOc +sHv +bXt +bXt +sHv +lvM +fXP +mNO +uJp +sOs +onK +fEo +hTW +ckH +jBF +fEo +fEo +iTs +olT +dYh +dYh +dYh +kVc +dYh +dOW +oPr +bMR +tHE +pRI +lig +aWz +bMR +tFt +pir +tfQ +pir +tFt +tFt +tFt +tFt +tFt +tFt +tFt +tFt +tFt +tFt +rOQ +cwa +brI +gAd +pkp +ttw +ycM +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(109,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +odJ +rDl +odJ +iLQ +ttw +ttw +jrF +jrF +doI +lRk +qBp +avm +veh +yge +xhS +cjh +bBU +nPl +gld +fcz +fOR +sOq +iCZ +ffN +ntF +sfj +ikl +hIA +ahe +dcr +dPe +bjJ +nvH +bjJ +nPh +uDa +gFm +bFO +uno +svD +bFO +gvl +uwZ +opQ +jgD +oVw +oee +lXR +eaV +aFP +wPT +rQr +xrI +qHf +wuT +izJ +bJt +dje +gDL +jFt +faf +tmQ +tJJ +wjI +vWf +hpp +tbn +wjI +mhe +mhe +mhe +xcl +cHS +xir +aKT +aGK +bnD +tZX +iFA +jZS +iKW +mgR +ets +kZe +iKW +xZY +hPi +hPi +rJY +hPi +hPi +hPi +hPi +hPi +hPi +hPi +wPL +hPi +hPi +tbQ +cnC +ixX +lZg +qxO +qHt +rBO +slS +tXm +jGc +rBD +xjU +xjU +gqN +jcf +knu +kmR +vLX +ljI +oGw +lGZ +eJL +wok +xRR +xtI +qDk +ecY +lMj +qHx +ugx +vII +sHv +dQi +sHv +sHv +sHv +fXP +xbx +uJp +hYg +hLk +fEo +kRU +xCu +jiR +pOW +dmE +gAQ +svH +dYh +dYh +dYh +kVc +dYh +qbt +oYt +bMR +ylg +lUZ +lxE +tmc +vlU +tFt +qAN +xJH +svC +rJa +rJa +rJa +rJa +juO +rJa +qqa +rJa +aWh +rJa +oza +cwa +brI +ngt +pkp +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(110,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +odJ +rDl +odJ +iLQ +ttw +ttw +jrF +mRj +yhL +mAD +fzp +uhS +veh +lQh +mDn +cjh +oXL +tRr +ipH +cuA +prO +sOq +dWV +ria +iqc +sfj +fXK +hIA +diH +fgT +wKt +xyx +bES +kTS +wKt +caG +gEJ +bFO +uex +pjh +bFO +oFy +aKW +fDJ +jgD +lWk +oee +mwx +uln +lGT +lGT +qIn +oFF +cey +grA +bYs +pKo +dje +mFh +ydK +diV +cgx +nYc +wjI +vWf +eWu +sWB +wjI +eey +oEk +stJ +lbM +nQh +sDB +oVp +mhe +lsg +fZv +tPr +ixt +ets +kZc +kMZ +kMZ +ets +mYm +hPi +rJY +hPi +hPi +hPi +hPi +vkP +hPi +hPi +hPi +hPi +wPL +hPi +vQf +cnC +ixX +lZg +nFV +nJe +rLB +lbI +nmy +dNH +abQ +mQs +wag +mQs +fzP +lBb +unc +aIr +fzP +fzP +fzP +fzP +xRR +xRR +frR +qDk +hjo +lMj +ayH +rfR +hYR +sHv +bXt +sHv +tLj +hHg +gAm +lTb +vCe +eEJ +kQW +wJK +hCp +vjb +nuH +fOX +pZr +buj +cHh +eci +dYh +dYh +kVc +dYh +qbt +naF +bMR +sBq +agm +deq +aUj +rRL +tFt +pLI +fwB +fwB +fwB +ssU +ssU +ssU +fwB +fwB +brI +wxQ +iDu +cwa +cwa +cwa +brI +wNk +pkp +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(111,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +odJ +rDl +odJ +iLQ +ttw +ttw +jrF +qrR +uLh +cKb +hHn +sNI +veh +ptI +txu +cjh +sOq +sOq +uDZ +eRz +hyg +sOq +oyz +foI +foI +dil +lAu +hIA +dLP +dzk +kxB +jvg +pnb +vwV +uSZ +jBY +eDl +bFO +xIu +nxn +bFO +vzG +bFO +jgD +jgD +aFG +oee +mwx +sTo +ijR +wCL +lSX +rhM +qHf +iTJ +wpv +lBP +dje +ydK +vDd +ydK +cgx +rIQ +wjI +vWf +mlv +xOR +wjI +wjI +wjI +wjI +vmf +vmf +vmf +vmf +vmf +vmf +oyX +npn +awq +mgR +lcC +xlC +rJK +mgR +mYm +hPi +bej +hPi +hPi +vTb +hPi +hPi +hPi +jOe +hPi +hPi +jXC +hPi +vQf +cnC +abF +lZg +uHn +fch +tKO +ivR +wBL +dNH +abQ +gta +sLU +rjs +fzP +wzJ +ocF +vWb +oDz +cfH +cad +kLd +xRR +vFl +pPp +xPa +xnl +xEU +kKL +fdN +pzK +sHv +pIN +sHv +ibI +unT +sIN +fIZ +fpt +tUb +qJD +fEo +bOd +fMy +qpq +wFY +xyn +pWQ +gpY +gqc +gqc +gqc +oFl +gqc +qex +qyr +pYv +eyQ +aot +iGg +qUI +kbv +tFt +dHe +ebS +pBZ +hQp +btf +lDP +iDu +jte +wrg +brI +brI +mrV +uvB +fbY +wRj +brI +brI +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(112,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +odJ +oFc +odJ +iLQ +ttw +ttw +jrF +vdi +aZp +aMZ +xec +opp +veh +cpF +txu +tga +jPE +sOq +dKQ +rue +kRb +hLD +lCq +nZF +uTD +jzH +rTv +hIA +cRe +cRe +cRe +cRe +eYF +cRe +bFO +bFO +bFO +bFO +dGf +wzV +mGI +bby +bFO +sTj +wMm +bhF +oee +mwx +sTo +uRG +ugr +sms +cuZ +dje +hMD +nXH +lDz +dje +lPo +lPo +lPo +nSS +xWf +wjI +uZo +oqF +dqM +oZB +dqM +dqM +pVu +vmf +dPm +iRn +dhm +qMC +qTh +dTb +wGy +awq +kZe +nZr +kMZ +tvN +kZe +mYm +hPi +hPi +hPi +hPi +hPi +hPi +hPi +hPi +hPi +hPi +hPi +hPi +hPi +vQf +cnC +ixX +lZg +pzS +vSv +jeR +ivR +qnh +dNH +abQ +pKD +stN +xOU +fzP +aUc +qoG +eQx +cne +adh +dyw +shV +dYc +hbU +eiS +qDk +bGZ +iZs +wSm +wFk +dau +sHv +bXt +sHv +nmw +uWp +bJk +pnP +mON +wVH +rmP +ruX +rWN +xYq +jqM +acJ +fEo +sKD +xFt +hrq +hrq +hrq +kxN +hrq +uch +mND +lCy +pDg +oHc +eDQ +crK +ubZ +tFt +pLI +rJa +gjs +brI +brI +brI +wRj +svC +fwB +iUL +brI +dVe +uvB +jte +hUR +brI +xMq +xMq +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(113,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +odJ +rDl +odJ +iLQ +ttw +ttw +jrF +eDh +ebj +kgY +kgY +pZf +veh +cpF +txu +wYw +tzY +rGr +vGa +iAb +ejU +sOq +vOF +iwk +vNT +itN +npP +hIA +xMq +cas +cRe +sLq +toU +nya +bFO +hBZ +lKw +ted +uHB +rMc +mAr +sor +bFO +sma +gHL +nvL +xKS +ppT +sTo +mdG +oej +juR +eBi +dje +pxy +dje +dje +dje +lvK +grk +xSp +fHY +vcW +wjI +ntM +wjI +wjI +wjI +wjI +hsp +vWf +vmf +hoD +eIx +weV +sHC +tiR +alk +akT +vTW +ets +eJY +kMZ +kMZ +ets +jsb +uVG +uVG +aWw +uVG +uVG +uVG +ipd +qpg +fLd +fLd +llR +fLd +fLd +gXc +cnC +abF +lZg +qxO +ivR +ivR +qxO +ore +uGJ +abQ +mBw +lol +aFT +fzP +eVq +oqu +mcu +vPC +deg +oqu +wmH +xRR +oBW +dPb +qDk +lMj +wPR +qsl +mIB +bNv +sHv +bXt +sHv +xSM +iln +qMn +avl +spA +buK +pFG +fEo +bYS +tyQ +dJb +qfe +rEW +nvc +ace +ace +mSY +ace +csp +dYh +dYh +fLg +pRI +kMa +auH +kIi +fhi +wpy +tFt +dVS +qAN +brI +brI +vOd +brI +dVe +svC +fwB +rOQ +svC +frl +cwa +jte +brI +brI +brI +brI +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(114,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +odJ +rDl +odJ +iLQ +ttw +ttw +jrF +jrF +nMR +wYo +nMR +jrF +veh +pMT +txu +cjh +cjh +cjh +cjh +cjh +cjh +cjh +hIA +hIA +hIA +gPv +hIA +hIA +hca +hca +cRe +cRe +hke +cRe +bFO +kUd +bcn +vWw +kFf +rMc +mgl +kde +glp +vkJ +cLi +lGm +inn +nsp +sTo +wRZ +hjb +lSX +poZ +fpg +eyp +wQX +mIn +sdd +hqW +mAW +jqk +xpH +cYu +pZN +hAi +eyr +mWi +jXw +pZN +wjI +vWf +vmf +vmf +vmf +vmf +tiR +vmf +aTV +evt +xnU +iKW +mgR +iKW +iKW +iKW +uHZ +uHZ +uHZ +uHZ +uHZ +uHZ +cnC +mhC +cnC +cnC +cnC +cnC +cnC +cnC +cnC +cnC +dyZ +yae +cnC +wXr +rjQ +rjQ +nkQ +qtZ +abQ +epZ +lol +onJ +fzP +vkT +iBC +mPB +qhX +deg +iBC +hAu +xRR +xFo +gou +gcy +lMj +lMj +lMj +qsW +lMj +sHv +sEL +sHv +fXP +fXP +lOV +cMC +hcH +iXT +fXP +fpH +cGM +uue +moJ +eNq +day +nAn +dYh +dYh +lEs +tMI +cuQ +vJJ +moZ +iRJ +bMR +unV +vjE +lLx +hqm +hUD +tFt +gOf +sqJ +gYI +jvr +eYM +brI +iJi +svC +uvB +uvB +uvB +uvB +cwa +xRu +gls +oNB +aLY +odJ +xqO +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(115,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +rug +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +odJ +rDl +odJ +iLQ +ttw +ttw +jrF +uHj +qSd +cgu +lZd +bYj +iqM +rjh +nwL +lHP +niu +oET +shk +uHM +oxb +umU +xkh +ngK +vwL +xoL +xkh +wBk +xkh +rhW +lnt +cGJ +uLU +gEY +uoM +dnX +gIj +cea +tTI +fxb +ylS +pVZ +vzG +aeU +gPC +flP +xfY +fza +lnc +mxK +mxK +mDF +xpx +ohH +kAd +phv +eDt +ncm +gHX +pGh +uYH +wDS +hfk +pZN +vWX +lnQ +qqs +rWc +poX +leB +uZo +gTk +kZX +pKM +nvZ +ojT +kic +nIT +ojT +pfL +jzV +pMA +uHZ +kVG +nSR +gDc +bIW +qFh +uHZ +wsl +oAx +cnC +fGb +abF +jVD +abF +ixX +ixX +abF +abF +ixX +ixX +jzh +cnC +htw +iJn +iJn +rrm +kFJ +abQ +bNE +lol +xSD +fzP +ofd +mtY +fdz +pbW +cAQ +sqD +lGN +qDk +qDk +xUB +fiN +lDY +dzy +lbP +pON +daF +uBu +hHK +xYi +uWz +qUl +uxH +vdM +uxH +xwW +jgY +ixg +kMA +fbi +qWX +lzk +pZr +xxp +xsj +iJq +gQv +jir +tFt +tFt +tFt +tFt +tFt +jXW +tFt +tFt +bSd +tFt +tFt +mkr +qbr +brI +hbb +ark +brI +iJi +qAD +jKn +brI +brI +kKX +qys +kKX +brI +brI +brI +brI +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(116,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +odJ +rDl +odJ +xMq +ttw +ttw +jrF +pfm +jlp +qXq +aUp +hTi +huP +nUz +kqO +rTp +taA +fsv +cGU +gpI +qiz +dDf +dDf +xHc +pdc +vKz +dDf +tzB +aKY +lYN +dLK +gpI +dDf +nYT +ibh +mMT +hvo +sGd +bVk +gkm +lai +neu +vuI +miV +ipW +eoB +jzi +tLN +cPN +jvJ +jzi +nSm +aOl +aSw +tFk +aKU +ssv +fyE +woG +yci +xGv +ryV +nac +pZN +qNZ +vmk +bvi +aZq +esi +wjI +iGD +hfT +qmk +quO +wjI +pGI +dRZ +oML +uOf +eam +jtc +ebz +uHZ +lHQ +iXY +kYz +mmy +hhz +uHZ +fzr +asr +cnC +sKu +nBH +nBH +kaN +kaN +xES +cnC +cnC +cnC +cnC +cnC +cnC +psZ +fsR +fsR +gaQ +nTZ +abQ +fxD +wGT +ucx +qiU +qiU +qiU +qiU +qiU +qiU +qiU +qiU +qiU +oAF +mtF +itr +rLH +rrg +dBF +rYm +rYL +uRa +dBF +qkO +dGg +kIo +rzr +gXL +cxR +gXL +jMQ +fpH +fpH +fpH +fpH +fpH +fpH +deE +deE +deE +dhy +deE +tFt +gOf +gOf +gOf +aql +gOf +mkr +flB +gOf +gOf +gOf +mkr +qbr +brI +kca +wMI +brI +vMr +svC +fwB +brI +qUn +sSc +xEH +tSH +gmz +gAd +pkp +ttw +ycM +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +rug +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(117,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +odJ +rDl +odJ +xMq +ttw +ttw +jrF +mzc +jUs +ehl +aWs +sFa +uxO +dVs +bMb +joM +cmH +iZr +rDO +iuB +cmH +wxS +vpA +aEF +aEF +aEF +mbE +aEF +hER +hZN +rDu +imR +wEm +imR +bFO +bFO +bFO +xNh +uoM +ksL +bFO +uoM +bFO +gmd +tsi +iqn +tsi +gmd +nEm +nEm +wwN +kvR +wwN +nEm +nEm +sOc +qlN +qlN +qkB +qlN +hwA +mdM +gSI +pZN +pZN +lEr +pZN +pZN +pZN +wjI +wjI +wjI +wjI +lBd +wjI +iHM +aRC +oML +rml +jkT +jtc +twd +uHZ +fHl +sJk +gjJ +ufZ +izG +uHZ +knA +rPI +cnC +ulA +xSN +irk +qCX +hbh +cnC +cnC +fwc +iAk +bFT +lrh +xvR +bmU +mVV +mVV +hjT +llk +dfF +dle +isS +tfc +uYj +hKm +gTX +cyc +cyc +cyc +cGX +cyc +wXR +mCy +goS +uRy +fiN +fiN +kzy +kzy +kzy +kzy +qTC +kGn +rzr +rXt +nqc +hkv +oDn +qfv +nGa +hxy +vMg +ueX +vQN +dkR +rYt +dEu +deE +jEL +xzW +tMv +kWQ +gOf +tFt +tFt +tFt +tFt +tFt +tFt +tFt +tFt +tFt +tFt +tFt +tFt +tFt +tFt +tFt +pEt +qbp +rIj +qbp +jAD +orH +aUK +sLM +gmz +ngt +pkp +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(118,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +odJ +oFc +odJ +xqO +jqn +cDq +jqn +jqn +jqn +jqn +jqn +dln +jqn +doJ +nAw +sgf +cmH +qoV +xTF +gHB +cmH +cmH +cmH +cmH +hsN +qrK +mWM +aEF +mav +xjX +sXX +imR +vwo +fUU +vBP +dwE +gIr +vmI +gWa +tqZ +oMC +lWv +lvt +mSO +kDd +qDP +lDn +mXi +nEm +oHO +aZy +heq +iSr +hYl +amZ +nLM +wVw +vRB +dIO +tlq +wvU +dlN +tPt +oop +lSN +bjH +snO +eVs +jbu +sVX +ubu +pjd +emE +uzB +mnP +fTl +aRC +vJN +mhe +vBt +bdV +riE +uHZ +pEv +ydl +vKh +mmy +mTQ +uHZ +jCA +dlb +oWR +ulA +xnZ +cnC +cnC +cnC +cnC +oiW +jML +aDx +vAX +fkX +puQ +fyY +oob +qtB +oZE +cwt +dfF +abQ +vvS +fiN +fiN +dtH +goS +goS +goS +goS +eYh +goS +goS +goS +goS +njC +bRb +fiN +kxd +sje +gvG +kxd +qTC +dov +gXL +erh +hfq +rYw +bEy +aZZ +lIj +hxy +cxw +ixH +gFD +gFD +wsY +kzM +deE +fnt +qZH +tyN +tFt +fdW +tFt +uiI +dwO +uiI +pMq +uiI +dwO +uiI +dwO +jSm +tZZ +jSm +tZZ +jSm +tZZ +pEt +gXR +eUp +qbp +tcQ +kCR +ixB +sBr +gmz +ngt +pkp +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(119,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +odJ +rDl +odJ +odJ +nnh +bUE +xIU +tGR +kBl +jrV +tGR +jrV +tVB +doJ +fhY +xWo +cmH +cpN +bRn +jWW +kAm +lrc +xfl +cmH +kzE +uLT +eBa +uIR +srd +kuc +gMY +imR +wMT +wMT +pAw +nKV +utT +ghh +fDZ +uBQ +uzk +itk +gpH +rNy +xaX +xaX +eFV +dIw +nEm +geK +piV +uAl +pZA +lTr +kPu +elp +oEs +iGc +aqg +tlq +bmt +pav +jdS +hnh +kWP +qrI +bjH +bjH +lOt +bjH +bjH +bjH +lQr +gRb +mnP +sjC +aRC +vJN +fij +vBt +bdV +wwe +uHZ +uHZ +uHZ +udk +uHZ +uHZ +uHZ +ejx +mak +cnC +dLw +cnC +cnC +nKw +ppb +xFM +sHA +bVR +nCl +nhi +jpH +tWj +kqY +tQF +haq +aQR +tGY +dfF +eDJ +qct +nkv +qJZ +mCy +eID +goS +goS +goS +goS +goS +goS +fSD +goS +goS +hUf +fiN +aSg +sje +gvG +nOq +qTC +mUS +gXL +fiV +xnw +xnw +xnw +sxd +sxd +hxy +ale +vZF +mAy +mAy +mym +vRH +luV +cNe +qcq +gxD +tFt +txN +tFt +lFE +gkk +gkk +gkk +gkk +gkk +gkk +gkk +rin +rin +rin +rin +rin +lFE +pEt +gXR +ycu +cGZ +lCg +czg +pqO +pqO +gmz +ngt +pkp +ttw +ycM +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(120,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +odJ +wia +odJ +xqO +jqn +jqn +jqn +uon +iXk +jqn +jqn +jqn +jqn +doJ +oTe +csX +cmH +uvW +uvW +wEB +kAm +ilT +pGk +cmH +nVQ +mkj +wNw +xLF +tPD +xjX +kYC +imR +wMT +eZa +vBP +mVv +exy +vrs +hyx +akq +oMC +tbL +pXc +ock +cFR +vqt +fys +uqo +nEm +swP +qpy +ajz +lDK +kJi +lTr +jbi +rlk +oEc +gKY +tlq +bmt +euG +oOu +pZN +kWe +pZN +ggD +bkr +tAn +osJ +lMr +ein +pZN +tQA +mhe +nFz +aRC +vJN +fij +vBt +jtc +gxq +uHZ +oxZ +egE +atb +dCg +sLI +uPC +qST +vJm +cnC +dLw +cnC +kjS +wPb +kgj +mAQ +puL +aXQ +fmM +jtG +dqZ +dfF +iNT +cgT +pUJ +dfi +pNq +suM +aWG +sjV +fiN +pdh +goS +vSf +goS +goS +goS +goS +slM +kuS +toO +goS +goS +rkh +fiN +bvI +sje +gvG +jXo +qTC +iGy +pEX +dYi +xnw +oWu +qoU +jWq +joZ +hxy +hxy +hKe +mAy +mAy +kRI +hxy +deE +deE +lnl +deE +tFt +tFt +tFt +lFE +gkk +gkk +gkk +gkk +gkk +gkk +gkk +rin +rin +rin +rin +rin +lFE +pEt +rgE +kux +owF +puj +kCR +aFK +aZH +gmz +ngt +pkp +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(121,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +iLQ +odJ +cqT +odJ +odJ +eMr +oXW +tGR +jqn +jqn +tvm +tvm +tvm +nAw +wLb +tuF +cmH +vEu +ohi +imV +uNm +imV +uaz +cmH +wst +kfx +pmZ +xLF +tPD +rcY +qBT +imR +wMT +eoq +vBP +nyh +vBI +hlx +ujy +uhX +lTE +hxg +abG +viy +stA +gWZ +uEX +xFv +nEm +uDh +vzV +uAl +dEb +rqo +qEU +wvu +cuq +qlN +tBV +qlN +thf +pav +jdS +tOA +mha +oEw +vyc +nsW +jUa +kGU +vvD +xmO +ydJ +sbv +fij +slK +aRC +vJN +mhe +vBt +cTI +cTI +daN +bps +rec +xDf +sXP +hSN +hSN +hSN +xWq +cnC +dLw +cnC +tsb +dRs +jPU +cdR +cdR +cdR +cdR +cBc +sur +hxh +wMl +lVF +uGq +lHf +aWZ +dfF +cOm +fOv +fiN +lUt +goS +vSf +aEB +bqO +lxQ +dIE +kCH +kCH +pin +goS +goS +tsM +fiN +cVI +sje +gvG +hBc +qTC +tUf +gXL +erh +sxd +hFa +hpe +iYZ +uAE +tlS +hxy +tQP +mAy +mAy +mcP +vXW +lBQ +jBm +tyg +toY +hxy +gnQ +hxy +lFE +gkk +gkk +gkk +qIK +gkk +gkk +gkk +rin +rin +rin +rin +rin +lFE +pEt +veD +kux +cGZ +kzc +vQS +xig +hUm +gmz +wNk +pkp +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(122,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +iLQ +odJ +tli +cAz +fWA +rpg +bcB +fWA +hEG +hEG +uQm +hEG +vcx +dDM +gTL +cmH +jVq +kSu +xyI +kAm +oHW +wSc +cmH +gnw +pBc +qLf +xLF +tPD +xjX +jKG +imR +wMT +vPc +vBP +jYI +eKU +dcF +hyx +uNE +lTE +gjM +fvs +gPS +xJD +uih +kSn +mDf +qlN +xYy +wjA +uAl +bAc +bAc +bAc +gJC +ygg +okL +pWi +ykE +bmt +pav +jdS +oUR +iWH +hbf +sgE +nWw +eks +eaR +dAz +sgE +hjy +lIu +fij +vlG +dRZ +oML +aPy +lWL +hDF +qHJ +uHZ +iPm +uOO +qxp +uOO +uOO +dLJ +uOO +qMU +cnC +ulA +cnC +xna +xRC +hTP +qPN +orN +fiT +hPC +hKr +wLP +hQx +dZv +awZ +oBA +ajT +sMs +fDn +axN +fDn +ifq +cII +goS +vSf +vvx +vvx +goS +goS +qIc +kCH +pin +goS +goS +mFQ +fiN +kHI +tqB +ccY +ccY +qTC +mjy +gXL +erh +sxd +hFa +mJC +kSA +dFn +ukR +hxy +gna +fLr +dbZ +vRH +vXW +iPJ +iTd +eqi +qVj +jdc +wKS +pQK +lFE +gkk +gkk +gkk +gkk +gkk +gkk +rWU +kmZ +rWU +kmZ +rWU +kmZ +lFE +pEt +evE +kux +qbp +qbp +gmz +gmz +gmz +gmz +gmz +gmz +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(123,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +iLQ +odJ +odJ +jqn +jqn +mXy +jqn +tvm +tvm +tvm +lyY +doJ +doJ +doJ +cmH +gTg +cmH +eUl +cmH +cmH +cmH +cmH +aEF +aEF +aEF +aEF +xwb +xjX +sxs +imR +sdh +imR +vBP +vBP +vBP +mwS +aKt +uhX +lTE +nkH +fvs +kCV +qio +qio +ycU +gMy +qlN +uPU +qlN +aMf +ybV +vOI +imz +oqe +kAy +tjC +pNQ +pui +bmt +pav +jdS +oUR +lnS +cHc +waR +hyw +nmm +sgE +pEL +hjy +fVi +oBe +fij +pdt +ycf +yeI +bzE +lWL +nQV +mYz +uHZ +wDJ +rqE +rUA +rqE +rqE +rqE +rqE +uUY +cnC +soI +cnC +gtE +pGB +jrm +kGL +diL +nzP +sbH +sSx +htb +fDn +aAN +hns +qZl +sre +fDn +fDn +dof +xHP +iyx +sSt +goS +vSf +hhy +xHJ +qcB +rhr +kCH +kCH +pin +goS +goS +leh +fiN +eeY +dPc +pqu +ceI +qTC +uWW +gXL +erh +sxd +hFa +hpe +qks +hOM +usz +bYQ +bYQ +bYQ +bYQ +bYQ +bYQ +nnf +tZT +eqi +rQO +hxy +rbh +hxy +jWo +kaU +pBQ +kaU +pBQ +kaU +pBQ +odJ +jSm +yly +yly +tZZ +xMq +lFE +pEt +isr +xhr +lhE +qbp +oWM +pkp +ttw +ycM +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(124,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +xMq +xMq +got +lbj +jSB +ska +xMq +xMq +xMq +lyY +mdu +oJr +kIR +hfI +dIf +cmH +fwV +mNY +mYF +cmH +dWs +xMq +xMq +hca +cbs +eBT +hqX +hvK +imR +pXG +uqY +dYG +sJl +vBP +saU +sNU +aFA +oMC +wNm +mDE +iBe +rrH +iLH +hfp +pdi +pGl +meP +nmx +nmx +avA +mEl +mEl +qtP +avA +nmx +wCT +sgA +bmt +iie +jdS +oUR +fxi +fUT +cHc +iWH +jkQ +iWH +iWH +xbo +gcj +vnQ +mhe +nSE +hDF +tok +hDF +hDF +hDF +dlz +uHZ +rky +uOO +kBh +uOO +aGE +uOO +uOO +tnm +cnC +dLw +cnC +uai +xRC +sSx +sSx +iSl +dTe +wFR +tsB +jLi +fDn +rIq +gWD +uFb +tAr +jcd +vRq +tRs +fLC +ttG +diF +sMl +sMl +sMl +sMl +sMl +sMl +gWP +cNi +oPU +goS +goS +tGa +fiN +cjd +ogv +uCv +kWG +qTC +hcL +wEV +jgd +pdj +lFP +rfv +uyT +czC +fmD +bYQ +daQ +hXj +xpC +hgs +wBI +eoX +iTt +eqi +kVs +oCl +oCl +oCl +bsm +hLh +hLh +oCl +hLh +hLh +hLh +oCl +bsm +oCl +oCl +lFE +xMq +lFE +pEt +awv +kux +jfq +qbp +nIl +pkp +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(125,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xxv +pcM +cIK +ska +tvm +tvm +tvm +lyY +okp +kID +xmK +azd +oSL +cmH +iYy +sCm +pCy +cmH +skL +tvm +tvm +hca +gHl +vJT +xjX +iMZ +imR +hhT +eSl +aWD +eYY +vBP +dAP +lwE +dAP +vBP +qDW +qki +qDW +eLM +eLH +gmd +qSW +eLM +cKH +pOh +nmx +lue +sYe +yeD +uVY +mhn +xqf +pDu +nqS +hRW +irZ +tss +tOA +iUs +tMh +ckp +raW +vcf +qdv +cQa +wlp +kaX +jOv +mhe +mhe +klO +wbx +mhe +dbr +qbl +mhe +uHZ +lhh +nPa +lze +sCe +sCe +nPa +sCe +ccc +cnC +ulA +cnC +hZK +vSC +arF +tOQ +pjL +rFl +xgy +uQf +jLi +aAN +gut +nXW +sLk +ayp +kny +nXW +nhR +cwd +iyx +vXr +goS +att +goS +goS +goS +goS +goS +goS +eCy +goS +goS +rXU +fiN +ary +kAq +fbl +nVD +qyk +uWW +gXL +giT +xnw +xnw +sxd +xnw +cbL +xnw +wOo +idO +vak +naj +qVW +uIw +rQZ +bom +eqi +acQ +oCl +ixh +gtd +xFz +fVd +fVd +amD +fVd +fVd +fVd +mfg +cZG +ccf +oCl +ejQ +yly +nbt +pEt +jNa +ulH +awv +qbp +nIl +pkp +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(126,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xxv +wcM +xxv +xxv +iNU +iNU +iNU +lyY +rhY +vuW +iOx +eip +lAb +cmH +cmH +eFd +cmH +cmH +agB +tvm +cZf +hca +daf +kxo +iwV +ksa +nar +gLO +gcr +eUT +imR +dto +bdp +pII +wex +rtq +wex +kFW +dDN +ycy +nKq +rIU +bNF +eLM +hVA +fsY +nmx +oUE +dvq +vNz +dHE +mSx +nmx +dto +dto +idu +tiS +mBJ +tOA +tOA +oUR +fUT +sAA +kfu +euI +nPI +wlp +nPB +hEE +hds +lVW +nzh +aEE +vjt +qbR +pGu +xQQ +lWZ +sGH +mui +wmF +hNy +hNy +hNy +hNy +sOS +cnC +iVi +cnC +kMq +gCJ +kiT +dfF +gLN +gLN +dRX +jQm +tJU +ykT +vVO +twU +kKa +mJB +tYp +pAK +mAC +nIJ +ifq +vXr +goS +tZj +yiT +yiT +yiT +uUT +goS +goS +aAz +yiT +bFv +qaJ +fiN +xSl +sts +uci +viv +qyk +uWW +gXL +oVa +lPT +rTd +snR +cbC +rDr +bbU +wBI +qZQ +eAg +dEO +cZW +uIw +taK +bom +eqi +lTs +hLh +cjn +tUK +ncI +kAj +kAj +kjN +hvV +hvV +hwm +wzT +xkU +fRw +oCl +oCl +oCl +oCl +pEt +pEt +sGb +czs +qbp +nIl +pkp +ttw +ycM +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(127,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xxv +ska +got +nxj +tvm +tvm +iNU +lyY +qzL +dPF +kYF +nag +wav +dTL +chg +yeg +sNJ +fHb +tvm +tvm +tvm +hca +efl +vJT +xjX +hvK +imR +tEz +kwX +xFy +imR +qgT +ewN +hcq +ijy +ijy +ijy +bbr +iQp +eLM +aoH +oUV +uzi +eLM +xfM +wjk +nmx +qOu +hMQ +seo +sVD +xqf +xqf +jDm +tig +xvu +aCI +suv +efa +mgt +oUR +oUR +xJp +hcK +kjF +nPI +wlp +ltI +fUT +fUT +anX +yhS +cNm +oif +pdC +jMp +mPt +sGH +mUF +owo +agV +itt +mUF +jnR +bMg +irC +oIv +gxX +btw +usq +vMQ +lTX +gfb +iRU +gLN +gLN +ojZ +cwM +eUE +hGE +gQm +fft +sUt +daB +mYW +kyV +xnP +ifq +fvW +yiT +yjP +lCA +kcP +xqA +tvg +laG +lSd +ort +aRi +osK +vNu +fiN +xsW +iGL +jDh +lhY +qyk +rog +gXL +erh +lPT +gMB +mmd +fdG +lCP +paA +wBI +eXK +gCI +pte +gbC +uIw +snS +bom +eqi +kGK +sGa +ncv +vuq +adx +afy +qat +vUB +jrj +aaH +jko +bZi +iGC +exl +oCl +avM +fZy +vVU +egH +hAk +ulH +xgK +qbp +nIl +pkp +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(128,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +rug +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +oBb +iNU +tvm +xMq +xMq +iNU +lyY +hfv +aiw +mjS +cWH +bTe +bTe +bTe +pkS +uhK +fHb +dWs +xMq +hca +hca +nEb +mzb +hEA +jHI +imR +eEN +cDV +ibV +imR +nJS +pGh +mTF +aYo +nXj +rPp +pGh +nJx +eLM +eLH +eLM +eLH +eLM +xfM +gjl +fwk +uDN +iYz +oEJ +nPo +xqf +nex +htX +uMy +qSu +mIh +rVq +qSu +sfG +nrF +tOA +nFQ +sRY +kVE +fUT +fPE +fUT +fUT +sHu +kus +spr +rDo +mbc +fJp +rHX +kAM +qtW +mUF +mUF +uAt +sGH +mUF +owo +bJf +irC +dhZ +kYc +gSd +oOr +qIU +hPB +jAy +cqK +rOl +gLN +itW +jWg +rUf +ylT +wEK +pKg +nXW +kgk +fDn +rVm +dPv +eEq +xkq +xkq +fiN +sNW +lLk +xgA +fiN +fiN +fiN +fiN +aqw +qZS +qYb +fiN +qTC +cQi +mUU +qTC +qTC +tRQ +gXL +erh +lPT +rri +lqJ +fdG +lCP +xjQ +wBI +rll +psi +ohO +aau +wBI +mNz +bom +jgN +fHx +hLh +iGC +tUK +lCY +hvf +qat +bZi +szl +dAY +mhx +bZi +cmr +sRa +ejY +fey +fey +gXe +saF +asv +num +dyl +qbp +rTG +pkp +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(129,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +oBb +iNU +xMq +xMq +xMq +lyY +fHb +fmC +hTu +pMp +enK +oTf +iYV +jfU +nXM +ivs +fHb +lyY +lyY +fHb +qQJ +eEU +ozq +xjX +roR +jss +dbm +aKM +dCj +dto +lrz +xkg +qzr +aYo +pGh +dAf +flE +qts +gmd +jQE +dJu +mGE +gmd +snv +nmx +nmx +vnc +itE +itE +aWC +nmx +mMu +qSu +qSu +xyE +pVy +esu +qaH +cyY +xBm +tOA +fUT +fUT +dXa +fUT +wlp +fUT +pmV +tkK +kyY +cJP +lQw +pTa +tqi +lEn +aPz +sTw +uUq +sGH +ivb +sGH +wEO +qyq +iJX +uHZ +jvv +bpM +waT +vMa +atS +jiu +uTt +toS +oMY +dfF +hQx +hQx +fDn +fDn +jfX +eaM +eaM +fDn +tnx +mgm +uKE +qIw +pDV +loL +fiN +jjf +jjf +jjf +fiN +lHx +cLw +fiN +fiN +fiN +fiN +fiN +nDx +pZe +msv +bRN +ufS +pMl +gXL +kIe +vOe +nti +smV +fdG +lCP +qfk +wBI +wBI +uIw +bbW +uIw +wBI +jtJ +xvD +gLP +vWI +oCl +glS +tUK +jQL +bZi +bZi +tTX +aEI +tHb +aEI +bZi +oRP +wKi +oCl +hkh +hkh +dME +dME +pEt +eUp +evE +qbp +qbp +qbp +qbp +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +rug +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(130,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +oBb +iNU +xMq +tvm +tvm +lyY +wsm +gIo +lVi +pMp +wZR +qLI +nIK +xrw +lCH +kgR +cGr +eSv +bbh +soM +srd +gGF +hZv +jHs +osT +wwH +cMY +dxN +qyQ +oeK +htX +qSu +qSu +vDe +qSu +xyE +sly +fok +qUF +hFi +sly +tID +chK +wAj +oMu +tAO +wAj +wAj +wAj +qgc +bng +lkc +sly +sly +tGM +jIs +bHi +sly +sly +nWY +kyq +saR +wHy +wHy +wHy +tpv +wHy +eGs +lJs +sHG +qXP +kVi +ksG +mUa +qfD +bxO +lJs +uwg +wHy +nEC +wHy +wHy +wHy +fsb +mOZ +hRe +wFd +jiu +pHG +jiu +pHG +atS +ciL +rRe +beZ +hbX +eJk +wLe +jvu +jvu +jvu +jvu +wga +tIS +kCE +jtf +jtf +jtf +ory +eHS +jvu +cqU +leJ +orT +bGe +bGe +aaD +uXC +ecV +afz +mXa +ePJ +sgD +kDE +pau +tAQ +kTB +sUy +erh +lPT +aAj +exn +fdG +lCP +wrO +vti +dih +lPa +tyj +jKx +mXO +fGl +iTd +gLP +tbw +hLh +pDk +tUK +vqa +tTX +wiP +thz +tcl +hCH +eLe +qcW +kuj +isc +hLh +kYV +hUc +hUc +dql +pEt +eUp +gXR +rYy +qbp +oWM +pkp +ttw +ycM +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(131,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +oBb +iNU +tvm +tvm +xMq +lyY +wSg +nWf +fxa +pMp +hSA +byt +urV +xrH +fRf +vUf +fHb +ndC +cbA +fHb +vxI +soZ +odp +npo +rCi +gQK +kek +uMy +nPr +hSn +qSu +qSu +uMy +vDe +qSu +mmk +uMy +nPr +eHP +qSu +qSu +qSu +qSu +uMy +qSu +qSu +vVM +qSu +uMy +bGn +kIt +fWc +amP +cyN +sOh +sOp +nPs +qSu +iUc +qtC +oyZ +vQE +mIK +vUW +geg +vtC +hES +kBS +hES +xvj +xvt +ksG +sNz +ksG +ttD +jnP +geg +fpd +lJs +lJs +lJs +iyy +joV +oBR +aNe +yki +jYQ +vMa +atS +agn +atS +jiu +pnD +cdz +luS +sRO +gei +vvQ +shZ +gei +gei +gei +ocf +gei +qtQ +gei +shZ +gei +gei +gei +gei +gei +naC +gei +njc +gei +gei +njc +shZ +gei +qtQ +gei +sgD +heH +uGV +wEg +uit +qCR +dJj +pBR +puq +fol +oxL +enl +lOY +xNl +sJO +qQu +pkH +qQu +qQu +qQu +hGw +jcm +bxm +hLh +ikj +tUK +yfK +utX +mhx +kSY +han +cXs +mWQ +atT +cJA +qPI +hLh +cti +hUc +cti +gcY +pEt +grE +iUI +avz +qbp +nIl +pkp +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(132,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +oBb +iNU +xMq +tvm +tvm +lyY +ckL +xgQ +esP +pMp +pWG +gDz +cjx +ncO +lCH +opM +hok +wLh +bIN +sFN +vGz +oJI +jqL +xQM +mab +mev +gaf +vsT +vLS +mDy +oYe +qtu +qtu +plm +qGO +xHn +qGO +qGO +gUk +nMQ +dBO +qGO +mLc +xiI +osw +ovW +ovW +ovW +ovW +tnl +drT +bpi +sIZ +sIZ +eeO +arG +nxA +sIZ +vni +kji +aOI +qTo +haU +haU +haU +sjW +oSr +siw +xkA +tFC +gYp +ssc +ksG +qVo +pAZ +peS +lJs +osS +oSr +oSr +oSr +tmP +bip +iZS +ght +iDN +uap +jiu +pHG +atS +qDs +vMa +efx +eNR +kVM +eCj +rfG +rfG +rfG +xru +rfG +iYf +poe +rfG +rfG +uVe +rfG +tiz +ycR +jEV +pbl +wlk +bvO +jfP +rfG +rfG +rfG +rfG +wCl +jTv +jEV +cgf +ijw +gba +laa +eUq +huc +uyJ +ouI +lPT +qAj +gzE +fdG +exn +wrO +vti +vZA +tTw +urj +rZT +hiQ +akW +hPu +wik +lAG +hLh +sPF +tUK +kza +gNo +kPP +hzB +atL +vFr +vYa +qET +syd +ecK +hLh +hUc +hUc +hUc +aEC +pEt +eUp +xgK +vau +qbp +rTG +pkp +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(133,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +oBb +iNU +xMq +xMq +xMq +lyY +fHb +puR +pPN +pMp +vvf +tCJ +hyt +coO +rFx +jNy +fHb +lyY +lyY +fHb +wjM +xKJ +cwf +xjX +sRJ +pWq +dpe +dpe +pWq +beb +pWq +dpe +dpe +eFF +qVC +gzC +qVC +qVC +hjW +iXg +iXg +iXg +sug +iXg +hjW +qJl +lwK +aaa +ybF +boi +dto +ctq +woB +oJD +tRW +uaG +jfH +qSu +qSu +rUj +bPZ +xAy +aeH +lxC +cnA +rUb +kLz +iIv +fHc +pYI +dJF +dRQ +emI +eTD +nWc +qpU +rJi +uwz +fFi +izw +vQk +vvA +pMf +xsE +eId +sWE +iyv +iLL +jiu +vMa +atS +omB +tVg +fmp +aeN +wmv +wmv +wmv +wmv +aeN +wck +wck +wck +wck +wck +wck +wck +wck +wck +wck +wck +upt +pcK +wck +ufu +ufu +ufu +ufu +wck +wck +sBl +wJP +dsW +qRD +sBl +bTo +lRB +gwM +oRA +vOe +jtO +gzE +qff +lUA +qnW +rAU +rAU +bOD +kZk +gdk +bOD +rAU +cge +mxk +jQq +cWB +gME +tUK +nYt +bZi +bZi +gNo +ghY +lji +ghY +bZi +oRP +hAn +oCl +hkh +hkh +dJw +hkh +pEt +kqA +oTa +qbp +qbp +qbp +qbp +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(134,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +oBb +iNU +tvm +xMq +xMq +iNU +lyY +wsr +tCy +mrL +dAL +cJY +cJY +cJY +syg +qBc +fHb +dWs +xMq +hca +hca +nkb +fbs +hEA +hhw +dpe +qWA +rbz +yft +lPR +xlB +qWA +cxD +eFF +plF +ekT +svh +oVe +hjW +cpV +xGh +rnH +rNk +bcF +iMs +fbF +fbF +iMs +wzH +wzH +wzH +vly +jHi +qSu +oJD +bBm +gPZ +qSu +gYN +dqJ +bPZ +pDj +jVW +kLz +cnA +rUb +kLz +kLz +bNy +jhG +jYr +dmt +vZt +jnF +aMY +flf +dsG +vNe +dnW +bPq +uuO +hUF +pSX +uuO +bPq +fEC +scX +rKZ +pvT +aVR +pvT +qSw +bqy +oBB +wmv +nSY +bdW +pUl +yjU +aeN +jMB +fei +wXc +oeB +hAm +ufu +wbC +cFu +nTh +bna +ufu +bQr +khA +mpN +pVi +nKj +nsl +nsl +leS +wck +qbb +hvC +gDa +inm +rjP +bTo +lRB +gwM +vKU +vOe +uyl +oUq +hMN +qUm +lSC +rAU +bhS +lPa +eLC +bcP +rTW +bOD +qqM +upn +fHx +hLh +cju +tUK +tAS +tym +qin +bZi +rfD +dAY +mhx +vUB +cmr +fsX +ejY +fey +uKL +dXu +khz +kRu +eUp +veD +qbp +oWM +pkp +ttw +ycM +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(135,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +aei +bZk +aei +nxj +tvm +tvm +iNU +lyY +sXl +lSU +ekt +tuU +cQN +gSK +umJ +rju +wxZ +fHb +tvm +iNU +iNU +hca +uHK +vJT +xjX +hhw +dpe +qMk +bYy +xlB +poP +xlB +qMk +bYy +eFF +psv +baj +uRn +bur +hjW +rqD +fXv +wUP +fdi +epl +iMs +kQm +tcV +jEk +rsk +hEL +irg +irg +mvA +wbv +nzD +umC +tbl +wAA +mDP +cau +cau +wrn +wrn +wrn +tdG +fNg +jDI +rKL +rUb +qQh +fVT +lJs +mkw +lJs +tBT +xSy +fFi +utK +bPq +bPq +mwB +fiy +uOv +iZJ +bPq +bPq +fEC +fEB +hZE +hZE +xKm +iRs +oBB +wmv +wmv +jTI +cSN +jSP +rek +aeN +ltT +gWN +rTq +gWN +mRH +sOJ +pVQ +mle +mle +ihg +ihg +gAZ +vaq +fEM +hPv +iAs +myG +ajy +uFo +ufu +pfJ +shj +xSK +vzv +eOp +sBl +jib +gwM +rKH +lPT +tZP +lVG +dOd +fhj +nUc +rAU +lUf +hPu +qil +iTd +oTb +nDS +iPJ +mTO +lIc +wsA +aBH +mOQ +tAS +tym +qin +bZi +jwy +tOS +xHG +bZi +cmr +fvl +oCl +yja +iCF +gVA +fFg +hAk +eUp +ceN +qbp +nIl +pkp +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(136,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +aei +cAd +aei +aei +iNU +iNU +iNU +lyY +xbj +ydE +qcR +oTz +pKb +xlE +xlE +xlE +xlE +xlE +urn +tvm +tvm +hca +lMb +vJT +rcY +hhw +dpe +qMk +bYy +xlB +lIG +gxZ +qMk +bYy +eFF +jEy +xMV +oaL +gzU +hjW +gDp +ajg +iti +teQ +fqI +iMs +jsn +jrQ +jEk +sGC +ycH +nak +gSq +wzH +qLY +mMs +vDG +qAl +jSC +jSC +xcq +isq +tdn +vGV +hkU +ige +gKa +nja +gOt +wBf +kPh +ooa +hZp +fVM +ccG +gxI +cOx +oSy +bPq +bPq +dXY +chq +ibN +dld +rCu +pih +bPq +bPq +uuO +bQd +ogi +oZk +aeN +wmv +wmv +iuA +xxa +pZF +pZF +leT +rLK +hhP +xcg +uDE +xcg +xyf +mEL +qgu +ieO +ieO +tcz +twX +uAx +tCL +bVB +mVA +gJw +ajm +oFt +mqB +ufu +vEH +eze +gpW +vzv +jOJ +sBl +lRB +gwM +rKH +nwm +efQ +lVG +nDn +hAj +enY +hcw +nFx +iPJ +iRb +iTd +oTb +xMx +iPJ +mTO +hYs +hLh +cju +tUK +orq +gCD +gCD +tuC +hAf +ssL +tAJ +rTZ +hVW +bik +oCl +oCl +oCl +oCl +pEt +pEt +kux +koQ +qbp +nIl +pkp +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(137,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +aei +cRr +rbc +bZk +tvm +tvm +tvm +lyY +wot +mMZ +cmW +wWw +iJT +xlE +hQV +eRr +bgW +xlE +skL +iNU +iNU +hca +egF +vJT +xjX +jOs +pWq +vps +uyH +jrq +kmg +jrq +pZJ +otC +eFF +abN +oCY +lbh +xFH +hjW +oPM +ldo +naL +wkj +ajg +iMs +hUo +fcH +uND +vZb +gIK +fWD +kWE +vHZ +cLr +dcg +pzr +lcT +bnA +ecl +wMw +xtx +sdl +xFd +eCV +mPf +neg +lsG +ioX +fLp +oie +oRJ +uSq +alX +sWQ +fLp +fLp +fLp +bPq +ioO +wEd +jGT +xGT +mlP +xVN +sQO +sVn +dHa +uuO +vjx +vIV +asj +aeN +sjE +eBD +jcv +rtS +psH +sgh +pCt +cKW +rkM +fIP +tfF +cPE +jzS +pzY +xqh +pVU +fKL +nTF +ufY +uAx +pHu +ris +xMY +uqt +ajm +iCx +uYY +ufu +waB +shj +bOC +vzv +cbr +sBl +lRB +gwM +rKH +lPT +mWr +fdG +mhY +vsS +gjk +wlh +xBW +iPJ +vgy +cIy +enL +bOD +leI +jvd +lcn +fCh +fvn +oiv +oiv +oiv +rVG +oiv +pfs +oiv +oiv +bAI +oiv +dSB +dRR +oCl +xMq +xMq +pEt +eRP +taC +rfk +qbp +nIl +pkp +ttw +ycM +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(138,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +aei +gbQ +cHj +bZk +xMq +xMq +xMq +lyY +jtX +gYG +jfw +rtD +lGi +xlE +wmj +gUy +cAH +xlE +dWs +xMq +xMq +hca +yfq +oIJ +pnV +hhw +eev +vfc +xCG +xlB +jXZ +sVP +nLB +oRj +wDO +ryN +kNJ +uLI +rAD +hjW +pzG +qnC +aMy +dmU +lqw +iMs +vFc +rAV +jEk +xlt +dNF +pCD +hFS +gSq +aHV +gzn +tUt +lkG +wrT +jaG +iRi +xRG +xRG +fUb +pdo +jSC +hCJ +bPZ +bPZ +fLp +gsl +hhJ +pep +udR +cuJ +bDA +hJY +fLp +iWA +uOv +aNj +yef +fiy +cCq +ceO +xvb +sGN +uWd +uuO +lRv +cVF +hrQ +rLK +cBg +gJH +lor +nJT +lhb +xxh +cHv +aeN +mpp +uxS +noN +uxS +iYC +vjY +luo +cpz +rdY +lDD +eut +uAx +vaq +rWZ +ajy +ajy +mSr +gUW +hhh +ufu +qJd +shj +bkY +vzv +xur +sBl +lRB +gwM +vQD +vOe +aTR +mLJ +kSN +cEE +vlP +rAU +qvp +xCw +jBA +hxy +jEj +hxy +uxG +trA +sRR +oCl +oCl +hLh +tJQ +hLh +oCl +dRR +gky +gky +gky +gky +kYQ +bVu +kye +kUU +svT +xMq +dXU +awv +taC +xgK +qbp +nIl +pkp +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(139,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +usB +usB +usB +uHz +usB +tvm +tvm +tvm +lyY +xlE +xlE +xlE +xlE +xlE +xlE +kFc +ovo +xlE +xlE +ygP +ygP +ygP +ygP +ygP +chz +xjX +hhw +eev +ahv +hTG +xlB +lIG +xlB +mjG +wwU +psu +psu +psu +psu +psu +iVj +bPz +drv +wjq +ajg +iVj +iMs +dxK +dxK +dxK +hji +lhL +qLY +qLY +wzH +wzH +xoW +uKp +eGd +jSC +sSd +ibK +xFd +bYX +acT +aLz +bnA +iNb +beU +nZU +vhh +hwE +fuP +roz +wne +tdf +ini +uml +fLp +jOT +mlP +aNj +adY +qlB +cCq +xVN +vsd +vsd +maK +uuO +utV +jAe +kbc +rLK +pyd +dcJ +hlZ +hlZ +nmB +lNr +nUy +oVP +nkg +uxS +noN +twP +iYC +hsq +ptW +uDd +uDd +fsy +cFx +uAx +jfo +rRU +dGB +smp +xMo +qIa +bUt +wck +fPo +shj +xSK +lKm +wgo +bTo +bRM +gwM +rKH +vlh +hEM +vlh +vlh +vlh +vlh +vlh +vlh +hpE +vlh +vlh +yeF +vlh +sJK +aVW +esD +lsb +eEu +xrd +ive +iOR +oCl +fbg +uZU +uZU +htK +hVH +kYQ +gjP +kdd +oCl +xMq +xMq +pEt +qXm +kux +xgK +qbp +rTG +pkp +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(140,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +rug +ttw +ttw +ttw +ttw +ttw +ttw +ttw +lNt +lOc +tIo +bKX +vfM +iNU +iNU +tvm +iNU +sKT +elm +lje +qhM +kzL +jlB +dGZ +jlB +xlE +lPh +kyd +qSU +jDE +fho +ygP +uOg +pwX +hhw +eev +ahv +waM +xlB +aLw +xlB +mZB +mIE +nkn +aiU +nuV +eWc +aDR +aDR +aDR +aDR +aDR +wIz +aDR +vEP +hAI +jFN +jnL +pbH +ygT +gaE +uGz +gWt +irg +hvD +hUS +eGd +bnA +aGg +puH +xFd +gZD +gvO +mNK +ogb +aaY +cyI +lOC +fYn +wQo +jGl +akj +hzT +mqk +akj +qaD +fLp +nhJ +ybj +aNj +sNc +rXI +pND +bEn +naW +ewm +bcw +uuO +rHw +cVF +owi +xLZ +lDF +aNS +lDF +xLZ +aXg +dLv +pCt +cKW +drm +xcZ +uxS +jHc +gbo +ibt +ibt +kZu +kZu +mQL +ibt +jlN +pHV +lIn +usV +ddd +ddd +qHH +ahU +aoB +ybE +eze +mFz +vzv +kfd +tWY +jcD +baU +uMf +fAJ +ykz +ugP +tpL +dAD +kGP +phK +duy +tTt +agW +mto +duy +vlh +dZH +kbf +dZy +kob +eEu +luq +sDw +jKQ +oCl +oCl +hLh +hLh +oCl +oCl +hLh +wir +hLh +oCl +oCl +oCl +pEt +gug +kux +wHN +qbp +qbp +qbp +qbp +qbp +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(141,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +usB +hbJ +usB +sPi +usB +usB +tvm +tvm +tvm +sKT +xha +vGj +kjk +rzd +seH +aQZ +cTL +xlE +egg +fQa +wFL +wFL +aVg +ezT +tPD +rcY +kfI +pWq +kpG +eBr +rxO +lIG +rFE +fwM +exi +nkn +pOs +dGX +tXy +aDR +peG +pQS +uSm +lQX +wWQ +aDR +caN +qVK +cVl +sSf +kiZ +kNt +qDX +qCB +hgZ +irg +jrX +hUS +eGd +bnA +aGg +tRE +xou +gZD +dfG +eNr +cbf +aaY +cEq +vOZ +vga +bmN +jGl +akj +hzT +mqk +akj +rMh +fLp +tzs +cdO +qpR +cdO +nGY +cCq +xVN +nsX +nsX +dGO +uuO +sOd +cVF +wVh +xLZ +cHJ +edt +nQj +lDF +iqD +rtS +xZa +aeN +pjp +kZu +qEG +cbB +cnl +ufu +tVh +wFW +cSe +dtc +ufu +gpr +tSO +osL +gxe +pvl +wZT +kHe +iew +klx +naI +rVl +aBc +hbO +jkb +pyC +mky +amO +iWB +fcc +dXW +tVX +nMr +nMr +dXW +dXW +nMr +pLL +ygz +wzi +moh +vlh +umS +qHe +bgF +esD +uxG +ive +flc +mjj +rVz +ueO +sLP +bIy +cQH +ndF +rmD +lcV +nAC +sfo +fzm +nUU +pEt +nMu +kux +eUp +eUp +dyl +qbp +oWM +pkp +ttw +ycM +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(142,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +xMq +xMq +usB +bKX +oBF +usB +usB +usB +usB +xlE +baK +fgd +pIk +wMB +iCg +uTz +iVF +xlE +eCx +qcj +xZS +spQ +qeU +ezT +tPD +xjX +hhw +eev +fNW +cRX +xlB +xlB +xlB +lYp +sGF +nkn +gFW +dyF +cAy +aDR +yaH +dLz +gaJ +dLz +gaJ +aDR +bzs +dQr +uPL +uFs +jsm +ygT +qLY +gaE +gaE +wzH +hRr +fba +cUM +lQG +tDA +orv +xFd +nRS +fvY +ePd +sSm +aaY +bux +oSm +hGX +slL +qEr +bKI +usD +eri +hio +kDF +fLp +oMn +inc +rCD +gFF +ibN +cCq +ceO +xvb +sGN +rgD +uuO +rHw +cVF +uQo +lDF +wyz +uDV +nQj +lDF +sez +rtS +xZa +aeN +rTI +vEL +aCq +aCq +aCq +aCq +nBJ +nBJ +nBJ +nBJ +aCq +aCq +fRi +vHX +vHX +gIa +nWu +xud +eYK +xud +syE +syE +usJ +syE +syE +bTo +ptT +hhB +ieb +fAJ +fAJ +aAc +fAJ +fAJ +fAJ +hgW +hOj +duy +duy +duy +jnT +vlh +bSV +oHV +rxe +gpR +vUc +crj +xwm +mOx +sAc +eQu +eQu +thd +gAo +rZw +gXD +syq +eCP +fnb +ldR +bru +sAx +xck +xgK +xgK +eUp +evE +qbp +nIl +pkp +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +rug +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(143,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +ttw +ttw +usB +ieZ +bKX +sPi +hdp +bKX +wLU +xlE +oaA +dzx +eRV +cXb +nge +sfv +ujJ +xlE +iGH +utW +utW +nJF +sye +ezT +uAR +xjX +hhw +eev +rVw +oTF +sah +boH +dBW +ugu +wJx +nkn +uXb +tpZ +uLY +aDR +wWQ +whY +whY +aDR +kIV +aDR +aDR +aDR +aDR +jfS +lTy +ygT +gaE +iom +vQB +irg +hvD +hUS +eGd +bnA +rSX +lMt +pow +pow +tgy +jSC +jSC +iYT +ycB +fLp +fLp +pNs +jru +qKf +nGh +bYk +qZN +mKb +fLp +ePt +vGA +fUo +hxF +fiy +cCq +fxO +gXY +xBq +mLs +uuO +yhr +iWw +uQo +lDF +vZk +uDV +nQj +lDF +uam +rtS +dQE +aCq +nBJ +nBJ +aCq +wBY +wHR +fkI +eWh +eWh +eWh +eWh +eWh +aCq +mLz +exP +vHX +vHX +vHX +xud +qok +xud +gDU +aAh +gfe +saw +kni +iyn +mky +kMc +fAP +jhw +oAV +tlD +mrc +mII +fAJ +fAJ +fAJ +aGq +iyw +duy +jnT +vlh +mWF +eLf +wpL +ajb +uxG +nUG +tWD +hEF +gvb +lSZ +hEF +exF +jKQ +ndF +qjr +hEF +rrX +rrX +rrX +khf +pEt +qbp +qbp +nzb +eUp +kvZ +qbp +nIl +pkp +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(144,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +nxH +cXd +ayr +eNt +usB +usB +usB +usB +jxu +usB +xlE +npK +xlE +iGu +xlE +vJB +spI +oXv +xlE +anu +vZu +wUs +oGk +kop +xYh +srd +xjX +qbu +eev +tbq +opg +gGg +kgF +nrd +nsb +sVy +nkn +nkn +uNY +hgo +aDR +hxU +aDR +aDR +aDR +iUK +aMH +uFY +gVR +aDR +qmD +qPn +kNt +sXh +qCB +ycQ +irg +hvD +hUS +eGd +bnA +xYN +qSs +bLx +ehn +hIw +jSC +ivQ +bNV +sJR +fLp +hnJ +cCw +hkX +xTw +nke +nHw +fcy +diX +fLp +pYY +mti +uXH +uuO +oPm +wUC +uuO +uuO +uuO +uuO +uuO +rga +cVF +utB +lDF +aqX +psS +qca +lDF +jki +rtS +ueT +aCq +bzn +bzn +wfp +bzY +xPw +kOY +eWh +nZT +eWh +nZT +xNH +aCq +yli +teb +gjA +vhl +kFk +xud +jEb +xud +tHN +uAc +oKJ +qDp +mhK +hYq +rbF +nEz +fNC +wpR +idx +idx +wpR +vaU +ewI +gGD +fAJ +iAF +iAF +owb +tTt +vlh +the +eLf +dZy +rGo +eEu +xrO +iZl +hEF +hEF +lSZ +hEF +exF +rqR +aSS +jOZ +dMb +pXA +ojL +eoF +ppj +pEt +icG +qbp +qbp +dbj +qbp +qbp +nIl +pkp +ttw +ycM +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(145,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +odJ +vPV +ttw +ttw +ttw +ttw +iBJ +eJm +tSD +nwY +ffp +xpw +cbV +rLl +ppf +yhZ +xpw +utJ +iBJ +ygP +ygP +ygP +ygP +ygP +ygP +wTm +uKM +rDu +pWq +eev +eev +eev +nkn +twZ +mqS +nkn +nkn +coi +ooc +yiX +bTJ +uuF +uAj +bCV +sgn +kYX +qpu +vpo +mMt +bki +vuz +qPn +dlE +qLY +gaE +gaE +wzH +enJ +hUS +slJ +hfU +hfU +hfU +kIg +hfU +hfU +jSC +eNJ +ctf +qQn +fLp +pKd +wxX +mqk +akj +llF +mqk +akj +jCH +fLp +uuO +vLd +uuO +uuO +pmL +fiy +gQM +lwS +aRQ +asQ +bPq +rHw +cVF +pDb +xLZ +xLZ +xLZ +xLZ +xLZ +dbs +ecX +eXd +ixm +cPv +tEL +cPv +ebf +sHI +kOY +eWh +eWh +eWh +eWh +jji +aCq +vHX +vHX +koi +vHX +vHX +xud +jEb +xud +kGh +mIw +fTJ +gFp +mhK +cte +vum +eVE +utM +uqT +uqT +mjr +gXL +gwM +aSp +uXE +fAJ +sTy +iki +uXy +tTt +vlh +xqb +xxd +bvd +lsb +eEu +ity +lJw +rto +oJT +cWO +nzY +exF +epk +pha +pha +pha +pha +pha +pha +pha +iBF +iBF +iBF +fer +fqz +aXG +xGA +gdu +pkp +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(146,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +fXl +ttw +ttw +ttw +xaL +oyq +ljV +xkP +vJT +kxo +nIx +mWV +mfb +cCK +pxN +eVo +pjz +inF +aAG +bor +aAG +aAG +aAG +jHZ +djo +nJJ +lzU +lgt +aAG +jUZ +rBA +fVn +wtS +loQ +tec +kkk +tqV +vZI +cFf +fQL +fQL +cFf +ioE +xBE +pmA +uVb +kdN +fTA +bki +iek +wBT +izx +gaE +iom +nXu +irg +hvD +dSe +hzx +hfU +upB +gHS +hNB +ern +hfU +rla +jvC +koq +vPl +fLp +fNL +wxX +mqk +akj +llF +mqk +akj +grQ +fLp +rjf +ryF +liZ +uuO +sSJ +mOm +oBK +sgi +efP +jjw +bPq +rHw +cVF +uQo +wDc +gDP +xMq +lTS +dWS +bKS +uTT +juw +vFg +mhj +xPw +mhj +qcJ +lQK +viA +eWh +eWh +gwE +eWh +eWh +aCq +uRq +hBt +tyI +tru +kHW +xud +qok +xud +gav +xud +xud +xud +xud +xud +oQl +cBd +cBd +keP +djj +tqf +mjr +hdJ +jIe +jMY +fAJ +iye +rDz +lNy +jnT +vlh +vlh +vlh +vlh +vlh +sRR +gpe +sUF +gpe +gpe +gpe +jbI +aER +wkK +pha +cOS +eqA +aOQ +huv +vaL +dhx +hRn +avf +iBF +clM +sLc +aXG +xGA +myC +pkp +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(147,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +odJ +vPV +ttw +ttw +ttw +ttw +iBJ +coS +evR +hEu +chc +ggM +lSD +evR +lSD +lSD +lSD +lSD +sxe +ffe +set +dLK +hae +isF +xma +bAf +dZN +cck +cOd +yfB +vfJ +snm +tne +xpU +kVy +uPm +gkA +mYL +dUj +nEG +rmE +wrH +hGq +wxP +xBE +bCE +ntX +owg +geo +bki +oEC +qXR +xqQ +nll +qCB +ujY +irg +hvD +hUS +eGd +hfU +din +xHx +cxP +iEJ +hfU +pWe +mlz +yfa +kpe +fLp +qEC +iAM +sZm +wIO +vWW +ryU +wSX +pNZ +fLp +iDb +vlF +bkw +uuO +urN +hPT +qSc +pKn +bMJ +dpx +bPq +ukL +cVF +uQo +wDc +cOi +xMq +lTS +pvc +lbB +uLn +tvM +aCq +vka +lWs +lWs +igd +wld +eWh +eWh +nZT +eWh +nZT +xNH +aCq +vHX +vHX +iBI +vHX +vHX +xud +qok +cYz +mdf +tQY +nON +pBy +pBy +lHD +kyG +bEm +wLZ +aiL +djj +djj +wkU +gXL +lQo +ufS +fAJ +uup +fAJ +fAJ +jnT +fAJ +cBe +aNf +vOp +vlh +aTu +aNw +urg +fNT +orj +gpe +nUG +rgv +jKQ +pha +waX +dVV +cBi +kmm +ujz +pgH +jqO +ntR +iBF +fCM +sLc +bLv +xGA +xGA +xGA +xGA +xGA +xqO +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(148,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +nxH +cUP +oTr +oOb +taf +taf +taf +taf +lDm +taf +taf +mQl +iBJ +lfY +jss +nmt +nmt +pgF +jss +lIU +xkP +lym +iBJ +iBJ +iBJ +hca +vIv +oLn +vIv +hca +iBJ +iBJ +ngD +oEn +ivY +pic +ngD +xIF +dsz +axe +txi +qLS +mjP +hQW +hqf +nPb +rUr +tsG +aDR +aDR +qap +qXR +wzY +qLY +vVb +vVb +wzH +nJH +hUS +fyP +hfU +bsF +jEP +gcp +qDl +hfU +tZi +gZV +dIM +rMB +fLp +dyf +eKj +rSW +rGQ +jGY +xsd +jzQ +nQl +fLp +dWg +cYI +vZM +uuO +rCr +cCq +uVW +gnM +vJI +wdv +bPq +rHw +cVF +uQo +wDc +lTS +lTS +aeN +tiX +nyV +nyV +tiX +aCq +aCq +aCq +aCq +aVN +hYJ +eWh +eWh +eWh +eWh +eWh +eWh +aCq +lRS +oNR +rxV +gZi +vjO +xud +jEb +xud +xud +xud +kpg +xud +xud +xud +byT +fUu +qTe +xLN +wyP +oQl +wkU +sZO +xpO +ufS +xMq +kNS +xMq +fAJ +wcS +fAJ +cwE +cCJ +kCA +vlh +kDR +ycD +xqc +uvC +ggf +gpe +kIO +etw +buz +ozT +wfL +mWh +oWn +dJr +vWd +dhx +rTf +sxN +iBF +bxt +sLc +kVU +bgz +tER +iPh +vPx +wTr +odJ +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(149,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +ttw +ttw +taf +taf +cen +taf +gdV +sDX +fAL +kSP +mQl +pBG +udZ +dFA +hcD +dAK +dFA +gWn +fAk +xkP +efo +iBJ +ttw +xMq +jsE +kzA +sMC +kzA +jsE +xMq +ttw +oEn +xbH +dsV +ftA +ngD +ngD +kDA +uRr +xJE +nTu +kLG +eXn +agQ +nDN +lus +dLf +wlK +uds +aMl +bCe +uuD +rOa +ddj +ful +ubW +lzd +uKh +njl +iNV +iNV +qzy +iNV +lnT +iNV +iNV +mNF +vLe +sgq +fLp +fLp +fLp +fLp +fLp +fLp +vSI +fLp +apF +fLp +iNV +iNV +iNV +iNV +iNV +qVy +iNV +iNV +iNV +iNV +iNV +rHw +cVF +uQo +wDc +ryo +ryo +ryo +ryo +ryo +ryo +ryo +ryo +ryo +ryo +xud +tld +xud +pLR +pLR +pLR +pLR +pLR +pLR +xud +xud +xud +jwE +xud +xud +xud +qok +xud +lcr +aRE +vwl +brl +wwf +rop +gXB +tAH +xNZ +fUu +pXU +djj +wkU +gXL +bJq +mSV +mSV +jJk +mSV +vlh +lfE +fAJ +fAJ +eQf +fAJ +vlh +pSA +tQt +fZB +tQt +fcx +gpe +iNu +frH +hch +nku +rHN +mWT +qHi +tXP +oEE +dhx +jDY +vWd +iBF +ygc +aXG +udp +aXG +sJd +sJd +sJd +sJd +xqO +xMq +xMq +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(150,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +xMq +xMq +xMq +taf +taf +taf +taf +xzN +ioM +pZj +lGY +lGY +qhz +haE +lGY +lGY +haE +lGY +dkX +xkP +ntC +iBJ +ttw +xMq +vIv +vIv +jxv +vIv +vIv +xMq +ttw +oEn +lmy +lqR +mED +ipM +ngD +eMN +axe +eEp +xUZ +mjP +fXZ +kPY +ojJ +hSD +aha +oaI +kuF +lZs +drx +utC +qyg +mzk +uDY +pfE +isB +eGb +yfl +lhc +ssV +ssV +ssV +ssV +nRG +ssV +sCR +vLe +wED +glj +uSr +sLg +sFt +vLe +rIe +vLO +dUD +ecR +ecR +aXl +aXl +lqL +lqL +nRG +ssV +ecR +aNK +aNK +aNK +sIS +lxD +cVF +uQo +sfc +ryo +ryo +ryo +qKC +ryo +ryo +ryo +ryo +ryo +ryo +xud +pqA +rxu +rxu +rxu +pBy +pBy +rxu +pBy +hSK +cYR +rWx +rUE +rxu +rxu +cxF +qok +xud +kpq +pnL +txh +fTO +gjv +owG +ssQ +vIF +ekf +mnR +wiv +uAN +umD +bpt +ick +mSV +rnR +mVK +mks +vlh +tTt +hut +aal +dXW +xVP +vlh +upF +upF +sUF +upF +upF +gpe +boF +bOT +uHq +ozT +qTA +nuf +fIK +hBl +tza +dhx +ujo +dgk +iBF +nef +oYB +sLc +vud +sJd +inQ +qud +sJd +sJd +sJd +sJd +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(151,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +mQl +nRL +kHE +taf +rib +sDX +eBf +lGY +pLl +uzl +pRD +oHt +qFR +rAW +vZC +xwO +liS +hEJ +iBJ +xMq +vIv +vIv +gcg +umw +oFQ +vIv +vIv +xMq +ngD +aMQ +wcq +rpE +qYK +oEn +clH +vbn +ayg +dgE +mjP +fXZ +vnv +ojJ +dXZ +eCc +iQl +pIY +jCW +bff +qRF +olv +cDg +cDg +olv +bqi +vqN +lfU +iNV +iNV +dLk +iNV +iNV +cBb +tGn +qGT +vLe +tFA +mCS +lVp +whl +sEQ +vLe +clP +qGT +jpR +jpR +jpR +omI +jpR +jpR +iNV +iNV +iNV +iNV +iNV +gYP +cqp +iNV +lRv +qji +uQo +sfc +ryo +ryo +ryo +ryo +ryo +ryo +ryo +ryo +ryo +ryo +xud +mdf +ctd +buG +buG +rvk +tDW +qPe +jzM +xud +xud +uwV +xud +xud +xud +nkC +dFT +xud +rop +fCe +pUg +aJH +osm +foD +cIE +qHy +dfx +tAH +uZq +djj +wkU +gwM +jEK +mSV +lax +rzo +jqc +vlh +pLL +wzi +wzi +eUw +yfx +vlh +pCO +qVv +eXR +own +cTg +gpe +fNQ +kWh +fNQ +dEx +dEx +dEx +dEx +dEx +pha +pha +pha +pha +iBF +xGA +xGA +oVT +cTO +sJd +vFE +iwZ +xpl +isk +vgq +sJd +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(152,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +hBA +pwB +usd +taf +taf +ioM +imt +lGY +vAv +tFg +qMR +rAp +jck +oSK +lGY +lGY +lGY +lGY +lGY +ttw +vIv +jlD +fRq +pSw +brB +hIp +vIv +ttw +ngD +boy +xbl +xTh +ecy +cCA +xxi +cFf +olo +hdd +cFf +akZ +kPY +ojJ +qxS +lvL +lBq +bYe +tUE +xPT +qRF +oOj +kGz +uok +tzl +azv +brb +rjX +twq +tBD +kit +xQj +iNV +iNV +ofF +pMG +vLe +rne +egh +hnU +lkh +akR +vLe +tGn +qwV +jpR +kwK +dLi +wGI +ebv +jpR +ykd +jlf +eui +jHb +iNV +qcf +iNV +iNV +lRv +eNs +uQo +wDc +ryo +ryo +ryo +ryo +ryo +ryo +ryo +qKC +ryo +ryo +xud +mdf +gZX +xVS +onP +onP +onP +onP +onP +onP +nAD +vwJ +wKg +fdP +cJR +vha +vHg +hCV +ioP +pXL +uTI +djy +rop +wVD +wsP +szj +aqJ +fUu +uDP +keP +oLh +gwM +hRi +mSV +mSV +dNc +mSV +vlh +fAJ +fAJ +fAJ +fAJ +ugw +vlh +iil +aOj +xqq +lQO +lMi +gpe +vWN +aiS +pTB +ePL +ahP +xgf +pXW +dEx +jMk +iWn +apl +fbk +duN +iPZ +vDT +nnm +rpA +sJd +qFz +eMV +eIa +vHM +oxH +sJd +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(153,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xHb +vTF +nmA +ioM +piC +ioM +qBh +lGY +kEv +cIS +iEv +mxD +mxD +xSq +tAU +aNG +bIJ +lIR +lGY +ttw +vIv +aiT +rTD +sLa +fbP +uEg +vIv +ttw +ngD +lAT +oTu +hBB +kiK +oEn +oWd +fUB +jty +jty +bxI +uxs +aGu +ilA +gkT +lvL +ueZ +oae +qKi +xPP +qoE +kvT +fVF +gwF +olv +dVb +hzL +rjX +twq +aMk +pAD +cuF +iNV +dzp +beq +pMG +vLe +hlD +dnq +fXm +oEY +bUQ +fzg +pzh +tir +cqI +fop +sqd +vxA +eKx +fth +qSF +dBK +oZF +ope +gkv +oZW +aZT +cVF +lRv +cVF +cwJ +wDc +sEo +ryo +ryo +ryo +ryo +ryo +ryo +ryo +ryo +vrJ +xud +mdf +onP +onP +onP +rEe +wMh +aWT +jVG +onP +nYU +lWY +uXx +tsX +itH +raM +giX +sUs +eEF +pXL +lNL +nul +wQb +fnc +iMh +tNj +wqE +tAH +rUS +myv +jdb +sGQ +vWs +dCq +rui +xVB +lQk +lqx +dtj +vkB +vfV +fAJ +ugw +vlh +dHN +xyv +ctm +xRy +lhC +gpe +tKc +gxA +jGM +jSx +uvL +qAI +iFp +dEx +rsM +kgN +ocb +hNu +uAD +iPZ +obh +nGb +fPm +sJd +jOm +bOP +qIf +uoK +xAr +sJd +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(154,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +rug +ttw +ttw +ttw +ttw +ttw +ttw +ttw +taf +mJs +uOP +cxG +taf +uaX +ioM +lGY +lGY +mVb +sYS +pge +htq +bKR +lXt +kkI +aXE +mPl +lGY +xMq +vIv +vIv +kmj +awj +oTX +vIv +vIv +xMq +ngD +sZG +oTu +tqM +vnb +vnb +fGy +fGy +qSN +syV +vnb +vnb +lkY +uVM +lkY +eCc +pcc +fpI +vEx +kjf +gtT +njJ +sFv +tau +olv +vyj +bjs +lZS +rjI +xzq +oYj +nyC +iNV +iNV +iNV +qXk +vLe +vLe +gmD +wFp +wFp +vLe +vLe +vYT +qwV +cqI +xiF +kVo +fYs +eKx +jpR +uKN +kAB +oZW +oZW +oZW +oZW +wbG +cVF +lRv +qji +uQo +wDc +ryo +ryo +ryo +ryo +ryo +ryo +ryo +ryo +ryo +ryo +xud +cYz +onP +bnV +nTW +iWQ +gnh +koK +fyT +bTq +uRm +pNh +nMh +kyQ +vFv +dme +pqh +pGC +atg +jTg +uBW +jhD +mna +fwW +mnR +iQy +syJ +syJ +gCn +iuZ +nOT +kMc +gpK +dCq +rfy +dNb +gmU +gmU +gmU +aAs +pUe +qXG +ulp +vlh +mBX +lct +xqq +nMS +fsM +gpe +pjE +iTu +tGJ +jSx +uvL +fos +kjc +dEx +jhz +cgl +cpU +jwq +pRr +iPZ +hhQ +nGb +mUp +sJd +xmL +hLm +fxS +ckd +wzz +sJd +xMq +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(155,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +taf +taf +hBA +taf +taf +brf +sDX +eLW +lGY +lgF +iyK +ntp +xfA +qNc +tAU +hBH +pCl +iTx +lGY +ttw +ttw +vIv +vIv +vIv +vIv +vIv +ttw +ttw +ngD +dnZ +oTu +vnb +vnb +mvb +reT +xkk +reT +eNE +njg +vnb +iAE +ffH +awP +eCc +iJB +jul +vtU +nAa +qRF +tBq +vJA +gQU +olv +vEl +iFG +eGd +twq +aMk +sQk +hRp +iFc +qXe +iNV +pMG +bSp +aoD +gYP +fMW +mLy +bUl +vzj +mLy +qGT +cqI +nGX +ikN +vxA +wse +ykh +aqi +dGw +qAc +oZW +aqs +cyd +tOZ +cVF +lRv +cVF +uQo +sfc +ryo +ryo +ryo +ryo +ryo +ryo +ryo +ryo +ryo +ryo +xud +cYz +onP +iUM +lZh +iWQ +hRM +yhD +cpg +onP +urc +lWY +jKT +jxp +rtv +dmH +pqh +eBw +vXh +jTg +nLC +qni +wVD +cfZ +tjR +eiX +cNB +sga +ksD +uhe +pgc +ewh +kbD +uqw +fZM +kTZ +tQV +rSz +spv +nju +nru +fAJ +hGa +vlh +vPJ +tQt +tQt +tQt +ruu +gpe +eOo +xFD +uaE +oHs +bKL +kOf +fci +dEx +fYT +fYT +aSv +kAT +weW +iPZ +rzT +cUA +nGb +ptO +jKW +sPT +anA +lkJ +cHd +sJd +xMq +xMq +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(156,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +taf +gDF +fvr +jIc +sLH +ioM +ioM +mmw +lGY +lGY +iob +lGY +lGY +lGY +lGY +lGY +lGY +lGY +lGY +joP +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ngD +ngD +ngD +frc +vnb +vwn +ewC +ybu +cDc +qBO +pKY +nRV +iqx +oPQ +lvS +mCK +eCc +bSl +cXX +rWd +cyi +qRF +uaI +pQL +clu +olv +xlw +kpl +mlZ +nyC +aMk +xla +uiz +geA +tNN +iNV +sJy +ssV +ssV +xLQ +aXl +aXl +aXl +aXl +nRG +uEF +jpR +ecj +eKx +vxA +nzw +ykh +xcf +fJT +kJm +xpW +oZW +oZW +iRo +cVF +lRv +cVF +uQo +sfc +ryo +qKC +ryo +ryo +ryo +ryo +qKC +ryo +ryo +ryo +xud +cYz +onP +xvJ +tFF +cdB +bJW +iss +mmJ +onP +nSV +rJf +jsz +hZd +brS +pxT +giX +hti +dwg +pXL +hne +mth +rop +rli +dMh +vuu +dMh +uzc +qid +rli +ctj +qEL +oJw +dCq +dWT +owl +vPf +vPf +vPf +vPf +qyT +fAJ +kAL +vlh +vlh +vlh +vlh +vlh +vlh +xsG +xsG +ddt +xsG +xsG +xsG +xsG +xsG +xsG +vDv +bFG +xKx +hhj +gXa +tWR +sLc +cUA +jnZ +sJd +mel +tBQ +uTG +lGk +pYJ +sJd +sJd +sJd +sJd +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(157,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +taf +jvB +xPs +hrT +taf +mHR +kvJ +ioM +fAL +ioM +ioM +qmZ +ioM +sDX +sDX +sDX +ioM +ioM +ioM +joP +jnJ +jnJ +jnJ +jnJ +jnJ +jnJ +jnJ +ngD +jbe +jYs +oTE +vnb +kjG +dfM +wrA +dSa +wtg +mSZ +iin +vnb +jJr +urM +kov +eCc +gfk +wuo +tiL +lQC +olv +iDe +olv +olv +olv +uKQ +eeh +uKQ +nyC +jBV +frt +tXw +kPv +xNg +iNV +pbR +mTv +nyb +iNV +hqd +hGr +hGr +hGr +pzh +jpR +jpR +muX +eKx +vxA +bws +ykh +aqi +yep +uSw +onY +gUU +pgA +eQb +xFh +lRv +cVF +uQo +wDc +ryo +ryo +ryo +ryo +ryo +ryo +ryo +ryo +ryo +ryo +xud +dOV +onP +lwb +mBe +lwb +wZs +nXO +hcg +onP +nWh +vFv +tqu +gmb +vFv +daH +pqh +rop +rop +gSW +xGe +sSn +wVD +jLQ +ukJ +nTB +lzR +cJo +sLs +rli +pHz +gwM +cvI +dCq +wyY +gxa +kig +dtG +sys +lkS +iri +fAJ +qeS +fKq +fKq +gcc +kpB +sID +kAL +uXM +rie +eYi +bcG +xsG +ash +mRA +dtb +xsG +cYk +ile +sId +dJo +wIg +iPZ +aWS +eiE +cTO +sJd +lJK +fGC +kZf +bOP +xAr +sJd +gUC +pkp +ttw +ycM +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(158,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +hBA +irB +ayO +vgz +taf +taf +qJa +taf +taf +dMK +taf +taf +taf +taf +sSI +taf +taf +taf +ioM +tzT +qyN +sLS +sLS +mSk +hlj +sLS +mSk +ngD +soS +xWZ +gRx +vnb +gra +dMg +iSJ +pVK +iSJ +iSJ +lqX +vnb +nYI +pgB +tmu +ldi +ldi +qYq +ldi +mLj +ldi +pbT +giR +cmk +dto +niA +qRO +txX +nyC +aMk +rtf +tpt +nxi +bzu +iNV +ogc +jDS +fNt +iNV +oCM +jyT +oFZ +kvb +pzh +jpR +fop +pdg +mFR +azq +eQw +jpR +qSF +oCo +oZW +oZW +oZW +giv +wiy +fzb +tFW +fzb +tbD +xud +xud +xud +aeN +svE +nyV +nyV +svE +aeN +xud +xud +xud +sKs +onP +vnO +bTF +lwb +lwb +dOM +nLY +onP +mCf +dtq +qxI +fKU +tpB +baw +pqh +wHn +cRU +joy +bey +dGK +wVD +rRS +uLe +bmS +tkn +gjm +wJg +dMh +pgc +gwM +mGO +vxH +vxH +vxH +vxH +vxH +vxH +vxH +vxH +fAJ +fAJ +fAJ +fAJ +fAJ +fAJ +fAJ +teI +pEn +bye +pit +xNE +xsG +nAx +wsg +boK +xsG +pEn +pEn +pEn +pEn +pEn +pEn +lAi +dbj +lAi +sJd +qUM +otU +mUR +gyc +oxH +sJd +ykC +pkp +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(159,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +hBA +hBA +syT +pTx +taf +hPR +kgC +taf +rAk +hxP +vwi +taf +eju +dJK +kpn +dZd +eju +taf +gGW +joP +jnJ +jnJ +jnJ +jnJ +joP +bCj +mSk +ngD +yfW +teh +hiN +vnb +gEO +aFp +qKP +iWZ +nzM +vVt +eEi +vnb +jfs +afj +afj +ndR +fTi +fTi +ouX +tYr +fpE +hmN +hmN +pWC +aCv +fUc +lfS +flD +nyC +uql +oRx +rCY +wQs +kPR +wqd +ppk +fIW +gpf +wqd +pzh +szi +qWo +nuL +vRf +jpR +aWR +wkm +mFR +fop +iAj +jpR +wtQ +yep +oZW +lfI +oZW +gJE +swB +cVF +lRv +cVF +hNZ +xud +mLn +eGj +aeN +naz +png +vTu +owm +aeN +pMm +iGa +rWS +mdf +onP +tJv +izK +mgS +onP +ofb +qXo +onP +pqh +vCX +hTD +vCX +nvF +pqh +pqh +rtG +rop +rop +pOV +wVD +rop +nUi +xaD +ltN +xHW +uLe +kMM +dMh +pgc +lxc +gpK +vxH +mcO +eFE +wqw +xUk +tKV +tKV +tKV +tKV +tKV +tKV +tKV +tKV +tKV +pEn +tsl +pEn +pEn +sCw +pEn +xsG +xsG +dOX +cYE +xsG +apU +aOO +emc +dah +trL +pEn +suG +eWs +aEH +sJd +hUG +meE +ykq +vJO +bOP +sJd +wuU +pkp +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(160,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +hBA +hBA +taf +taf +vpE +eYe +taf +usc +wNS +cFF +taf +eju +ygX +skP +cjY +fPi +taf +taf +joP +ttw +ttw +ttw +ttw +joP +joP +flm +ngD +ngD +ngD +ngD +vnb +vnb +vnb +vnb +vnb +vnb +vnb +vnb +vnb +nkn +mIR +cnc +ldi +hmN +nHD +sCN +rIF +fTi +sCN +fXJ +ecE +dto +ucu +oia +tLd +nyC +aPj +kiL +qNW +rrI +iJo +wqd +uco +wOP +uqX +wqd +mrM +hGr +hGr +hGr +pzh +jpR +lhZ +fop +mFR +wkm +aWR +jpR +aqi +jlf +oZF +oZF +oZW +tEw +tuq +wDc +ooW +kwv +bbm +xud +teR +kdn +aeN +hCh +qSn +pWZ +aLP +aeN +bOJ +iGa +rWS +mdf +onP +dqy +bmj +ozn +aHi +tPA +tMq +bzZ +jRc +kXz +mMp +kXz +dcB +fMg +hiR +jtK +iiB +uFu +nnS +jMc +fsC +uty +nZg +dNV +uSX +wjH +wMS +qLC +umD +jgI +rKH +vxH +fFn +cIr +rDP +xUk +tKV +tKV +tKV +tKV +tKV +tKV +tKV +tKV +tKV +pEn +scP +mpm +fuK +ish +ktu +pEn +sDL +eef +upK +pEn +jya +nrb +nrb +nrb +nrb +vHa +qaO +qaO +dsg +sJd +sJd +sJd +sJd +sJd +sJd +sJd +kKF +sJd +sJd +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +rug +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(161,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +taf +taf +taf +taf +goe +woM +gwk +taf +taf +kvn +kvn +kvn +taf +taf +ttw +ttw +ttw +ttw +ttw +ttw +xMq +joP +iVZ +joP +ttw +ttw +ttw +ttw +ttw +ttw +ttw +jkW +ttw +ttw +ttw +ttw +cDj +mOC +mOC +ldi +byh +rCm +byh +byh +byh +rCm +xai +ecE +dto +aKj +dto +cZI +nyC +pmg +qyj +roA +qXe +lLC +wqd +veJ +bSQ +aFc +wqd +pzh +pzh +vRf +pzh +mLy +jpR +fop +fop +mFR +fop +gSF +jpR +uKN +bQf +oNu +mSR +aqs +gvt +tuq +ucR +vCI +xRh +wtJ +aiA +fjM +buG +aeN +aeN +aeN +ulM +aeN +aeN +bOJ +oSD +oSD +cYz +onP +onP +onP +onP +onP +bNm +oQF +qNj +bUS +azG +jyD +jyD +jyD +jyD +jyD +vio +uDf +uDf +eEr +eqR +wma +dZt +wlj +lCU +leb +leb +eEz +qLC +mnf +tWE +rbW +hux +bOA +uWN +ttj +xUk +tKV +tKV +tKV +tKV +tKV +tKV +tKV +tKV +tKV +pEn +oec +gfv +dcL +ish +aVb +yiU +dJY +wTh +oGI +dSV +nrb +civ +sak +sak +sak +sak +sak +uVV +qaO +kLc +unI +mLb +rvi +ouu +kWb +izF +uRw +uRw +unI +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(162,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +vxO +vxO +dcR +vxO +vxO +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +mnn +lgc +jhU +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +oao +ktT +ktT +byh +kNS +byh +xMq +ttw +ttw +rCm +rCm +aKq +dto +cWA +dto +kWl +nyC +nyC +nyC +uBK +uBK +uBK +wqd +ppk +fIW +rbP +wqd +wqd +ePH +ePH +wqd +mLy +jpR +jpR +jpR +jpR +jpR +jpR +jpR +tuq +tuq +tuq +tuq +mBK +tuq +tuq +xkQ +kpH +udg +gtH +xud +rMk +bls +vWC +vWC +vWC +vWC +vWC +vWC +vWC +vWC +vWC +bls +vWC +vWC +vWC +vWC +rOe +ahz +jTQ +kwf +aYK +gAe +gQA +giC +jxb +aRn +all +uen +emq +jxb +tMj +fOm +dGU +wfM +eLS +dxW +aus +xCR +kXF +rli +vrl +gXL +rKH +vxH +has +dgm +uvk +xUk +tKV +tKV +tKV +tKV +tKV +tKV +tKV +tKV +tKV +pEn +pEn +jya +dcL +aPu +yiU +yiU +pEn +xlM +oIw +pEn +ish +noI +sak +hCA +wbW +kcW +sak +kFT +eWs +uVV +djs +hMy +olE +uRw +mhR +mhR +mhR +uRw +jBP +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(163,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +vxO +eTW +vxO +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +mnn +lgc +jhU +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +oao +rPq +rPq +byh +xMq +byh +xMq +ttw +ttw +ttw +rCm +pdu +dto +pev +dto +oFc +odJ +xMq +ttw +ttw +ttw +ttw +wqd +dUf +teX +arR +jpv +wcb +sEc +jhT +gap +mLy +eTo +iNV +tzI +ctQ +tzI +skC +jOa +hZa +dDD +eVm +mZe +rBF +qYP +iHi +nel +erY +feC +gtH +xud +xud +xud +xud +xud +xud +xud +xud +xud +xud +xud +xud +xud +omT +xud +xud +xud +xud +xdZ +sgl +yaj +yaj +wuW +sFi +sFi +uTU +hcS +sle +wuW +wuW +uTU +myM +sle +sFi +sFi +sFi +oLo +shC +shC +shC +oLo +sUo +rzr +uMf +vxH +aIP +wGw +mBj +aPJ +eUu +tKV +tKV +tKV +woH +tKV +tKV +tKV +tKV +pEn +ipp +jya +dcL +ish +hnn +pEn +fXG +lUm +pit +jya +ish +noI +vmX +wLt +jKi +xEK +sak +aYr +eWs +eWs +ePC +kDW +aVQ +uRw +mhR +qAJ +mhR +uRw +jBP +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(164,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +vxO +uiU +vxO +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +mnn +lgc +jhU +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +oao +rPq +rPq +pQm +pQm +pQm +egk +ayr +dBB +nxH +mjX +heM +kjL +kbK +kbK +rDl +odJ +xMq +xMq +xMq +smE +xMq +gap +ltl +jFh +mMN +lVc +qRv +hrZ +idl +ePH +mLy +pzh +wgI +hyf +jmw +hyf +skC +uBg +jDy +exL +lti +lti +lti +lti +lti +lti +ggR +lti +ceg +tuq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +oXI +mGz +uyc +xFW +hQq +qBe +odX +ipj +ekQ +bNu +uim +yaj +xMq +sFi +pyn +krA +aRn +xTN +lbV +nWq +krA +tMj +xTN +git +uho +cHk +shC +mqJ +kBs +nnr +oLo +feh +gXL +xXi +vxH +kPn +nmJ +uvk +xUk +tKV +tKV +tKV +tKV +tKV +tKV +tKV +tKV +tKV +pEn +ava +emc +tJj +nrb +nrb +vHa +nrb +nrb +nrb +nrb +nrb +eeF +sak +xag +chX +bWt +sak +kFh +eWs +uVV +djs +ltn +olE +uRw +mhR +mhR +mhR +shi +mZf +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(165,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +rug +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +gPJ +gPJ +gPJ +gPJ +gPJ +xMq +xMq +eVk +xMq +xMq +gPJ +gPJ +gPJ +gPJ +gPJ +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +xMq +mnn +blC +jhU +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +oao +rPq +wrM +pQm +ttw +ttw +ttw +ttw +wov +odJ +mjX +heM +kjL +xMq +kbK +rDl +odJ +xMq +ttw +ttw +ttw +ttw +ePH +vNJ +vwe +xjd +euw +elo +aez +vVF +wqd +iNV +iNV +iNV +xqF +fND +spi +skC +uBg +vjT +tuq +fEL +iEu +dml +ezj +iEu +vjT +tuq +eMG +uzW +tuq +xMq +xqO +odJ +odJ +odJ +odJ +odJ +xqO +xMq +oXI +utv +wsQ +tbp +bcW +njG +xCF +xCF +xXC +sMD +gjq +sgl +gZb +wuW +wVQ +udn +aRn +fun +kxD +xyD +kxD +tMj +fgF +rdj +fbO +iZL +oLo +nGM +lGO +pHC +shC +dsj +idx +fsd +kCP +hzu +mvd +piG +xUk +tKV +tKV +tKV +tKV +tKV +tKV +tKV +tKV +tKV +pEn +xOh +jya +nrb +iay +iay +iay +iay +iay +vBb +iay +vBb +iay +sak +iOB +aLU +oVX +sak +tuk +jCq +uVV +unI +uXf +xnu +uRw +uRw +uRw +uRw +uRw +jBP +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(166,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +ttw +ttw +ttw +xMq +ttw +ttw +xMq +nCZ +xMq +ttw +ttw +xMq +ttw +ttw +ttw +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +xMq +mnn +lgc +jhU +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +sdt +ttw +ttw +ttw +oao +bMa +rPq +eUy +mKV +ttw +ttw +ttw +aqy +xMq +mjX +heM +kjL +xMq +kbK +rDl +odJ +xMq +ttw +ttw +ttw +ttw +ePH +tRb +oZY +kTm +xnk +vWi +dJD +dJD +dPO +hAU +wDv +tuq +oZs +lWc +oOg +pnN +eFm +oTp +hRJ +oth +iEu +voZ +axx +hFt +lry +mAV +oth +fpR +tuq +xMq +odJ +ttw +ttw +ttw +ttw +ttw +odJ +xMq +oXI +mGz +dUa +tbp +lon +yib +szk +nRy +xXC +jay +dMl +sgl +odJ +wuW +eGw +udn +twB +jnK +kzu +aRn +qYA +vJr +sVW +iYe +jpP +iKb +sSV +lKg +npI +oyG +shC +hDf +vNs +mvz +bOH +dwd +rgw +kWM +xUk +tKV +tKV +tKV +tKV +tKV +tKV +tKV +tKV +tKV +pEn +frV +hyV +uom +iay +oxE +oEp +eEM +rKG +fCY +msQ +fTs +lrC +sak +sak +sak +sak +sak +lAi +xzX +jrP +unI +vWy +ehk +tvH +opW +ghP +dvO +xAC +jBP +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(167,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +ttw +ajZ +ajZ +ajZ +ajZ +ajZ +xMq +nCZ +xMq +ajZ +ajZ +ajZ +ajZ +ajZ +ttw +gPJ +ttw +ttw +rug +ttw +ttw +ttw +xMq +joP +ohd +joP +ttw +ttw +fWC +oao +gjO +oao +ttw +oao +czo +oao +ttw +ttw +oao +rPq +tOs +pQm +ttw +ttw +ttw +ttw +wov +odJ +mjX +heM +kjL +xMq +kbK +oFc +odJ +xMq +xMq +smE +xMq +xMq +wqd +wBy +eYu +wAp +dJD +vFG +hNm +vhq +wqd +kQE +tuu +tuq +sIE +ocs +aUx +skC +uBg +lry +hRJ +oth +iEu +alz +vFA +iEu +lry +mAV +oth +bFI +tuq +xMq +odJ +ttw +ttw +ttw +ttw +ttw +odJ +xMq +oXI +iKe +wsQ +tbp +tbm +oXI +pjT +pjT +hxC +pjT +pjT +pjT +cYx +wuW +pqc +udn +gqC +evd +pOT +aRn +qfA +kJp +gqC +rkG +htz +yaa +oLo +iiU +lCb +ovi +oLo +phj +gXL +pPy +vxH +hdZ +aic +mJw +xUk +tKV +tKV +tKV +tKV +tKV +tKV +tKV +tKV +tKV +pEn +frV +ish +dcL +vBb +bjg +kAN +kLl +kLl +kLl +pSJ +vty +rgH +iay +uLH +ufe +ntn +gLb +lAi +xof +aEH +unI +dNL +xQe +xQe +xQe +cYN +qvU +jXc +unI +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(168,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +xMq +egy +egy +egy +egy +egy +egy +nCZ +egy +egy +egy +egy +egy +egy +xMq +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +joP +flm +joP +ttw +ttw +odJ +oao +rKD +oao +ttw +oao +rKD +oao +ttw +oao +oao +rPq +dSc +pQm +pQm +pQm +egk +oTr +dHm +nxH +mjX +heM +kjL +xMq +kbK +rDl +odJ +xMq +ttw +ttw +ttw +ttw +wqd +kSB +arR +sGk +ybR +lGB +iaC +jAu +wqd +nBj +tuq +tuq +tuq +tuq +tuq +tuq +lXz +lry +aqh +oth +iEu +ooq +bzg +iEu +lry +aqh +oth +bBu +tuq +xMq +odJ +ttw +ttw +ttw +ttw +ttw +yib +yib +yib +laf +llM +tbp +lFU +oXI +jBq +jnu +efH +ouL +aUA +pjT +xMq +sFi +tEH +udn +cLG +sny +kxD +kGs +aRn +maw +aRn +beY +htz +rCq +oLo +oLo +mFM +oLo +oLo +mgV +dGg +llS +kEm +kEm +mwY +kEm +kEm +kEm +kEm +kEm +kEm +kEm +kEm +kEm +kEm +kEm +pEn +pEn +ish +pSK +iay +dBC +kLl +kLl +rYT +mPs +dNh +kLl +cQb +iay +dzC +oXG +uVV +xRx +wIM +eWs +kLc +unI +poE +mRm +mRm +rgt +unI +unI +unI +unI +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(169,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +gPJ +ttw +ajZ +ajZ +ajZ +ajZ +ajZ +xMq +nCZ +xMq +ajZ +ajZ +ajZ +ajZ +ajZ +ttw +gPJ +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +joP +iEP +pbe +cDj +cDj +cDj +oao +ddN +oao +oao +oao +ddN +oao +oao +oao +rPq +rPq +rPq +byh +xMq +byh +xMq +ttw +ttw +ttw +rCm +fCd +rCm +xMq +kbK +rDl +odJ +xMq +ttw +ttw +ttw +wqd +wqd +wqd +sKA +wqd +uCz +wOP +kmI +ikw +wqd +wqd +tuq +gEV +tLv +sMN +skC +iMO +vyI +lry +hRJ +oth +iEu +lWD +lac +iEu +lry +mAV +oth +efd +tuq +xMq +odJ +ttw +ttw +ttw +ttw +nwb +ruV +jBM +ruV +aUO +awG +ucK +hkN +oXI +mXQ +ugC +nNB +ens +cRT +pjT +xMq +sFi +ttf +int +rpr +eyW +wJS +wJS +wJS +xsY +muR +jjO +qVT +jWS +kbw +gKO +gKO +gKO +ufS +hyo +gXL +ioy +kEm +wTq +flj +giM +iCa +iCa +ogw +ryE +uIM +rYX +rYX +tof +gXp +dFN +tof +pEn +jya +tJj +nGO +vqC +vqC +oSa +dDq +dsL +pSJ +kLl +eQi +iay +tnp +uVV +uVV +shE +lAi +dsg +xLX +unI +kdF +ayt +ayt +gIT +unI +otq +pkp +ttw +ycM +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(170,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +ttw +ttw +ttw +ttw +xMq +ttw +ttw +xMq +nCZ +xMq +ttw +ttw +xMq +ttw +ttw +ttw +ttw +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +joP +iEP +pbe +uNy +qmI +cDj +xRQ +rPq +rPq +rPq +rPq +rPq +rPq +rPq +rPq +rPq +rPq +rPq +byh +osb +byh +xMq +ttw +ttw +rCm +rCm +aKq +rCm +rCm +kbK +rDl +odJ +xMq +ttw +ttw +ttw +ttw +ttw +wqd +kjP +cnv +ert +sPg +hhs +eON +aZX +kSB +tuq +vMj +pvA +fCy +skC +hqK +udg +lry +hRJ +oth +iEu +opf +tqA +iEu +lry +mAV +oth +sQH +tuq +xMq +odJ +ttw +ttw +ttw +ttw +ttw +yib +yib +yib +uIn +kjt +ucK +hwL +oXI +hwR +lFv +kVH +gJs +jXN +pjT +xMq +sFi +pZV +tKA +uHr +oQK +xJt +ibj +xJt +qAu +xbQ +qVt +xbQ +xUK +sFi +bwv +wbf +gKO +gTJ +jHx +rFo +mku +rpb +iCa +vAt +lxv +kEm +kEm +kEm +kEm +pUu +kEm +rYX +rYX +tMQ +rYX +rYX +vHa +tJj +tqU +iay +vsz +qaX +joj +jdN +err +pTK +faR +rgH +iay +pWs +wkc +rnV +vLm +lAi +eWs +pyD +unI +uWo +ayt +ayt +ayt +unI +hqJ +pkp +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(171,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +ttw +ajZ +ajZ +ajZ +ajZ +ajZ +xMq +xMq +sop +xMq +xMq +ajZ +ajZ +ajZ +ajZ +ajZ +ttw +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +joP +ruQ +pbe +hKP +isy +lgZ +lFM +rPq +rPq +rPq +bMa +rPq +rPq +rPq +rPq +rPq +rPq +yec +rCm +byh +rCm +byh +byh +byh +rCm +bYA +ecE +dyQ +rCm +kbK +aTI +odJ +xMq +xMq +smE +xMq +xMq +xMq +wqd +ebF +hYt +hYt +pXk +cUk +uWa +kRA +lIT +tuq +rXp +lNA +oUl +eqX +lnX +vMO +jWK +tuq +dWx +hFt +scK +tfA +iEu +jWK +tuq +xfB +gtH +skC +xMq +odJ +ttw +ttw +ttw +ttw +ttw +odJ +xMq +oXI +oNA +dea +awr +oCs +oXI +juG +wQL +wyB +iVW +coN +pjT +xMq +sFi +wuW +sFi +wuW +puo +hoC +sFi +hoC +sDM +wuW +sFi +wuW +wuW +sFi +ufS +ufS +ufS +ufS +lae +uVf +lae +kEm +kEm +pUu +nDX +kEm +keG +ixE +oOo +jHd +kEm +klD +qZf +qZf +wHZ +fpO +pEn +jya +vxe +vBb +xpL +qoT +rbJ +cpX +lqz +iay +iay +iay +iay +lAi +lAi +lAi +lAi +lAi +cki +lAi +unI +kQp +rud +scQ +sUV +unI +vag +pkp +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(172,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +xMq +egy +egy +egy +egy +egy +egy +nCZ +fbc +nCZ +egy +egy +egy +egy +egy +egy +xMq +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +joP +pWl +pbe +okn +okn +cDj +lFM +rPq +gPQ +bsr +iru +gpO +lcd +waK +rPq +rPq +xRQ +xRQ +mrZ +fTi +oUo +fTi +sCN +tYr +xnR +tYr +fTi +iwq +rCm +kbK +wia +xMq +ttw +ttw +ttw +ttw +ttw +ttw +wqd +hvZ +muv +pGW +muv +lIH +tJP +xEc +xWP +tuq +sYY +iQX +mja +skC +voz +lti +udg +wPP +lti +gaB +lti +lti +kjl +lti +bEe +dMz +kVP +skC +xMq +odJ +ttw +ttw +ttw +ttw +ttw +odJ +xMq +oXI +yib +yib +nFa +oXI +oXI +pjT +pjT +pjT +pjT +pjT +pjT +xMq +xMq +xMq +xMq +wuW +sFU +hih +nTl +hih +jef +wuW +xMq +xMq +xMq +odJ +xMq +xMq +xMq +lae +jvs +sIK +pjF +lae +xMq +qnr +cXC +cXC +uGO +bzU +hGP +kWq +kEm +jog +tof +wTq +wHZ +ixk +pEn +oWG +vxe +iay +iay +iay +iay +iay +iay +iay +mcK +pNy +aBh +mqd +iiO +qqg +uVV +uVV +qaO +hmY +unI +unI +unI +unI +unI +unI +unI +unI +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(173,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +ttw +ajZ +ajZ +ajZ +ajZ +ajZ +xMq +xMq +nCZ +xMq +xMq +ajZ +ajZ +ajZ +ajZ +ajZ +ttw +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +joP +iEP +pbe +pbe +pbe +pbe +lHM +xTY +ylx +ylx +ylx +xTY +xTY +xTY +xMA +cDj +ddP +ddP +wnu +wnu +wnu +wnu +wnu +wnu +wnu +rRp +wnu +wnu +rCm +kbK +kbK +cqT +xMq +ttw +ttw +ttw +ttw +wqd +wqd +wqd +lIQ +yiu +dOw +wqd +wqd +wqd +wqd +tuq +sFn +aRZ +vey +skC +lgE +sJM +grW +hzm +hzm +xpd +ttu +ttu +grW +nGF +grW +hzm +iDC +tuq +xMq +xqO +odJ +odJ +odJ +odJ +odJ +xqO +xMq +oXI +pvB +mHC +neT +enw +oXI +xMq +xMq +xMq +xMq +ttw +ttw +xMq +xqO +ltB +odJ +wuW +puo +rBd +sFi +rBd +sDM +wuW +odJ +odJ +odJ +xqO +odJ +odJ +xMq +qWR +trb +dLt +rbf +qWR +xMq +xMq +xMq +uHh +mET +rkR +kub +kxK +oZl +mYv +kEm +kEm +fyy +kEm +pEn +hyV +eBy +eBy +xJr +nrb +eBy +nrb +vHa +qaO +qaO +qaO +qaO +jCq +jCq +nAp +jCq +qaO +qaO +wsc +lAi +jBK +pkp +ttw +ycM +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(174,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +ttw +ttw +ttw +ttw +xMq +ttw +ttw +xMq +nCZ +xMq +ttw +ttw +xMq +ttw +ttw +ttw +ttw +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +joP +lZP +iEP +rKM +oZR +akU +fGh +xTY +lte +rQk +ddB +twa +riy +xTY +hlF +pQm +dvY +qtc +wnu +vei +hsu +kbb +iVa +iVa +jFA +iVa +qih +wnu +ttw +ttw +kbK +kbK +cqT +xMq +ttw +ttw +ttw +xMq +ttw +wqd +wqd +wqd +wqd +wqd +ttw +xMq +ttw +tuq +skC +skC +skC +rTu +kqc +tuq +sfk +rTu +skC +agH +skC +rTu +lwj +tuq +sfk +rTu +skC +tuq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +oXI +cYc +wpS +jfx +kVv +oXI +xMq +xMq +xMq +ttw +ttw +ttw +xMq +odJ +ttw +ttw +ttw +ttw +pXt +ttw +ttw +ttw +ttw +ttw +ttw +ttw +odJ +xMq +xqO +odJ +lae +lae +esH +lae +lae +odJ +xqO +xMq +uHh +mET +agF +hGP +vck +kEm +klD +kEm +kIX +kGy +gNu +pEn +bKE +jya +ish +ish +ish +ish +rtr +pEn +dFG +wOB +lAi +lAi +cDF +lAi +lAi +kLc +tyt +uVV +ajL +lAi +uLA +pkp +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(175,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +gPJ +ttw +ajZ +ajZ +ajZ +ajZ +ajZ +xMq +nCZ +xMq +ajZ +ajZ +ajZ +ajZ +ajZ +ttw +gPJ +gPJ +ttw +ttw +ttw +ttw +fYl +joP +joP +joP +iEP +iEP +iEP +iEP +iEP +mep +woX +nFD +mtC +bPI +tzr +fDz +mpF +iZx +mpF +mpF +nnj +tdY +mpu +xmN +iVa +iVa +mVl +vdq +iVa +mjH +mjH +mjH +mjH +kbK +kbK +cqT +xMq +xMq +kUb +kUb +ttw +ttw +ttw +xMq +ttw +ttw +ttw +kUb +xMq +xMq +xMq +xMq +xMq +skC +oAR +skC +oAR +skC +xMq +xMq +xMq +skC +oAR +skC +oAR +skC +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +oXI +fdZ +qlR +iZW +gQp +oXI +xMq +xMq +ttw +ttw +ttw +ttw +xMq +odJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +odJ +xMq +odJ +ttw +ttw +ttw +qjv +ttw +ttw +ttw +odJ +xMq +uHh +mET +rvw +qeo +eSb +kEm +jog +kEm +fLB +fLB +wTq +pEn +bKE +wrR +emd +nub +ish +gfv +pEn +pEn +pIm +lAi +lAi +vAT +gfw +mYa +lAi +vmE +gZp +eSE +ajL +lAi +ftr +pkp +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(176,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +xMq +egy +egy +egy +egy +egy +egy +nCZ +egy +egy +egy +egy +egy +egy +xMq +gPJ +ttw +ttw +ttw +ttw +ttw +odJ +iMf +tmb +xdT +dfU +ers +aBX +qsw +tod +xTY +rpN +pcq +mbW +vWY +pFg +xTY +oxW +wOx +vDx +mpF +acN +ahi +ehU +eIn +iVa +iVa +gIJ +iVa +eXN +mjH +buh +gDG +mjH +ttw +kbK +kbK +cqT +ttw +ttw +kUb +kUb +xMq +kUb +kUb +kUb +xMq +kUb +kUb +ttw +ttw +kXK +ttw +ttw +skC +gnT +skC +aSR +skC +skC +sRM +skC +skC +gnT +skC +aSR +skC +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +kUb +ttw +xMq +oXI +jZq +gsZ +rMv +gQp +oXI +xMq +ttw +ttw +ttw +ttw +ttw +xMq +odJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +odJ +xMq +odJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +odJ +xMq +uHh +pcf +jyL +xdH +eDF +kEm +klD +kEm +hTI +aUC +hTI +pEn +pEn +pEn +pEn +pEn +bak +wvG +pEn +rQb +cDs +lOz +lAi +sdb +uVV +jDi +lAi +lAi +lAi +lAi +lAi +lAi +lAi +lAi +lAi +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(177,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +ttw +ajZ +ajZ +ajZ +ajZ +ajZ +xMq +nCZ +xMq +ajZ +ajZ +ajZ +ajZ +ajZ +ttw +gPJ +ttw +ttw +ttw +ttw +ttw +fYl +joP +iED +arU +arU +arU +arU +arU +arU +xTY +xTY +xTY +xTY +xTY +xTY +xTY +pQm +pQm +dDp +hQF +acN +acN +acN +acN +acN +acN +acN +acN +acN +mjH +qtp +xik +mjH +ttw +ttw +kbK +kbK +bJi +xMq +xMq +ttw +ttw +ttw +kXK +ttw +ttw +kXK +ttw +ttw +ttw +pDv +ttw +ttw +skC +cdL +skC +cdL +skC +gdB +rhs +vQT +skC +cdL +skC +cdL +skC +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +kUb +ttw +xMq +oXI +sAi +rZz +wnd +ppC +oXI +xMq +ttw +ttw +ttw +ttw +ttw +xMq +odJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +odJ +xMq +odJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +odJ +xMq +gsU +gsU +qzs +cTy +oLT +xeg +klD +kEm +gyC +jBH +uTs +pEn +xMq +xMq +xMq +pEn +pEn +pEn +pEn +mcG +bRa +njb +lAi +lAi +lAi +lAi +lAi +xMq +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(178,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +rug +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +ttw +ttw +ttw +xMq +ttw +ttw +xMq +egy +xMq +ttw +ttw +xMq +ttw +ttw +ttw +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +arU +tUq +dHS +eTa +bpy +agC +dQX +iYH +iyU +dQX +iYH +iyU +dGL +iYH +pQm +eDY +mpF +tzH +vDx +vDx +vDx +ncU +vDx +fDd +sBB +fMH +mjH +qpf +jKy +mjH +ttw +ttw +ttw +kbK +aTI +odJ +xMq +ttw +ttw +ttw +pDv +ttw +ttw +pDv +ttw +ttw +ttw +ttw +ttw +ttw +rTu +oXQ +tuq +qhT +rTu +skC +sRM +skC +rTu +qhT +tuq +qhT +dir +ttw +ttw +ttw +ttw +ttw +ttw +smE +xMq +kUb +xMq +xMq +oXI +oXI +oXI +oXI +oXI +oXI +ttw +ttw +ttw +ttw +ttw +ttw +xMq +odJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +odJ +xMq +odJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +odJ +xMq +xMq +gsU +wLg +uHh +gsU +kEm +kEm +kEm +kEm +kEm +kEm +pEn +xMq +ttw +ttw +ttw +ttw +ttw +sFk +xao +sZv +ufk +sFk +xMq +xMq +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(179,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +gPJ +gPJ +gPJ +gPJ +gPJ +gPJ +xMq +egy +xMq +gPJ +gPJ +gPJ +gPJ +gPJ +gPJ +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +arU +cst +yak +noj +xNf +agC +aIV +tqC +iyU +yaf +tqC +iyU +stk +tqC +pQm +fCo +mpF +vrn +etd +xSt +iud +mpF +mpF +mpF +mpF +mpF +vEM +jVx +dZs +mjH +ttw +ttw +ttw +kbK +rDl +odJ +iLQ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +jtY +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +kUb +ttw +ttw +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +odJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +odJ +xMq +odJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +odJ +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +npW +npW +tpQ +npW +npW +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(180,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +xMq +eXi +xMq +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +arU +arU +bHq +iFY +hnt +vzN +agC +imS +fJz +iyU +xPg +ojc +iyU +lML +lZl +iyU +hdK +vkC +pEu +pEu +pEu +pEu +dRS +dRS +dRS +dRS +eAO +mjH +jrs +kOs +mjH +mjH +mjH +mjH +kbK +rDl +odJ +iLQ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +kUb +kUb +ttw +xMq +ttw +ttw +xMq +ttw +ttw +xMq +ttw +ttw +xMq +ttw +ttw +xMq +odJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +odJ +xMq +xqO +odJ +odJ +odJ +odJ +odJ +odJ +odJ +xqO +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +npW +sCQ +npW +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(181,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +xMq +xqO +xMq +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +arU +aaA +sZZ +dIg +wev +uEu +rhB +azx +gPk +vob +pzL +gPk +tZx +pzL +gPk +uGj +mnI +hMl +aLB +kGt +elB +pEu +pEu +pEu +pEu +pEu +pEu +mjH +sEz +eCd +gPp +xvg +pjG +mjH +kbK +oFc +odJ +iLQ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +kUb +kUb +kUb +kUb +kUb +kUb +kUb +kUb +kUb +kUb +kUb +kUb +kUb +ttw +xMq +xqO +odJ +odJ +odJ +odJ +odJ +odJ +odJ +ltB +ltB +ltB +ltB +ltB +qNd +odJ +odJ +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +npW +oPO +npW +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +rug +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(182,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +gPJ +xMq +gPJ +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +arU +iNL +eTa +wfJ +cJv +htS +agC +ehD +vDY +kfC +xyG +xyG +xyG +xyG +xyG +rCQ +gua +nZW +sPK +cNE +spn +jVf +vBm +mBM +mBM +xrm +inq +mjH +oBJ +cfm +sVE +mBO +woK +mjH +kbK +rDl +odJ +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +ttw +ttw +xMq +ttw +ttw +xMq +ttw +ttw +xMq +ttw +ttw +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +xMq +bgi +xMq +xMq +xMq +xMq +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +gPJ +gPJ +gPJ +gPJ +gPJ +xMq +xMq +exh +xMq +xMq +gPJ +gPJ +gPJ +gPJ +gPJ +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(183,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +arU +kPj +dhK +agC +kPj +kPj +agC +ehD +kWf +qLM +isl +isl +rBP +isl +isl +pZI +eaL +iID +rvf +rvf +rvf +sxJ +iXB +gYq +mBM +mBM +mBM +mjH +aSL +rdJ +gPp +pjG +pjG +mjH +kbK +rDl +odJ +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +smE +ttw +ttw +smE +ttw +ttw +smE +ttw +ttw +smE +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +ttw +ttw +ttw +xMq +ttw +ttw +xMq +cxC +xMq +ttw +ttw +xMq +ttw +ttw +ttw +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(184,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +arU +xoG +gPc +oGP +eon +dmJ +sVg +fkF +kWf +rQA +fll +csL +jXS +csL +mCE +rmY +eaL +iID +aNs +aNs +aLb +sCZ +tyF +sid +vBB +oeM +fnM +mjH +mjH +mjH +mjH +gUD +gUD +mjH +kbK +rDl +odJ +iLQ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +ttw +gQg +gQg +gQg +gQg +gQg +xMq +cxC +xMq +gQg +gQg +gQg +gQg +gQg +ttw +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(185,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +arU +bzh +cig +bGJ +vwz +gIB +agC +pSm +kWf +hEh +cqn +qrF +vHc +csL +ibC +lhf +eaL +nZW +qxc +kHq +exx +oKn +iXB +aOV +mBM +cSZ +sKy +pEu +xUP +bWj +igv +ttw +ttw +xMq +kbK +rDl +odJ +iLQ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +xMq +qiX +qiX +qiX +qiX +qiX +qiX +cxC +qiX +qiX +qiX +qiX +qiX +qiX +xMq +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(186,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +arU +qZA +qht +jhn +qZA +qht +agC +iSE +kWf +riB +jYv +csL +jXS +csL +hBp +hRg +eaL +nZW +vBa +mjK +lsA +pYZ +qpT +iRA +mBM +mBM +sjl +pEu +iFo +kUO +igv +ttw +ttw +iLQ +kbK +rDl +odJ +iLQ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +gPJ +ttw +gQg +gQg +gQg +gQg +gQg +xMq +cxC +xMq +gQg +gQg +gQg +gQg +gQg +ttw +gPJ +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(187,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +rug +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +arU +jzm +uZu +sUu +wJM +vbW +qht +hWF +kWf +cTK +sIG +sIG +lRD +sIG +sIG +edi +eaL +qmd +pEu +pEu +pEu +pEu +pEu +pEu +bBk +qdD +tkI +pEu +wwX +wwX +igv +ttw +ttw +iLQ +kbK +oFc +odJ +iLQ +ttw +ttw +ttw +ttw +rug +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +ttw +ttw +ttw +ttw +xMq +ttw +ttw +xMq +cxC +xMq +ttw +ttw +xMq +ttw +ttw +ttw +ttw +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(188,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +rug +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +arU +dKK +xbD +fkx +wpp +uZu +jDe +qhJ +dFp +ucT +rHc +rHc +rHc +rHc +rHc +pSu +kPI +iID +kFZ +kFZ +tyY +vfE +mxe +pEu +pEu +pEu +pEu +pEu +fLo +snC +igv +ttw +ttw +iLQ +kbK +rDl +odJ +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +ttw +gQg +gQg +gQg +gQg +gQg +xMq +xMq +rSE +xMq +xMq +gQg +gQg +gQg +gQg +gQg +ttw +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(189,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +arU +arU +yct +eiJ +vbW +vbW +jhR +sIj +rZI +tri +aNM +rZI +nqI +aNM +rZI +mjA +uqh +mFq +qUo +qUo +bXh +qUo +qUo +nkY +abC +lTu +jMh +wwX +wTC +isx +acO +ttw +ttw +iLQ +kbK +rDl +odJ +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +rug +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +xMq +qiX +qiX +qiX +qiX +qiX +qiX +cxC +nUe +cxC +qiX +qiX +qiX +qiX +qiX +qiX +xMq +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(190,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +arU +jPN +jPN +jPN +jPN +arU +efi +qpM +iyU +dYB +rUC +iyU +qVR +aBT +iyU +uUL +lne +dfQ +dDl +dDl +dDl +dKU +oOX +qyE +wKa +bqv +bvv +jzN +dFa +acO +ttw +ttw +iLQ +kbK +rDl +odJ +iLQ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +ttw +gQg +gQg +gQg +gQg +gQg +xMq +xMq +cxC +xMq +xMq +gQg +gQg +gQg +gQg +gQg +ttw +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(191,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +tHI +sQc +whu +iyU +miz +whu +iyU +vcy +whu +iyU +mPb +ueS +xUw +grt +grt +grt +wwX +acO +tGg +acO +wwX +wwX +rQI +nom +acO +ttw +ttw +iLQ +kbK +rDl +odJ +iLQ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +ttw +ttw +ttw +ttw +xMq +ttw +ttw +xMq +cxC +xMq +ttw +ttw +xMq +ttw +ttw +ttw +ttw +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(192,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +tHI +qbc +oSw +iyU +qbc +oSw +iyU +qbc +oSw +iyU +taX +sLX +kdK +grt +grt +oIp +wwX +lRT +oNP +rjn +xGY +wwX +qsF +igv +igv +ttw +ttw +xMq +kbK +rDl +odJ +iLQ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +gPJ +ttw +gQg +gQg +gQg +gQg +gQg +xMq +cxC +xMq +gQg +gQg +gQg +gQg +gQg +ttw +gPJ +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(193,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +tHI +tHI +tHI +tHI +tHI +tHI +tHI +tHI +tHI +tHI +aTp +eIY +grt +grt +lDu +tOr +wwX +osR +qUN +srk +iKs +igv +igv +igv +ttw +ttw +ttw +xMq +kbK +oFc +odJ +iLQ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +xMq +qiX +qiX +qiX +qiX +qiX +qiX +cxC +qiX +qiX +qiX +qiX +qiX +qiX +xMq +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(194,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +wel +tHI +xJW +fxg +fxg +fxg +fxg +jjS +tHI +dec +oVM +grt +grt +grt +grt +wwX +kxX +cjT +lRp +leQ +igv +xMq +ttw +ttw +ttw +ttw +xMq +kbK +rDl +odJ +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +rug +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +ttw +gQg +gQg +gQg +gQg +gQg +xMq +cxC +xMq +gQg +gQg +gQg +gQg +gQg +ttw +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(195,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +tHI +lAS +lAS +mAj +lAS +lAS +mAj +tHI +nxU +duq +nxU +nxU +nxU +nxU +igv +acO +acO +acO +acO +igv +xMq +ttw +ttw +ttw +ttw +iLQ +kbK +rDl +odJ +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +ttw +ttw +ttw +xMq +ttw +ttw +xMq +qiX +xMq +ttw +ttw +xMq +ttw +ttw +ttw +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(196,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xXo +xXo +xXo +xXo +xXo +xXo +ulU +aRc +vaG +iva +wjJ +lcZ +pUM +xMq +xMq +xMq +xMq +xMq +xMq +xMq +ttw +ttw +ttw +ttw +iLQ +kbK +rDl +odJ +iLQ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +gPJ +gPJ +gPJ +gPJ +gPJ +gPJ +xMq +qiX +xMq +gPJ +gPJ +gPJ +gPJ +gPJ +gPJ +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +rug +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(197,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xXo +xXo +xXo +xXo +xXo +xXo +ulU +mQW +fPM +oTc +fRh +ldB +shJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +kbK +rDl +odJ +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +xMq +vuw +xMq +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(198,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +rug +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ulU +wYd +nPn +sQJ +ljk +opr +shJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +kbK +rDl +odJ +iLQ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +xMq +fYl +xMq +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(199,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ulU +cBk +lEa +efz +jhM +bLi +shJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +kbK +rDl +odJ +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +gPJ +gPJ +xMq +gPJ +gPJ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(200,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ulU +qhU +imb +aTk +dkU +uPS +pUM +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +kbK +rDl +odJ +iLQ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(201,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ulU +pUM +pUM +pUM +pUM +pUM +pUM +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +kbK +rDl +odJ +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +qtL +qtL +qyC +byw +qyC +qtL +qtL +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(202,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +kbK +rDl +odJ +iLQ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +qtL +qtL +qtL +xMq +xMq +xMq +qtL +qtL +jgz +qtL +qtL +qyC +gAn +qyC +qtL +qtL +qtL +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(203,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +kbK +rDl +odJ +iLQ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +qtL +qtL +qtL +qtL +npZ +npZ +tFG +npZ +npZ +npZ +hRo +npZ +npZ +qyC +mAs +qyC +qyC +qtL +vAw +duI +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(204,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +rug +ttw +ttw +ttw +ttw +ttw +rug +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +kbK +rDl +odJ +iLQ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +qtL +vIC +npZ +npZ +npZ +mWg +psA +roK +kwB +npZ +hTs +uhE +npZ +jMZ +iBQ +dhL +qyC +qtL +vAw +duI +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(205,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +siO +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +kbK +oFc +odJ +iLQ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +qtL +qtL +npZ +lqF +pIJ +dVc +dVc +qTJ +dVc +eXg +mNT +fst +nbC +npZ +nOE +iBQ +foC +qyC +qtL +qtL +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(206,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +kbK +rDl +odJ +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +qtL +qtL +npZ +npZ +npZ +uzo +erR +wab +wna +okt +npZ +npZ +nbC +jeo +ksd +iBQ +qyC +qyC +qyC +qyC +oIE +uUB +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +rug +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +rug +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(207,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +kbK +rDl +odJ +xMq +ttw +ttw +ttw +ttw +ttw +ttw +npZ +tFG +npZ +npZ +npZ +npZ +npZ +iMn +dVc +gKl +gKl +gKl +eXg +nSP +npZ +npZ +qyC +qyC +hgk +qyC +djg +xvm +qyC +tGk +tGk +ujK +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +rug +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(208,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +kbK +rDl +odJ +iLQ +ttw +ttw +ttw +ttw +ttw +ttw +dAp +iTS +lWr +swu +hXs +rFA +npZ +miR +fWK +wQx +dLo +bfB +bQZ +gge +reQ +npZ +doh +wiF +iBQ +qfN +kFp +kFp +sAk +gNi +tGk +tGk +ghU +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(209,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +kbK +rDl +odJ +iLQ +ttw +ttw +ttw +ttw +ttw +ttw +npZ +tFG +npZ +oAM +fQz +pRL +npZ +qmp +hTl +wQx +pym +bfB +wyR +gge +oHv +npZ +aNT +fxW +bgy +cyA +gCp +fRM +igk +jbg +qoP +cwn +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(210,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +kbK +rDl +odJ +iLQ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +npZ +qZz +een +tkz +aeP +tkz +dKZ +lOi +onB +bfB +ezL +gge +cYr +npZ +aNT +fxW +bgy +cyA +gCp +jxh +afD +vcv +jWQ +cwn +xMq +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(211,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +kbK +oFc +odJ +iLQ +ttw +ttw +ttw +ttw +ttw +ttw +ttw +qtL +npZ +olS +snP +oSS +npZ +mBg +wBE +pXj +dLo +tSb +ndX +sHo +xQn +npZ +aOp +kky +xbK +lky +pql +ade +xFQ +pXz +tGk +tGk +ghU +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(212,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +kbK +rDl +odJ +iLQ +ttw +ttw +ttw +ttw +ttw +ttw +qtL +qtL +npZ +npZ +npZ +npZ +npZ +npZ +npZ +dQm +dLo +jkp +npZ +npZ +npZ +npZ +qAR +qyC +kEP +qyC +qyC +qyC +lTw +qyC +qyC +qyC +qtL +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(213,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +kbK +rDl +odJ +xMq +ttw +ttw +ttw +ttw +ttw +qtL +qtL +qtL +qtL +qtL +sEf +xPf +nVO +mKf +eiw +pXj +dST +hHT +npZ +fMc +hPs +mwd +fMc +khZ +fMc +cFz +ebo +ilc +ewo +vnm +pqH +qyC +qtL +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(214,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +kbK +rDl +odJ +xMq +ttw +ttw +ttw +ttw +ttw +qtL +qtL +qtL +sEf +sEf +sEf +kRi +npZ +npZ +npZ +npZ +cOs +npZ +npZ +uXj +uoe +pOz +pOz +pOz +pOz +anq +qyC +rKU +agG +wGQ +pqH +qyC +qtL +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +rug +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(215,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +rug +ttw +iLQ +kbK +oFc +odJ +iLQ +ttw +ttw +ttw +ttw +qtL +qtL +qtL +sEf +sEf +xUa +iIy +fMc +taL +fMc +tpS +vkM +fMc +fBi +sEf +fMc +pOz +iEY +omg +omg +vxv +dGz +qyC +qyC +aya +qyC +qyC +qyC +qtL +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(216,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +kbK +rDl +odJ +iLQ +xMq +sEf +oEW +sEf +sEf +sEf +sEf +sEf +hXt +fMc +vYI +vUC +vYI +pWO +cPx +jiB +fMc +whm +sEf +fMc +pOz +omg +oWD +qza +cQB +lsf +rGi +prr +ltH +sEf +qtL +qtL +qtL +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(217,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +xMq +kbK +wia +odJ +odJ +xMq +kPC +woT +azl +rfw +jYD +pqo +sEf +rFe +fMc +erQ +fWL +erQ +rLt +afO +fwy +fMc +gms +sEf +pVE +pOz +omg +poV +xzk +ekg +ltH +egK +mVN +dKO +sEf +qtL +qtL +qjH +eCK +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(218,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +kbK +kbK +cqT +odJ +odJ +sEf +oEW +sEf +vtt +ila +jJH +uPN +fMc +rSB +rSB +rSB +rSB +rSB +rSB +tcA +atp +fMc +nwl +fMc +hII +sEf +dAG +clD +prr +fPz +ekg +qza +vus +sEf +qtL +qtL +opN +duI +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(219,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +iLQ +kbK +kbK +cqT +odJ +kbK +geV +xuZ +fMc +pQn +icI +izY +fMc +rSB +rSB +rSB +rSB +rSB +rSB +xwU +aft +pOz +hWf +cFz +pOz +omg +quB +gJL +chQ +cQk +prr +mok +ntY +sEf +qtL +qtL +kyk +jEG +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(220,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +iLQ +kbK +kbK +aRA +wNu +tEd +pZy +uvd +aWK +xpt +sEf +eSI +pZs +vYI +vUC +vYI +lBg +cPx +tiO +pOz +ijY +sEf +eJx +pOz +omg +ltH +prr +fYR +mKs +mHA +clD +aZb +sEf +qtL +qtL +qtL +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(221,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +iLQ +kbK +kbK +kbK +tIs +sEf +sEf +sEf +sEf +sEf +hTe +pOz +erQ +fWL +erQ +gtr +afO +dKE +pOz +whm +sEf +cFz +pOz +awc +omg +omg +sEf +hEo +sEf +omg +omg +sEf +qtL +qjH +eCK +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(222,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +iLQ +xMq +xMq +xMq +qtL +qtL +qtL +qtL +qtL +sEf +sEf +pZZ +pOz +pOz +eie +pOz +pOz +pZZ +pOz +fBi +sEf +scu +wKP +pOz +pOz +pOz +pOz +mMe +ila +pOz +jep +sEf +qtL +opN +duI +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(223,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +qtL +qtL +qtL +qtL +qtL +sEf +sEf +lGa +bal +sEf +jvx +gLY +sEf +kSI +sEf +sEf +cFz +cFz +mfi +oTK +cFz +dMf +uox +cFz +cFz +cGp +sEf +qtL +kyk +jEG +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(224,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +qtL +qtL +qtL +qtL +qtL +sEf +sEf +sEf +sEf +sEf +sEf +sEf +wrL +vVT +sEf +sEf +kSI +sEf +sEf +nCE +sEf +sEf +sEf +xhd +sEf +sEf +qtL +qtL +qtL +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(225,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +qtL +qtL +qtL +qtL +qtL +qtL +qtL +qtL +qtL +sEf +wrL +wrL +wrL +wrL +wrL +sEf +ulY +jOG +trw +sEf +vtr +jOG +kkl +sEf +qtL +qtL +qtL +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(226,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +qtL +qtL +qtL +qtL +qtL +qtL +qtL +sEf +sEf +sEf +sEf +sEf +sEf +sEf +fkn +tUO +vYh +sEf +fkn +tUO +vYh +sEf +qtL +qtL +hWh +puG +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(227,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +koW +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +qtL +qtL +qtL +qtL +qtL +qtL +qtL +qtL +qtL +qtL +sEf +kzk +cBW +mcC +sEf +ncF +cBW +eUm +sEf +qtL +qtL +dPU +sxf +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(228,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +qtL +qtL +qtL +qtL +qtL +qtL +qtL +sEf +sEf +dkx +sEf +sEf +sEf +dkx +sEf +sEf +qtL +qtL +qtL +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(229,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +qtL +qtL +sEf +sDV +qXW +euk +sEf +jpW +qXW +cFN +sEf +qtL +qtL +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(230,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +qtL +sEf +sEf +sEf +sEf +sEf +sEf +sEf +sEf +sEf +qtL +qtL +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(231,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +qtL +qtL +qtL +qtL +qtL +qtL +qtL +qtL +qtL +qtL +qtL +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(232,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +qtL +qtL +qtL +qtL +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(233,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +rug +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(234,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(235,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(236,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(237,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(238,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(239,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(240,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(241,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(242,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +rug +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(243,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(244,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(245,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(246,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(247,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(248,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(249,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(250,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(251,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(252,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(253,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(254,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} +(255,1,1) = {" +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +ttw +"} diff --git a/_maps/map_files/generic/CentCom.dmm b/_maps/map_files/generic/CentCom.dmm index 85742b5df225fa..2dc272627b38a4 100644 --- a/_maps/map_files/generic/CentCom.dmm +++ b/_maps/map_files/generic/CentCom.dmm @@ -1,8 +1,8 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( +"aaa" = ( /turf/open/space/basic, /area/space) -"ab" = ( +"aab" = ( /obj/structure/chair/sofa/bench/left{ dir = 4 }, @@ -11,24 +11,24 @@ }, /turf/open/floor/mineral/titanium, /area/centcom/syndicate_mothership/control) -"ac" = ( +"aac" = ( /obj/effect/turf_decal/siding/dark{ dir = 1 }, /obj/effect/turf_decal/siding/dark, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/supply) -"ad" = ( +"aad" = ( /turf/open/space, /area/space) -"ae" = ( +"aae" = ( /obj/structure/railing/wood{ dir = 1 }, /obj/structure/hedge, /turf/open/floor/iron/dark, /area/centcom/tdome/observation) -"af" = ( +"aaf" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 1 }, @@ -37,11 +37,11 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/kitchen) -"ag" = ( +"aag" = ( /obj/structure/hive_exit, /turf/closed/indestructible/hive, /area/station/hive/one) -"ah" = ( +"aah" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 10 }, @@ -50,7 +50,7 @@ }, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership/control) -"ai" = ( +"aai" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/siding/red, /obj/item/toy/nuke{ @@ -59,7 +59,7 @@ }, /turf/open/floor/iron/dark/textured_large, /area/centcom/syndicate_mothership/control) -"aj" = ( +"aaj" = ( /obj/effect/turf_decal/siding/dark/corner{ dir = 4 }, @@ -68,36 +68,36 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/supply) -"ak" = ( +"aak" = ( /obj/machinery/door/airlock/centcom{ name = "CentCom Logistics" }, /obj/effect/mapping_helpers/airlock/access/any/admin/general, /turf/open/floor/iron, /area/centcom/central_command_areas/admin) -"al" = ( +"aal" = ( /obj/effect/turf_decal/bot, /obj/effect/spawner/random/entertainment/money_large, /obj/structure/closet/crate/mail/full, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"am" = ( +"aam" = ( /obj/structure/fake_stairs/stone{ dir = 4 }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/hall) -"an" = ( +"aan" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/machinery/light/floor/has_bulb, /obj/structure/chair/stool/bar/directional/south, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/borbop) -"ao" = ( +"aao" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/kitchen) -"ap" = ( +"aap" = ( /obj/structure/sign/poster/contraband/energy_swords{ pixel_y = 32 }, @@ -105,14 +105,14 @@ /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/centcom/syndicate_mothership/control) -"aq" = ( +"aaq" = ( /obj/effect/turf_decal/siding/green/end{ dir = 4 }, /obj/structure/railing/wood, /turf/open/floor/iron/dark/small, /area/centcom/central_command_areas/botany) -"ar" = ( +"aar" = ( /obj/structure/chair/office{ dir = 8 }, @@ -120,11 +120,23 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/briefing) -"as" = ( +"aas" = ( /obj/machinery/light/directional/east, /turf/open/floor/engine/cult, /area/centcom/wizard_station) -"au" = ( +"aat" = ( +/obj/structure/table/wood, +/obj/structure/decorative/shelf/alcohol_assortment, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/machinery/light/small/directional/north, +/obj/structure/sign/painting/parting{ + pixel_y = 32 + }, +/turf/open/floor/wood/parquet, +/area/centcom/central_command_areas/retirement_home) +"aau" = ( /obj/structure/table/reinforced, /obj/item/stack/sheet/iron/fifty, /obj/item/stack/sheet/iron/fifty, @@ -142,19 +154,19 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"av" = ( +"aav" = ( /obj/machinery/light/cold/directional/south, /obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/centcom/syndicate_mothership/control) -"aw" = ( +"aaw" = ( /obj/effect/turf_decal/siding/wood{ dir = 10 }, /turf/open/floor/wood/large, /area/centcom/tdome/observation) -"ax" = ( +"aax" = ( /obj/effect/turf_decal/siding/dark{ dir = 6 }, @@ -165,11 +177,11 @@ dir = 1 }, /area/centcom/central_command_areas/hall) -"ay" = ( +"aay" = ( /obj/structure/aquarium, /turf/open/floor/carpet/neon/simple/cyan, /area/centcom/central_command_areas/admin) -"az" = ( +"aaz" = ( /obj/effect/turf_decal/siding/dark{ dir = 4 }, @@ -179,17 +191,17 @@ /obj/machinery/vending/imported/mothic, /turf/open/floor/iron/white/herringbone, /area/centcom/central_command_areas/kitchen) -"aA" = ( +"aaA" = ( /obj/structure/fake_stairs/stone{ dir = 1 }, /turf/open/floor/stone, /area/centcom/central_command_areas/hall) -"aB" = ( +"aaB" = ( /obj/structure/table/reinforced, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/firing_range_checkpoint_control) -"aC" = ( +"aaC" = ( /obj/effect/turf_decal/siding/dark{ dir = 1 }, @@ -197,19 +209,19 @@ /obj/machinery/oven/range, /turf/open/floor/iron/white/herringbone, /area/centcom/central_command_areas/kitchen) -"aD" = ( +"aaD" = ( /obj/structure/flora/tree/dead/style_random, /obj/structure/flora/grass/both/style_random, /obj/structure/railing, /turf/open/misc/asteroid/snow/icemoon, /area/centcom/syndicate_mothership/control) -"aE" = ( +"aaE" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/hall) -"aF" = ( +"aaF" = ( /obj/effect/turf_decal/loading_area{ dir = 4 }, @@ -219,26 +231,26 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/supply) -"aG" = ( +"aaG" = ( /obj/machinery/growing/tray, /obj/effect/turf_decal/trimline/blue, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/botany) -"aH" = ( +"aaH" = ( /obj/machinery/computer/operating{ dir = 4 }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/medical) -"aI" = ( +"aaI" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/directional/south, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/evacuation/ship) -"aJ" = ( +"aaJ" = ( /turf/closed/indestructible/fakeglass, /area/centcom/central_command_areas/borbop) -"aK" = ( +"aaK" = ( /obj/structure/table/reinforced, /obj/item/stack/package_wrap, /obj/item/crowbar/power, @@ -249,7 +261,7 @@ }, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"aL" = ( +"aaL" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 @@ -261,7 +273,7 @@ }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/evacuation/ship) -"aM" = ( +"aaM" = ( /obj/structure/hedge, /obj/machinery/light/floor/has_bulb, /obj/effect/turf_decal/siding/wood/corner{ @@ -272,10 +284,10 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin_hangout) -"aN" = ( +"aaN" = ( /turf/open/floor/carpet, /area/centcom/wizard_station) -"aO" = ( +"aaO" = ( /obj/structure/window/plasma/spawner/directional/east, /obj/structure/window/plasma/spawner/directional/north, /obj/machinery/clonepod{ @@ -284,7 +296,7 @@ }, /turf/open/floor/carpet/royalblue, /area/centcom/central_command_areas/admin) -"aP" = ( +"aaP" = ( /obj/structure/hedge, /obj/structure/railing/wood{ dir = 4 @@ -294,10 +306,10 @@ /obj/machinery/light/directional/south, /turf/open/floor/iron/white/diagonal, /area/centcom/central_command_areas/hall) -"aQ" = ( +"aaQ" = ( /turf/open/floor/iron/smooth, /area/centcom/syndicate_mothership/control) -"aR" = ( +"aaR" = ( /obj/item/kirbyplants{ icon_state = "plant-22" }, @@ -306,7 +318,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/briefing) -"aS" = ( +"aaS" = ( /obj/structure/table/reinforced/plasmarglass, /obj/item/book/manual/wiki/tcomms{ name = "How to Become a Billionaire"; @@ -315,7 +327,7 @@ /obj/machinery/light/floor/has_bulb, /turf/open/misc/grass, /area/centcom/central_command_areas/admin) -"aT" = ( +"aaT" = ( /obj/vehicle/ridden/scooter/skateboard{ dir = 4 }, @@ -323,32 +335,42 @@ /obj/machinery/light/small/directional/south, /turf/open/floor/iron, /area/centcom/wizard_station) -"aU" = ( +"aaU" = ( /obj/effect/turf_decal/siding/blue{ dir = 9 }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/medical) -"aV" = ( +"aaV" = ( /obj/structure/table/wood, /obj/item/clipboard, /obj/item/radio/headset/headset_cent, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/briefing) -"aW" = ( +"aaW" = ( /obj/structure/chair/office{ dir = 8 }, /turf/open/floor/carpet/purple, /area/centcom/central_command_areas/admin) -"aX" = ( +"aaX" = ( /obj/effect/turf_decal/trimline/green/line, /obj/structure/reagent_dispensers/watertank/high, /obj/structure/railing/wood, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/botany) -"aZ" = ( +"aaY" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 5 + }, +/obj/effect/turf_decal/siding/white, +/obj/machinery/gbp_redemption{ + pixel_y = 5 + }, +/turf/open/floor/grass, +/area/centcom/central_command_areas/retirement_yard) +"aaZ" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/structure/table/reinforced, /obj/item/storage/lockbox, @@ -356,14 +378,14 @@ /obj/machinery/light/directional/west, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/evacuation/ship) -"ba" = ( +"aba" = ( /obj/structure/railing/wood{ dir = 4 }, /obj/structure/flora/bush/flowers_yw/style_random, /turf/open/floor/grass, /area/centcom/central_command_areas/borbop) -"bb" = ( +"abb" = ( /obj/structure/table, /obj/effect/decal/cleanable/dirt, /obj/item/lighter, @@ -376,20 +398,20 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/evacuation/ship) -"bc" = ( +"abc" = ( /obj/structure/fence/cut/medium{ dir = 4 }, /turf/open/misc/asteroid/snow/icemoon, /area/centcom/syndicate_mothership/control) -"bd" = ( +"abd" = ( /obj/structure/flora/rock/pile/style_random, /obj/structure/railing{ dir = 1 }, /turf/open/misc/asteroid/snow/icemoon, /area/centcom/syndicate_mothership/control) -"be" = ( +"abe" = ( /obj/effect/turf_decal/siding/dark{ dir = 1 }, @@ -397,7 +419,7 @@ /obj/structure/sink/directional/south, /turf/open/floor/iron/white/herringbone, /area/centcom/central_command_areas/kitchen) -"bf" = ( +"abf" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 1 }, @@ -406,13 +428,13 @@ }, /turf/open/floor/iron/dark/textured_large, /area/centcom/syndicate_mothership/control) -"bg" = ( +"abg" = ( /obj/machinery/light/cold/directional/east, /obj/effect/turf_decal/siding/thinplating_new/dark, /obj/item/kirbyplants/random, /turf/open/floor/iron/dark/textured_large, /area/centcom/syndicate_mothership/control) -"bh" = ( +"abh" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 }, @@ -421,13 +443,13 @@ }, /turf/open/floor/mineral/titanium/tiled/yellow, /area/centcom/syndicate_mothership/expansion_bombthreat) -"bi" = ( +"abi" = ( /obj/effect/turf_decal/siding/wood{ dir = 5 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin_hangout) -"bj" = ( +"abj" = ( /obj/structure/table/reinforced, /obj/item/storage/box/zipties, /obj/item/crowbar/red, @@ -436,7 +458,7 @@ }, /turf/open/floor/iron, /area/centcom/central_command_areas/armory) -"bk" = ( +"abk" = ( /obj/structure/sign/painting/library{ pixel_x = -32 }, @@ -453,7 +475,7 @@ }, /turf/open/floor/carpet/red, /area/centcom/central_command_areas/admin) -"bl" = ( +"abl" = ( /obj/effect/turf_decal/siding/wood{ dir = 9 }, @@ -462,13 +484,13 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/borbop) -"bm" = ( +"abm" = ( /obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /obj/effect/turf_decal/tile/green, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"bn" = ( +"abn" = ( /obj/structure/table/wood, /obj/machinery/computer/records/security/laptop/syndie, /obj/effect/spawner/random/entertainment/drugs, @@ -478,14 +500,14 @@ }, /turf/open/floor/iron/grimy, /area/centcom/central_command_areas/admin) -"bo" = ( +"abo" = ( /obj/effect/turf_decal/siding/green{ dir = 8 }, /obj/machinery/vending/cigarette, /turf/open/floor/iron/dark/small, /area/centcom/central_command_areas/botany) -"bp" = ( +"abp" = ( /obj/structure/closet/secure_closet/ert_engi, /obj/structure/sign/directions/engineering{ pixel_y = 24 @@ -493,7 +515,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"bq" = ( +"abq" = ( /obj/machinery/light/directional/south, /obj/effect/turf_decal/siding/dark{ dir = 10 @@ -503,20 +525,20 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/supply) -"br" = ( +"abr" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 }, /obj/machinery/light/floor/has_bulb, /turf/open/floor/wood/large, /area/centcom/central_command_areas/botany) -"bs" = ( +"abs" = ( /obj/structure/railing, /turf/open/floor/catwalk_floor/iron_smooth{ initial_gas_mix = "TEMP=2.7" }, /area/centcom/syndicate_mothership) -"bt" = ( +"abt" = ( /obj/structure/sign/poster/contraband/gorlex_recruitment{ pixel_y = 32 }, @@ -524,14 +546,14 @@ dir = 8 }, /area/centcom/syndicate_mothership/control) -"bu" = ( +"abu" = ( /obj/structure/dresser, /obj/structure/noticeboard/directional/south, /turf/open/floor/iron/smooth_half{ dir = 1 }, /area/centcom/syndicate_mothership/control) -"bv" = ( +"abv" = ( /obj/effect/turf_decal/siding/wood{ dir = 9 }, @@ -541,7 +563,7 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/borbop) -"bw" = ( +"abw" = ( /obj/structure/chair/wood{ dir = 8 }, @@ -551,24 +573,24 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/kitchen) -"bx" = ( +"abx" = ( /obj/effect/turf_decal/siding/dark{ dir = 4 }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/hall) -"by" = ( +"aby" = ( /turf/open/floor/iron/smooth_edge{ dir = 4 }, /area/centcom/syndicate_mothership/control) -"bz" = ( +"abz" = ( /obj/structure/railing/wood, /obj/effect/turf_decal/trimline/green/line, /obj/machinery/composters, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/botany) -"bA" = ( +"abA" = ( /obj/structure/table/reinforced, /obj/item/storage/medkit/regular{ pixel_x = -7 @@ -589,7 +611,7 @@ }, /turf/open/floor/iron, /area/centcom/central_command_areas/armory) -"bB" = ( +"abB" = ( /obj/structure/table/glass/plasmaglass, /obj/item/storage/pill_bottle{ pixel_x = 8; @@ -602,18 +624,18 @@ /obj/item/storage/pill_bottle, /turf/open/floor/mineral/titanium/tiled/yellow, /area/centcom/syndicate_mothership/expansion_chemicalwarfare) -"bC" = ( +"abC" = ( /obj/effect/turf_decal/loading_area{ dir = 8 }, /obj/structure/fake_stairs/wood/directional/east, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"bD" = ( +"abD" = ( /obj/machinery/telecomms/allinone/nuclear, /turf/open/floor/circuit/red/telecomms, /area/centcom/central_command_areas/admin) -"bE" = ( +"abE" = ( /obj/effect/turf_decal/trimline/green/corner{ dir = 4 }, @@ -623,22 +645,22 @@ }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/botany) -"bF" = ( +"abF" = ( /obj/effect/turf_decal/siding/dark/end{ dir = 1 }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/admin) -"bG" = ( +"abG" = ( /obj/machinery/light/cold/directional/south, /turf/open/floor/plating, /area/centcom/syndicate_mothership/control) -"bH" = ( +"abH" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/armory) -"bI" = ( +"abI" = ( /obj/structure/closet/secure_closet/ert_com, /obj/structure/sign/directions/command{ pixel_y = 24 @@ -647,7 +669,7 @@ /obj/machinery/status_display/ai/directional/east, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"bJ" = ( +"abJ" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 }, @@ -655,11 +677,11 @@ /obj/machinery/portable_atmospherics/canister/oxygen, /turf/open/floor/plating, /area/centcom/syndicate_mothership/expansion_bombthreat) -"bK" = ( +"abK" = ( /obj/structure/centcom_teleporter/admin_offices, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin) -"bL" = ( +"abL" = ( /obj/structure/noticeboard/directional/east, /obj/effect/turf_decal/tile/brown/anticorner/contrasted{ dir = 4 @@ -667,16 +689,16 @@ /obj/structure/centcom_teleporter/cargo, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"bM" = ( +"abM" = ( /turf/open/floor/glass/reinforced, /area/centcom/central_command_areas/evacuation) -"bN" = ( +"abN" = ( /obj/effect/turf_decal/tile/neutral/opposingcorners, /obj/effect/turf_decal/tile/neutral/opposingcorners, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/centcom/central_command_areas/evacuation/ship) -"bO" = ( +"abO" = ( /obj/machinery/door/airlock/centcom{ dir = 4; name = "Ook's Streamer Den" @@ -684,14 +706,14 @@ /obj/effect/mapping_helpers/airlock/access/any/admin/captain, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin) -"bP" = ( +"abP" = ( /obj/structure/railing{ dir = 1 }, /obj/structure/cable, /turf/open/floor/catwalk_floor/iron_dark, /area/centcom/syndicate_mothership/control) -"bQ" = ( +"abQ" = ( /obj/machinery/light/floor/has_bulb, /obj/effect/landmark/prisonwarp, /obj/effect/turf_decal/siding/dark/corner{ @@ -699,7 +721,7 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/prison/cells) -"bR" = ( +"abR" = ( /obj/structure/lattice/catwalk, /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -707,7 +729,7 @@ /obj/structure/railing, /turf/open/lava/plasma/ice_moon, /area/centcom/syndicate_mothership/control) -"bS" = ( +"abS" = ( /obj/structure/bed/maint, /obj/item/bedsheet/centcom, /obj/item/pillow, @@ -719,7 +741,7 @@ dir = 1 }, /area/centcom/central_command_areas/admin) -"bT" = ( +"abT" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 }, @@ -728,17 +750,17 @@ }, /turf/open/floor/plating/icemoon, /area/centcom/syndicate_mothership/control) -"bU" = ( +"abU" = ( /obj/machinery/light/directional/south, /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/vending/boozeomat, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/briefing) -"bV" = ( +"abV" = ( /obj/structure/fence/door/opened, /turf/open/misc/asteroid/snow/icemoon, /area/centcom/syndicate_mothership/control) -"bW" = ( +"abW" = ( /obj/structure/table/wood, /obj/item/flashlight/lamp{ pixel_y = -8; @@ -751,12 +773,12 @@ /obj/item/pen/edagger, /turf/open/floor/carpet/neon/simple/black, /area/centcom/central_command_areas/admin) -"bX" = ( +"abX" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/machinery/light/floor/has_bulb, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/hall) -"bY" = ( +"abY" = ( /obj/effect/turf_decal/siding/dark{ dir = 4 }, @@ -766,16 +788,16 @@ /obj/machinery/vending/imported/tizirian, /turf/open/floor/iron/white/herringbone, /area/centcom/central_command_areas/kitchen) -"bZ" = ( +"abZ" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/machinery/vending/wardrobe/science_wardrobe, /turf/open/floor/iron/dark, /area/centcom/tdome/observation) -"ca" = ( +"aca" = ( /obj/effect/turf_decal/tile/dark/diagonal_edge, /turf/open/floor/iron/white/diagonal, /area/centcom/central_command_areas/hall) -"cb" = ( +"acb" = ( /obj/item/storage/briefcase{ pixel_x = -3; pixel_y = 3 @@ -787,18 +809,18 @@ }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/briefing) -"cc" = ( +"acc" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 }, /obj/machinery/growing/tray, /turf/open/floor/wood/large, /area/centcom/central_command_areas/botany) -"cd" = ( +"acd" = ( /obj/machinery/rnd/production/protolathe/department/science, /turf/open/floor/circuit/green, /area/centcom/central_command_areas/admin) -"ce" = ( +"ace" = ( /obj/structure/railing/wood{ dir = 1 }, @@ -806,17 +828,23 @@ /obj/effect/turf_decal/tile/dark/opposingcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/borbop) -"cg" = ( +"acf" = ( +/obj/structure/chair/sofa/fancy/right{ + dir = 1 + }, +/turf/open/floor/wood/parquet, +/area/centcom/central_command_areas/retirement_home) +"acg" = ( /turf/closed/indestructible/riveted, /area/centcom/central_command_areas/evacuation) -"ch" = ( +"ach" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/structure/railing/wood{ dir = 4 }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin_hangout) -"ci" = ( +"aci" = ( /obj/effect/turf_decal/tile/neutral/full, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 8 @@ -825,7 +853,7 @@ /obj/machinery/door/airlock/titanium/glass, /turf/open/floor/iron/dark/textured_large, /area/centcom/central_command_areas/evacuation/ship) -"cj" = ( +"acj" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -837,7 +865,7 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/evacuation/ship) -"ck" = ( +"ack" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 }, @@ -850,7 +878,7 @@ }, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership/expansion_bombthreat) -"cl" = ( +"acl" = ( /obj/structure/bed/roller, /obj/machinery/iv_drip, /obj/effect/turf_decal/tile/blue/fourcorners, @@ -860,15 +888,15 @@ }, /turf/open/floor/iron/white, /area/centcom/central_command_areas/evacuation/ship) -"cm" = ( +"acm" = ( /obj/effect/turf_decal/siding/green/corner, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/botany) -"cn" = ( +"acn" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/centcom/central_command_areas/briefing) -"co" = ( +"aco" = ( /obj/structure/railing/wood{ dir = 1 }, @@ -877,28 +905,28 @@ }, /turf/open/floor/glass/reinforced, /area/centcom/central_command_areas/admin_hangout) -"cp" = ( +"acp" = ( /obj/structure/chair/sofa/bench/left{ dir = 8 }, /turf/open/floor/mineral/titanium, /area/centcom/syndicate_mothership/control) -"cq" = ( +"acq" = ( /obj/structure/railing/wood, /turf/open/floor/glass/reinforced, /area/centcom/central_command_areas/admin_hangout) -"cr" = ( +"acr" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/evacuation/ship) -"cs" = ( +"acs" = ( /obj/machinery/modular_computer/preset/id/centcom, /turf/open/floor/carpet/royalblue, /area/centcom/central_command_areas/admin) -"ct" = ( +"act" = ( /obj/effect/turf_decal/siding/dark{ dir = 9 }, @@ -908,22 +936,25 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/hall) -"cu" = ( +"acu" = ( /obj/structure/organ_creator, /obj/machinery/light/floor/has_bulb, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/medical) -"cw" = ( +"acv" = ( +/turf/open/floor/iron/white/textured_large, +/area/centcom/central_command_areas/retirement_yard) +"acw" = ( /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood/large, /area/centcom/central_command_areas/borbop) -"cx" = ( +"acx" = ( /obj/structure/table/wood, /obj/item/storage/fancy/donut_box, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/ferry) -"cy" = ( +"acy" = ( /obj/effect/turf_decal/siding/dark/corner{ dir = 8 }, @@ -934,7 +965,7 @@ dir = 8 }, /area/centcom/central_command_areas/hall) -"cz" = ( +"acz" = ( /obj/effect/turf_decal/siding/wideplating/dark{ dir = 8 }, @@ -947,10 +978,10 @@ /obj/effect/mapping_helpers/airlock/access/all/syndicate/general, /turf/open/floor/iron/textured_large, /area/centcom/syndicate_mothership/control) -"cA" = ( +"acA" = ( /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership/expansion_bioterrorism) -"cB" = ( +"acB" = ( /obj/effect/turf_decal/siding/dark{ dir = 1 }, @@ -958,7 +989,7 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/hall) -"cC" = ( +"acC" = ( /obj/structure/sign{ name = "wall"; icon = 'monkestation/icons/turf/walls/reinforced_wall.dmi'; @@ -968,17 +999,17 @@ }, /turf/closed/indestructible/riveted, /area/centcom/central_command_areas/admin) -"cD" = ( +"acD" = ( /obj/structure/chair/pew{ dir = 8 }, /turf/open/floor/iron/dark/textured, /area/centcom/central_command_areas/arcade) -"cE" = ( +"acE" = ( /obj/structure/fake_stairs/wood/directional/north, /turf/open/floor/wood/large, /area/centcom/central_command_areas/kitchen) -"cF" = ( +"acF" = ( /obj/effect/turf_decal/siding/wood{ dir = 9 }, @@ -987,23 +1018,23 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/botany) -"cG" = ( +"acG" = ( /obj/machinery/vending/clothing, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/hall) -"cH" = ( +"acH" = ( /obj/structure/table/wood/fancy/purple, /obj/machinery/computer/records/medical/laptop, /turf/open/floor/plating/abductor, /area/centcom/central_command_areas/admin) -"cI" = ( +"acI" = ( /obj/machinery/door/airlock/centcom{ name = "Abraxis' Office" }, /obj/effect/mapping_helpers/airlock/access/any/admin/captain, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin) -"cJ" = ( +"acJ" = ( /obj/docking_port/stationary{ dir = 4; dwidth = 1; @@ -1014,13 +1045,13 @@ }, /turf/open/space/basic, /area/space) -"cK" = ( +"acK" = ( /obj/effect/turf_decal/siding/blue{ dir = 4 }, /turf/open/floor/iron/dark/diagonal, /area/centcom/central_command_areas/medical) -"cL" = ( +"acL" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/siding/red{ dir = 8 @@ -1028,27 +1059,27 @@ /obj/item/storage/fancy/donut_box, /turf/open/floor/iron/dark/textured_large, /area/centcom/syndicate_mothership/control) -"cM" = ( +"acM" = ( /obj/structure/chair/sofa/middle/brown{ dir = 4 }, /turf/open/floor/carpet, /area/centcom/central_command_areas/admin) -"cN" = ( +"acN" = ( /obj/machinery/light/floor/has_bulb, /obj/effect/landmark/prisonwarp, /obj/effect/turf_decal/siding/dark/corner, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/prison/cells) -"cO" = ( +"acO" = ( /obj/structure/statue/uranium/nuke, /turf/open/misc/asteroid/snow/icemoon, /area/centcom/syndicate_mothership/control) -"cP" = ( +"acP" = ( /obj/structure/window/reinforced/survival_pod/spawner/directional/north, /turf/open/floor/plating, /area/centcom/central_command_areas/evacuation/ship) -"cQ" = ( +"acQ" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 }, @@ -1059,20 +1090,20 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/borbop) -"cR" = ( +"acR" = ( /obj/effect/turf_decal/siding/blue{ dir = 10 }, /turf/open/floor/iron/dark/diagonal, /area/centcom/central_command_areas/medical) -"cS" = ( +"acS" = ( /obj/structure/railing/wood{ dir = 8 }, /obj/structure/flora/bush/fullgrass/style_random, /turf/open/floor/grass, /area/centcom/central_command_areas/hall) -"cT" = ( +"acT" = ( /obj/machinery/power/port_gen/pacman, /obj/structure/cable, /obj/effect/decal/cleanable/dirt, @@ -1081,7 +1112,7 @@ }, /turf/open/floor/iron/smooth_large, /area/centcom/central_command_areas/evacuation/ship) -"cU" = ( +"acU" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 }, @@ -1091,7 +1122,7 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/borbop) -"cV" = ( +"acV" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 }, @@ -1105,25 +1136,25 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/borbop) -"cW" = ( +"acW" = ( /obj/effect/gibspawner/human/bodypartless, /obj/structure/fans/tiny/invisible, /turf/open/floor/iron, /area/centcom/central_command_areas/admin) -"cX" = ( +"acX" = ( /turf/open/floor/mineral/plastitanium/red, /area/centcom/syndicate_mothership/expansion_bioterrorism) -"cY" = ( +"acY" = ( /obj/structure/fake_stairs/wood/directional/east, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin_hangout) -"cZ" = ( +"acZ" = ( /obj/structure/chair/wood/wings{ dir = 8 }, /turf/open/floor/wood, /area/centcom/wizard_station) -"da" = ( +"ada" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 4 }, @@ -1139,7 +1170,7 @@ }, /turf/open/floor/wood/parquet, /area/centcom/central_command_areas/borbop) -"db" = ( +"adb" = ( /obj/structure/table/wood, /obj/item/folder/red, /obj/item/lighter, @@ -1147,44 +1178,44 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/briefing) -"dc" = ( +"adc" = ( /obj/machinery/door/window/right/directional/west, /obj/machinery/light/directional/north, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/firing_range) -"dd" = ( +"add" = ( /obj/structure/reagent_dispensers/watertank, /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"de" = ( +"ade" = ( /obj/effect/landmark/start/new_player, /turf/closed/indestructible/start_area, /area/misc/start) -"df" = ( +"adf" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/machinery/vending/wardrobe/hydro_wardrobe, /obj/machinery/light/floor/has_bulb, /turf/open/floor/iron/dark, /area/centcom/tdome/observation) -"dg" = ( +"adg" = ( /obj/machinery/atmospherics/components/trinary/mixer, /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 4 }, /turf/open/floor/mineral/plastitanium/red, /area/centcom/syndicate_mothership/expansion_bombthreat) -"dh" = ( +"adh" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/machinery/light/floor/has_bulb, /turf/open/floor/iron/dark, /area/centcom/tdome/observation) -"di" = ( +"adi" = ( /turf/open/floor/iron/stairs/old, /area/centcom/syndicate_mothership/control) -"dj" = ( +"adj" = ( /obj/effect/turf_decal/siding/wideplating/dark{ dir = 8 }, @@ -1192,7 +1223,7 @@ /obj/effect/landmark/start/nukeop, /turf/open/floor/wood/tile, /area/centcom/syndicate_mothership/control) -"dk" = ( +"adk" = ( /obj/structure/table/reinforced/plastitaniumglass{ name = "Andrea's Desk" }, @@ -1200,10 +1231,10 @@ /obj/item/pen/fourcolor, /turf/open/floor/carpet/royalblue, /area/centcom/central_command_areas/admin) -"dl" = ( +"adl" = ( /turf/closed/indestructible/fakeglass, /area/centcom/central_command_areas/medical) -"dm" = ( +"adm" = ( /obj/structure/window/reinforced/survival_pod/spawner/directional/south{ name = "Tinted Window"; opacity = 1 @@ -1249,25 +1280,25 @@ }, /turf/open/floor/mineral/plastitanium/red, /area/centcom/syndicate_mothership/expansion_bombthreat) -"dn" = ( +"adn" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/stone, /area/centcom/central_command_areas/evacuation/ship) -"do" = ( +"ado" = ( /obj/structure/chair/office{ dir = 4 }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/supply) -"dp" = ( +"adp" = ( /obj/structure/cable, /turf/open/floor/iron/smooth, /area/centcom/syndicate_mothership/control) -"dq" = ( +"adq" = ( /obj/structure/railing/wood{ dir = 1 }, @@ -1275,7 +1306,7 @@ /obj/structure/table/wood/fancy/black, /turf/open/floor/wood/parquet, /area/centcom/central_command_areas/borbop) -"dr" = ( +"adr" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 8 }, @@ -1291,19 +1322,26 @@ }, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership/control) -"ds" = ( +"ads" = ( /obj/structure/alien_tank/filled{ desc = "A black slime creature swims around in the fluids."; name = "Bio Creature Tank" }, /turf/open/floor/mineral/titanium/tiled/white, /area/centcom/central_command_areas/admin) -"dt" = ( +"adt" = ( /obj/structure/window/reinforced/tinted/frosted, /obj/structure/closet/mini_fridge, /turf/open/floor/iron/dark/small, /area/centcom/central_command_areas/admin) -"dv" = ( +"adu" = ( +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/structure/flora/biolumi/mine, +/turf/open/floor/grass, +/area/centcom/central_command_areas/retirement_yard) +"adv" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 8 }, @@ -1313,7 +1351,7 @@ dir = 4 }, /area/centcom/central_command_areas/evacuation/ship) -"dw" = ( +"adw" = ( /obj/effect/turf_decal/siding/dark{ dir = 10 }, @@ -1321,17 +1359,17 @@ /obj/effect/turf_decal/tile/orange/diagonal_edge, /turf/open/floor/iron/white/diagonal, /area/centcom/central_command_areas/hall) -"dx" = ( +"adx" = ( /obj/machinery/light/directional/east, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/ferry) -"dy" = ( +"ady" = ( /obj/effect/turf_decal/bot, /obj/effect/spawner/random/structure/crate_loot, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"dz" = ( +"adz" = ( /obj/effect/turf_decal/trimline/green/corner{ dir = 8 }, @@ -1341,7 +1379,7 @@ }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/botany) -"dA" = ( +"adA" = ( /obj/structure/railing/wood{ dir = 1 }, @@ -1351,20 +1389,20 @@ /obj/structure/flora/bush/flowers_yw/style_random, /turf/open/floor/grass, /area/centcom/central_command_areas/borbop) -"dB" = ( +"adB" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 }, /obj/machinery/portable_atmospherics/canister/plasma, /turf/open/floor/plating, /area/centcom/syndicate_mothership/expansion_bombthreat) -"dC" = ( +"adC" = ( /obj/machinery/modular_computer/preset/id/centcom{ dir = 8 }, /turf/open/floor/carpet/purple, /area/centcom/central_command_areas/admin) -"dD" = ( +"adD" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 }, @@ -1373,31 +1411,31 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin_hangout) -"dE" = ( +"adE" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/curtain/cloth/fancy, /turf/open/indestructible/event/plating, /area/centcom/central_command_areas/kitchen) -"dF" = ( +"adF" = ( /obj/structure/table/reinforced, /obj/item/syndicatedetonator{ desc = "This gaudy button can be used to instantly detonate syndicate bombs that have been activated on the station. It is also fun to press." }, /turf/open/floor/carpet, /area/centcom/syndicate_mothership/control) -"dG" = ( +"adG" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/machinery/light/directional/south, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/ghost_spawn) -"dH" = ( +"adH" = ( /obj/effect/turf_decal/stripes/line{ dir = 5 }, /obj/structure/tank_dispenser, /turf/open/floor/mineral/titanium/tiled/yellow, /area/centcom/syndicate_mothership/expansion_bombthreat) -"dI" = ( +"adI" = ( /obj/structure/closet/crate/freezer{ name = "pantry crate" }, @@ -1429,7 +1467,7 @@ /obj/item/food/grown/coffee, /turf/open/floor/plastic, /area/centcom/syndicate_mothership/expansion_fridgerummage) -"dJ" = ( +"adJ" = ( /obj/structure/punching_bag, /obj/effect/turf_decal/siding/dark{ dir = 9 @@ -1437,7 +1475,7 @@ /obj/effect/turf_decal/siding/dark/corner, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/hall) -"dK" = ( +"adK" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/turf_decal/siding/wood/corner, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ @@ -1447,7 +1485,7 @@ /obj/machinery/door/airlock/highsecurity, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/evacuation/ship) -"dL" = ( +"adL" = ( /obj/structure/chair/sofa/bench{ dir = 4 }, @@ -1458,28 +1496,38 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, /turf/open/floor/catwalk_floor/titanium, /area/centcom/syndicate_mothership/control) -"dN" = ( +"adM" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/light_switch/directional/west, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/wood/parquet, +/area/centcom/central_command_areas/retirement_home) +"adN" = ( /obj/machinery/door/airlock{ icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; name = "Game Room" }, /turf/open/floor/engine/cult, /area/centcom/wizard_station) -"dO" = ( +"adO" = ( /obj/structure/railing/wood{ dir = 4 }, /turf/open/floor/glass/reinforced, /area/centcom/central_command_areas/hall) -"dP" = ( +"adP" = ( /obj/machinery/dna_scannernew, /turf/open/floor/circuit, /area/centcom/central_command_areas/admin) -"dQ" = ( +"adQ" = ( /obj/machinery/light/floor/has_bulb, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin) -"dR" = ( +"adR" = ( /obj/structure/punching_bag, /obj/effect/turf_decal/siding/dark{ dir = 1 @@ -1487,14 +1535,21 @@ /obj/effect/turf_decal/siding/dark, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/hall) -"dS" = ( +"adS" = ( /turf/closed/indestructible/riveted, /area/centcom/central_command_areas/botany) -"dT" = ( +"adT" = ( /obj/effect/turf_decal/siding/dark, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/admin_hangout) -"dV" = ( +"adU" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/punching_bag, +/turf/open/floor/wood/parquet, +/area/centcom/central_command_areas/retirement_home) +"adV" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 }, @@ -1507,7 +1562,7 @@ }, /turf/open/floor/carpet/purple, /area/centcom/central_command_areas/admin) -"dW" = ( +"adW" = ( /obj/item/radio{ pixel_x = 5; pixel_y = 5 @@ -1522,37 +1577,37 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/briefing) -"dX" = ( +"adX" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, /obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, /turf/open/floor/mineral/titanium, /area/centcom/syndicate_mothership/control) -"dY" = ( +"adY" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/structure/chair/stool/bar/directional/south, /obj/effect/landmark/navigate_destination/centcom/borbop, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/borbop) -"dZ" = ( +"adZ" = ( /obj/effect/turf_decal/siding/dark{ dir = 5 }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/hall) -"ea" = ( +"aea" = ( /obj/structure/railing/wrestling, /turf/open/floor/iron/smooth_large{ icon = 'goon/icons/turf/floors.dmi'; icon_state = "boxing" }, /area/centcom/central_command_areas/hall) -"eb" = ( +"aeb" = ( /obj/structure/sink/kitchen/directional/south, /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/centcom/syndicate_mothership/control) -"ec" = ( +"aec" = ( /obj/structure/railing{ dir = 4; layer = 4.1 @@ -1567,7 +1622,7 @@ }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/evacuation/ship) -"ed" = ( +"aed" = ( /obj/effect/turf_decal/siding/dark{ dir = 5 }, @@ -1576,24 +1631,24 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/borbop) -"ee" = ( +"aee" = ( /obj/machinery/light/floor/has_bulb, /obj/effect/turf_decal/siding/wood{ dir = 4 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/hall) -"ef" = ( +"aef" = ( /obj/structure/fence/cut/medium, /turf/open/misc/asteroid/snow/airless, /area/centcom/syndicate_mothership) -"eg" = ( +"aeg" = ( /obj/structure/table/wood, /obj/item/reagent_containers/cup/rag, /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/centcom/syndicate_mothership/control) -"eh" = ( +"aeh" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 }, @@ -1601,7 +1656,7 @@ /obj/item/seeds/pumpkin, /turf/open/floor/carpet/red, /area/centcom/central_command_areas/admin) -"ei" = ( +"aei" = ( /obj/machinery/griddle, /obj/structure/sign/poster/contraband/syndiemoth{ pixel_y = 32 @@ -1609,7 +1664,7 @@ /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/centcom/syndicate_mothership/control) -"ej" = ( +"aej" = ( /obj/machinery/light/floor/has_bulb, /obj/effect/turf_decal/siding/dark, /obj/effect/turf_decal/siding/dark{ @@ -1617,7 +1672,7 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/borbop) -"ek" = ( +"aek" = ( /obj/effect/turf_decal/siding/wood, /obj/structure/chair/wood{ dir = 8 @@ -1627,15 +1682,15 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/borbop) -"el" = ( +"ael" = ( /obj/structure/chair/comfy/teal, /turf/open/floor/glass/reinforced/plasma, /area/centcom/central_command_areas/admin) -"em" = ( +"aem" = ( /obj/machinery/chem_mass_spec, /turf/open/floor/mineral/titanium/tiled/yellow, /area/centcom/syndicate_mothership/expansion_chemicalwarfare) -"en" = ( +"aen" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 8 }, @@ -1645,41 +1700,41 @@ }, /turf/open/floor/mineral/plastitanium/red, /area/centcom/syndicate_mothership/expansion_bombthreat) -"eo" = ( +"aeo" = ( /obj/structure/table/reinforced/titaniumglass, /obj/machinery/computer/security/wooden_tv, /turf/open/floor/glass/reinforced, /area/centcom/central_command_areas/admin) -"ep" = ( +"aep" = ( /obj/machinery/power/shuttle_engine/heater, /obj/effect/decal/cleanable/dirt, /turf/open/floor/catwalk_floor, /area/centcom/central_command_areas/evacuation/ship) -"eq" = ( +"aeq" = ( /obj/effect/turf_decal/siding/dark{ dir = 10 }, /turf/open/floor/carpet, /area/centcom/central_command_areas/hall) -"er" = ( +"aer" = ( /obj/structure/filingcabinet/medical, /turf/open/floor/carpet, /area/centcom/syndicate_mothership/control) -"es" = ( +"aes" = ( /obj/structure/table/reinforced/plastitaniumglass, /obj/machinery/chem_dispenser/drinks/beer/fullupgrade{ dir = 8 }, /turf/open/floor/carpet/executive, /area/centcom/central_command_areas/admin) -"et" = ( +"aet" = ( /obj/effect/turf_decal/siding/green{ dir = 6 }, /obj/structure/hedge, /turf/open/floor/iron/dark/small, /area/centcom/central_command_areas/botany) -"eu" = ( +"aeu" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 8 }, @@ -1688,26 +1743,26 @@ }, /turf/open/floor/mineral/plastitanium/red, /area/centcom/syndicate_mothership/expansion_bombthreat) -"ev" = ( +"aev" = ( /obj/effect/turf_decal/siding/wood{ dir = 10 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin_hangout) -"ew" = ( +"aew" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /turf/open/floor/iron/dark, /area/centcom/tdome/observation) -"ex" = ( +"aex" = ( /obj/machinery/growing/tray, /turf/open/floor/mineral/titanium/tiled, /area/centcom/syndicate_mothership/expansion_bioterrorism) -"ey" = ( +"aey" = ( /obj/structure/flora/bush/leavy, /obj/effect/decal/cleanable/cobweb, /turf/open/floor/grass, /area/centcom/central_command_areas/evacuation/ship) -"ez" = ( +"aez" = ( /obj/machinery/button/door/directional/south{ desc = "Looks like the elevator is under maintenance.."; name = "Elevator Button" @@ -1716,7 +1771,7 @@ dir = 1 }, /area/centcom/syndicate_mothership/control) -"eA" = ( +"aeA" = ( /obj/effect/turf_decal/siding/dark{ dir = 1 }, @@ -1726,7 +1781,7 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/admin) -"eB" = ( +"aeB" = ( /obj/structure/sign/painting/library{ pixel_x = 32 }, @@ -1734,18 +1789,18 @@ /obj/machinery/light/floor/has_bulb, /turf/open/floor/carpet/green, /area/centcom/central_command_areas/admin) -"eC" = ( +"aeC" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/structure/table/reinforced, /obj/machinery/chem_dispenser/drinks, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/borbop) -"eD" = ( +"aeD" = ( /obj/effect/gibspawner/human/bodypartless, /obj/structure/fans/tiny/invisible, /turf/open/floor/plating, /area/centcom/central_command_areas/admin) -"eE" = ( +"aeE" = ( /obj/structure/table/reinforced, /obj/item/toy/figure/dsquad{ pixel_x = -3; @@ -1755,23 +1810,23 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/briefing) -"eF" = ( +"aeF" = ( /turf/open/floor/iron/grimy, /area/centcom/central_command_areas/briefing) -"eG" = ( +"aeG" = ( /obj/machinery/light/floor/has_bulb, /obj/effect/turf_decal/siding/wood{ dir = 6 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin_hangout) -"eH" = ( +"aeH" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, /turf/open/floor/engine/vacuum, /area/centcom/syndicate_mothership/expansion_bombthreat) -"eI" = ( +"aeI" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/structure/railing/wood, /obj/structure/railing/wood{ @@ -1779,44 +1834,44 @@ }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin_hangout) -"eJ" = ( +"aeJ" = ( /obj/structure/flora/tree/pine/style_random, /obj/structure/flora/grass/both/style_random, /turf/open/misc/asteroid/snow/airless, /area/centcom/syndicate_mothership) -"eK" = ( +"aeK" = ( /obj/effect/turf_decal/siding/wood{ dir = 5 }, /obj/structure/hedge, /turf/open/floor/wood/large, /area/centcom/central_command_areas/medical) -"eL" = ( +"aeL" = ( /obj/structure/destructible/cult/item_dispenser/altar{ desc = "An altar dedicated to the Wizard Federation." }, /obj/item/knife/ritual, /turf/open/floor/engine/cult, /area/centcom/wizard_station) -"eM" = ( +"aeM" = ( /obj/structure/cable, /turf/open/floor/catwalk_floor/iron_smooth, /area/centcom/syndicate_mothership/control) -"eN" = ( +"aeN" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, /obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/hidden/layer2, /turf/open/floor/catwalk_floor/iron_dark, /area/centcom/syndicate_mothership/control) -"eO" = ( +"aeO" = ( /obj/effect/turf_decal/siding/thinplating_new/dark, /turf/open/floor/mineral/plastitanium/red, /area/centcom/syndicate_mothership/expansion_bioterrorism) -"eP" = ( +"aeP" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/curtain/cloth/fancy, /turf/open/indestructible/event/plating, /area/centcom/central_command_areas/borbop) -"eQ" = ( +"aeQ" = ( /mob/living/basic/bot/medbot/mysterious{ desc = "If you don't accidentally blow yourself up from time to time you're not really a wizard anyway."; faction = list("neutral","silicon","creature"); @@ -1824,13 +1879,13 @@ }, /turf/open/floor/engine/cult, /area/centcom/wizard_station) -"eR" = ( +"aeR" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 }, /turf/open/floor/stone, /area/centcom/central_command_areas/evacuation/ship) -"eS" = ( +"aeS" = ( /obj/effect/turf_decal/siding/dark{ dir = 8 }, @@ -1841,86 +1896,86 @@ dir = 8 }, /area/centcom/central_command_areas/hall) -"eT" = ( +"aeT" = ( /obj/structure/flora/tree/jungle/style_3, /turf/open/floor/grass, /area/centcom/central_command_areas/hall) -"eU" = ( +"aeU" = ( /obj/structure/table/wood, /obj/item/paper_bin, /obj/item/pen/fourcolor, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin) -"eV" = ( +"aeV" = ( /obj/structure/table/reinforced, /obj/item/book/manual/wiki/security_space_law, /obj/item/taperecorder, /turf/open/floor/iron/grimy, /area/centcom/central_command_areas/briefing) -"eW" = ( +"aeW" = ( /obj/structure/closet/secure_closet, /turf/open/floor/mineral/titanium/white, /area/centcom/central_command_areas/admin) -"eX" = ( +"aeX" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 4 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood/tile, /area/centcom/central_command_areas/evacuation/ship) -"eY" = ( +"aeY" = ( /obj/machinery/airalarm/directional/east, /obj/structure/filingcabinet/filingcabinet, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/ferry) -"eZ" = ( +"aeZ" = ( /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership/expansion_bombthreat) -"fa" = ( +"afa" = ( /obj/machinery/status_display/evac/directional/south, /obj/effect/turf_decal/tile/green{ dir = 8 }, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"fb" = ( +"afb" = ( /obj/effect/turf_decal/siding/wood, /obj/machinery/light/directional/south, /turf/open/floor/wood/parquet, /area/centcom/central_command_areas/arcade) -"fc" = ( +"afc" = ( /turf/open/floor/wood, /area/centcom/wizard_station) -"fd" = ( +"afd" = ( /obj/machinery/light/directional/north, /turf/open/floor/engine/cult, /area/centcom/wizard_station) -"fe" = ( +"afe" = ( /obj/effect/turf_decal/siding/wood{ dir = 10 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/borbop) -"ff" = ( +"aff" = ( /obj/structure/table/wood, /obj/machinery/recharger, /obj/machinery/status_display/evac/directional/east, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/ferry) -"fg" = ( +"afg" = ( /obj/machinery/stasis{ dir = 4 }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/medical) -"fh" = ( +"afh" = ( /obj/structure/flora/bush/large/style_3, /obj/machinery/light/floor/has_bulb, /turf/open/floor/grass, /area/centcom/central_command_areas/botany) -"fi" = ( +"afi" = ( /obj/structure/chair/office{ dir = 8 }, @@ -1929,19 +1984,19 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/briefing) -"fj" = ( +"afj" = ( /obj/structure/extinguisher_cabinet/directional/east, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/armory) -"fk" = ( +"afk" = ( /obj/effect/light_emitter{ set_cap = 1; set_luminosity = 4 }, /turf/open/misc/asteroid/snow/icemoon, /area/centcom/syndicate_mothership/control) -"fl" = ( +"afl" = ( /obj/machinery/door/airlock/centcom{ dir = 4; name = "Softie's Office" @@ -1949,14 +2004,14 @@ /obj/effect/mapping_helpers/airlock/access/any/admin/captain, /turf/open/floor/carpet/purple, /area/centcom/central_command_areas/admin) -"fm" = ( +"afm" = ( /obj/machinery/door/airlock/centcom{ name = "Raziel's Theatre" }, /obj/effect/mapping_helpers/airlock/access/any/admin/captain, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin) -"fn" = ( +"afn" = ( /obj/effect/turf_decal/siding/dark{ dir = 8 }, @@ -1969,7 +2024,7 @@ dir = 8 }, /area/centcom/central_command_areas/hall) -"fo" = ( +"afo" = ( /obj/structure/table/wood, /obj/machinery/chem_dispenser/drinks/beer{ dir = 1 @@ -1980,12 +2035,12 @@ /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/centcom/syndicate_mothership/control) -"fp" = ( +"afp" = ( /obj/structure/fake_stairs/wood/directional/south, /obj/machinery/light/floor/has_bulb, /turf/open/floor/wood/large, /area/centcom/central_command_areas/hall) -"fq" = ( +"afq" = ( /obj/structure/railing/wood, /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -1993,15 +2048,25 @@ /obj/structure/table/wood/fancy/black, /turf/open/floor/wood/parquet, /area/centcom/central_command_areas/borbop) -"fs" = ( +"afr" = ( +/obj/effect/turf_decal/weather/dirt, +/obj/structure/railing/wooden_fencing{ + pixel_y = 16 + }, +/turf/open/floor/grass, +/area/centcom/central_command_areas/retirement_yard) +"afs" = ( /obj/structure/flora/tree/pine/style_random, /turf/open/misc/asteroid/snow/airless, /area/centcom/syndicate_mothership) -"fu" = ( +"aft" = ( +/turf/closed/indestructible/riveted, +/area/centcom/central_command_areas/retirement_yard) +"afu" = ( /obj/structure/hedge, /turf/open/floor/iron/dark, /area/centcom/tdome/observation) -"fv" = ( +"afv" = ( /obj/effect/turf_decal/siding/dark{ dir = 8 }, @@ -2011,18 +2076,18 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/admin) -"fw" = ( +"afw" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"fx" = ( +"afx" = ( /obj/effect/light_emitter{ set_cap = 1; set_luminosity = 4 }, /turf/open/misc/asteroid/snow/airless, /area/centcom/syndicate_mothership) -"fy" = ( +"afy" = ( /obj/structure/signpost/salvation{ icon = 'icons/obj/structures.dmi'; icon_state = "ladder10"; @@ -2033,40 +2098,50 @@ planetary_atmos = 0 }, /area/awaymission/errorroom) -"fz" = ( +"afz" = ( /obj/machinery/power/smes/magical, /obj/structure/sign/warning/electric_shock/directional/east, /obj/machinery/light/small/directional/north, /turf/open/floor/iron/smooth_large, /area/centcom/central_command_areas/evacuation/ship) -"fA" = ( +"afA" = ( /turf/open/floor/iron/white/side, /area/centcom/central_command_areas/admin) -"fB" = ( +"afB" = ( /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin_hangout) -"fD" = ( +"afC" = ( +/turf/open/floor/grass, +/area/centcom/central_command_areas/retirement_yard) +"afD" = ( /obj/machinery/light/neon_lining{ icon_state = "pink2_1" }, /turf/open/floor/carpet/black, /area/centcom/central_command_areas/borbop) -"fE" = ( +"afE" = ( /obj/machinery/stasis, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/medical) -"fF" = ( +"afF" = ( /obj/effect/turf_decal/siding/wood/corner, /turf/open/floor/wood/large, /area/centcom/central_command_areas/medical) -"fH" = ( +"afG" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 8 + }, +/obj/structure/flora/bush/fullgrass/style_2, +/turf/open/floor/grass, +/area/centcom/central_command_areas/retirement_yard) +"afH" = ( /obj/machinery/light/neon_lining{ dir = 1; icon_state = "pink2_1" }, /turf/open/floor/carpet/black, /area/centcom/central_command_areas/borbop) -"fI" = ( +"afI" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -2074,19 +2149,19 @@ }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/evacuation/ship) -"fJ" = ( +"afJ" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 }, /turf/open/floor/wood/parquet, /area/centcom/central_command_areas/borbop) -"fK" = ( +"afK" = ( /obj/structure/table/wood, /obj/item/retractor, /obj/machinery/light/directional/north, /turf/open/floor/engine/cult, /area/centcom/wizard_station) -"fL" = ( +"afL" = ( /obj/effect/turf_decal/siding/wideplating/dark, /obj/effect/turf_decal/siding/wideplating/dark{ dir = 1 @@ -2097,7 +2172,7 @@ dir = 4 }, /area/centcom/syndicate_mothership/expansion_chemicalwarfare) -"fM" = ( +"afM" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, @@ -2106,7 +2181,7 @@ }, /turf/open/floor/mineral/titanium/tiled/yellow, /area/centcom/syndicate_mothership/expansion_bombthreat) -"fN" = ( +"afN" = ( /obj/structure/chair/sofa/bench/left{ dir = 4 }, @@ -2115,34 +2190,34 @@ }, /turf/open/floor/mineral/titanium, /area/centcom/syndicate_mothership/control) -"fO" = ( +"afO" = ( /obj/machinery/door/poddoor/shutters/indestructible/preopen{ id = "CC_firing_range_checkpoint" }, /obj/machinery/light/floor/has_bulb, /turf/open/floor/iron/dark, /area/centcom/tdome/observation) -"fP" = ( +"afP" = ( /obj/structure/table/wood/fancy, /obj/item/storage/photo_album, /obj/machinery/light/directional/south, /turf/open/floor/carpet, /area/centcom/wizard_station) -"fQ" = ( +"afQ" = ( /obj/effect/turf_decal/siding/dark, /obj/effect/turf_decal/siding/dark{ dir = 1 }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/supply) -"fR" = ( +"afR" = ( /obj/item/food/egg/rainbow{ desc = "I bet you think you're pretty clever... well you are."; name = "easter egg" }, /turf/open/space/basic, /area/space) -"fS" = ( +"afS" = ( /obj/structure/chair/wood{ dir = 4 }, @@ -2151,29 +2226,29 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/kitchen) -"fT" = ( +"afT" = ( /obj/structure/lattice, /obj/structure/window/reinforced/spawner/directional/north, /turf/open/space/basic, /area/space/nearstation) -"fU" = ( +"afU" = ( /obj/machinery/modular_computer/preset/id/centcom, /turf/open/floor/iron/grimy, /area/centcom/central_command_areas/admin) -"fV" = ( +"afV" = ( /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/evacuation/ship) -"fW" = ( +"afW" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 8 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/catwalk_floor, /area/centcom/central_command_areas/evacuation/ship) -"fX" = ( +"afX" = ( /turf/closed/indestructible/start_area, /area/misc/start) -"fY" = ( +"afY" = ( /obj/effect/turf_decal/siding/dark{ dir = 4 }, @@ -2183,23 +2258,27 @@ /obj/machinery/light/directional/east, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/hall) -"ga" = ( +"afZ" = ( +/obj/structure/closet/secure_closet/freezer/fridge/all_access, +/turf/open/floor/iron/terracotta/small, +/area/centcom/central_command_areas/retirement_home) +"aga" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple, /turf/closed/indestructible/syndicate, /area/centcom/syndicate_mothership/expansion_bioterrorism) -"gb" = ( +"agb" = ( /obj/machinery/door/airlock{ icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; name = "Cockpit" }, /turf/open/floor/engine/cult, /area/centcom/wizard_station) -"gc" = ( +"agc" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/machinery/vending/wardrobe/bar_wardrobe, /turf/open/floor/iron/dark, /area/centcom/tdome/observation) -"gd" = ( +"agd" = ( /obj/machinery/door/airlock/highsecurity, /obj/effect/turf_decal/tile/neutral/full, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ @@ -2208,28 +2287,28 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/textured_large, /area/centcom/central_command_areas/evacuation/ship) -"ge" = ( +"age" = ( /obj/structure/cable, /obj/machinery/door/airlock/maintenance_hatch, /turf/open/floor/catwalk_floor, /area/centcom/central_command_areas/evacuation/ship) -"gf" = ( +"agf" = ( /obj/structure/table/wood, /obj/machinery/computer/records/security/laptop, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin) -"gg" = ( +"agg" = ( /obj/machinery/light/small/maintenance/directional/east, /obj/structure/window/reinforced/tinted, /turf/open/floor/iron/grimy, /area/centcom/central_command_areas/admin) -"gh" = ( +"agh" = ( /obj/structure/sign/poster/contraband/revolver{ pixel_y = -32 }, /turf/open/floor/mineral/titanium, /area/centcom/syndicate_mothership/control) -"gi" = ( +"agi" = ( /obj/docking_port/stationary{ dir = 4; dwidth = 1; @@ -2240,7 +2319,7 @@ }, /turf/open/space/basic, /area/space) -"gj" = ( +"agj" = ( /obj/item/trash/boritos{ pixel_y = -9 }, @@ -2253,7 +2332,7 @@ /obj/effect/decal/cleanable/wrapping, /turf/open/floor/grass, /area/centcom/central_command_areas/evacuation/ship) -"gk" = ( +"agk" = ( /obj/structure/hedge, /obj/machinery/light/floor/has_bulb, /obj/effect/turf_decal/siding/wood{ @@ -2264,12 +2343,12 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/kitchen) -"gl" = ( +"agl" = ( /obj/structure/hedge, /obj/machinery/light/floor/has_bulb, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/medical) -"gm" = ( +"agm" = ( /obj/effect/turf_decal/siding/thinplating_new/dark, /obj/structure/closet/syndicate/personal, /obj/machinery/camera/autoname/directional/west{ @@ -2279,21 +2358,21 @@ /obj/effect/turf_decal/tile/red/full, /turf/open/floor/iron/dark/textured_half, /area/centcom/syndicate_mothership/control) -"gn" = ( +"agn" = ( /turf/closed/indestructible/sandstone, /area/centcom/central_command_areas/admin) -"go" = ( +"ago" = ( /obj/structure/closet, /turf/open/floor/circuit, /area/centcom/central_command_areas/admin) -"gp" = ( +"agp" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 8 }, /obj/machinery/atmospherics/components/unary/portables_connector/visible, /turf/open/floor/mineral/plastitanium/red, /area/centcom/syndicate_mothership/expansion_bombthreat) -"gq" = ( +"agq" = ( /obj/structure/railing{ dir = 8; layer = 4.1 @@ -2307,12 +2386,12 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/supply) -"gr" = ( +"agr" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/structure/chair/stool/bar/directional/north, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/kitchen) -"gs" = ( +"ags" = ( /obj/structure/railing/wood, /obj/structure/table/reinforced, /obj/item/toy/sword, @@ -2342,20 +2421,20 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/hall) -"gt" = ( +"agt" = ( /obj/effect/landmark/mafia_game_area, /turf/open/space/basic, /area/space) -"gu" = ( +"agu" = ( /turf/closed/indestructible/splashscreen, /area/misc/start) -"gv" = ( +"agv" = ( /obj/structure/chair/sofa/left{ dir = 8 }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/botany) -"gw" = ( +"agw" = ( /obj/effect/turf_decal/siding/thinplating{ dir = 1 }, @@ -2363,7 +2442,7 @@ /obj/machinery/light/cold/directional/north, /turf/open/floor/mineral/titanium/tiled/blue, /area/centcom/syndicate_mothership/control) -"gx" = ( +"agx" = ( /obj/structure/chair/sofa/corp/left{ dir = 1 }, @@ -2372,7 +2451,7 @@ }, /turf/open/floor/wood/large, /area/centcom/tdome/observation) -"gy" = ( +"agy" = ( /obj/effect/turf_decal/siding/dark, /obj/effect/turf_decal/siding/dark{ dir = 1 @@ -2380,13 +2459,13 @@ /obj/machinery/vending/wardrobe/gene_wardrobe, /turf/open/floor/iron/dark/side, /area/centcom/central_command_areas/hall) -"gz" = ( +"agz" = ( /obj/effect/turf_decal/siding/blue/corner{ dir = 8 }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/medical) -"gA" = ( +"agA" = ( /obj/effect/light_emitter{ set_cap = 1; set_luminosity = 4 @@ -2394,20 +2473,20 @@ /obj/structure/flora/rock/pile/style_random, /turf/open/misc/asteroid/snow/airless, /area/centcom/syndicate_mothership) -"gB" = ( +"agB" = ( /obj/structure/table/reinforced/plastitaniumglass{ name = "Andrea's Desk" }, /obj/machinery/computer/security/wooden_tv, /turf/open/floor/carpet/royalblue, /area/centcom/central_command_areas/admin) -"gC" = ( +"agC" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 9 }, /turf/open/misc/ice/icemoon, /area/centcom/syndicate_mothership/control) -"gD" = ( +"agD" = ( /obj/structure/table/wood, /obj/item/mod/control/pre_equipped/chrono{ desc = "It smells freshly laundered." @@ -2415,22 +2494,22 @@ /obj/structure/fans/tiny/invisible, /turf/open/floor/carpet/green, /area/centcom/central_command_areas/admin) -"gE" = ( +"agE" = ( /obj/machinery/light/floor/has_bulb, /obj/structure/flora/tree/jungle/style_3, /turf/open/floor/grass, /area/centcom/central_command_areas/admin_hangout) -"gF" = ( +"agF" = ( /obj/structure/filingcabinet/medical, /obj/machinery/status_display/ai/directional/south, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/briefing) -"gG" = ( +"agG" = ( /obj/structure/fake_stairs/wood/directional/south, /turf/open/floor/wood/large, /area/centcom/central_command_areas/hall) -"gH" = ( +"agH" = ( /obj/item/stack/cannonball, /obj/item/stack/cannonball, /obj/item/stack/cannonball, @@ -2449,14 +2528,23 @@ /obj/item/stack/cannonball, /turf/open/misc/grass, /area/centcom/central_command_areas/admin) -"gJ" = ( +"agI" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood/parquet, +/area/centcom/central_command_areas/retirement_home) +"agJ" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible, /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 4 }, /turf/open/floor/mineral/plastitanium/red, /area/centcom/syndicate_mothership/expansion_bombthreat) -"gK" = ( +"agK" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/structure/table/reinforced, /obj/item/reagent_containers/cup/glass/modglass/small{ @@ -2485,14 +2573,14 @@ }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/borbop) -"gL" = ( +"agL" = ( /turf/closed/indestructible/fakeglass, /area/centcom/central_command_areas/botany) -"gM" = ( +"agM" = ( /obj/effect/baseturf_helper/asteroid/snow, /turf/closed/indestructible/syndicate, /area/centcom/syndicate_mothership/expansion_bombthreat) -"gN" = ( +"agN" = ( /obj/effect/turf_decal/tile/dark/diagonal_edge, /obj/machinery/light/neon_lining{ icon_state = "pink2_1" @@ -2503,14 +2591,14 @@ }, /turf/open/floor/iron/white/diagonal, /area/centcom/central_command_areas/hall) -"gO" = ( +"agO" = ( /turf/closed/indestructible/riveted, /area/centcom/central_command_areas/briefing) -"gP" = ( +"agP" = ( /obj/effect/baseturf_helper/asteroid/snow, /turf/closed/indestructible/syndicate, /area/centcom/syndicate_mothership/expansion_chemicalwarfare) -"gQ" = ( +"agQ" = ( /obj/structure/chair/comfy/carp{ dir = 4 }, @@ -2519,32 +2607,32 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin_hangout) -"gR" = ( +"agR" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/machinery/light/floor/has_bulb, /obj/structure/mannequin, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/hall) -"gS" = ( +"agS" = ( /obj/structure/sign/warning/secure_area, /turf/closed/indestructible/riveted, /area/centcom/central_command_areas/ferry) -"gT" = ( +"agT" = ( /obj/structure/fake_stairs/wood/directional/west, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin_hangout) -"gU" = ( +"agU" = ( /turf/open/floor/plating/icemoon, /area/centcom/syndicate_mothership/control) -"gV" = ( +"agV" = ( /turf/closed/wall/mineral/diamond, /area/centcom/syndicate_mothership/control) -"gW" = ( +"agW" = ( /obj/structure/table/rolling, /obj/item/reagent_containers/cup/glass/bottle/juice/tomatojuice, /turf/open/floor/mineral/titanium, /area/centcom/syndicate_mothership/control) -"gX" = ( +"agX" = ( /obj/structure/table/reinforced, /obj/item/storage/lockbox/loyalty, /obj/effect/turf_decal/stripes/line{ @@ -2552,10 +2640,10 @@ }, /turf/open/floor/iron, /area/centcom/central_command_areas/armory) -"gY" = ( +"agY" = ( /turf/open/floor/iron/dark, /area/centcom/central_command_areas/evacuation) -"gZ" = ( +"agZ" = ( /obj/structure/hedge, /obj/structure/railing/wood, /obj/structure/railing/wood{ @@ -2563,20 +2651,20 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin_hangout) -"ha" = ( +"aha" = ( /obj/structure/railing/wood{ dir = 1 }, /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood/parquet, /area/centcom/central_command_areas/borbop) -"hb" = ( +"ahb" = ( /obj/structure/chair/sofa/bench/right{ dir = 4 }, /turf/open/floor/mineral/titanium, /area/centcom/syndicate_mothership/control) -"hc" = ( +"ahc" = ( /obj/structure/railing/wood{ dir = 1 }, @@ -2587,7 +2675,7 @@ /obj/effect/turf_decal/siding/wood/corner, /turf/open/floor/wood/parquet, /area/centcom/central_command_areas/borbop) -"hd" = ( +"ahd" = ( /obj/effect/turf_decal/tile/dark/diagonal_edge, /obj/machinery/light/neon_lining{ dir = 1; @@ -2595,26 +2683,26 @@ }, /turf/open/floor/iron/white/diagonal, /area/centcom/central_command_areas/hall) -"he" = ( +"ahe" = ( /obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ dir = 4 }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/briefing) -"hf" = ( +"ahf" = ( /obj/structure/flora/rock/icy/style_random{ pixel_x = -7 }, /turf/open/misc/asteroid/snow/icemoon, /area/centcom/syndicate_mothership/control) -"hg" = ( +"ahg" = ( /obj/effect/turf_decal/trimline/green/line{ dir = 9 }, /obj/machinery/vending/hydronutrients, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/botany) -"hh" = ( +"ahh" = ( /obj/structure/railing/wood, /obj/structure/railing/wood{ dir = 1 @@ -2623,7 +2711,7 @@ /obj/structure/table/reinforced, /turf/open/floor/glass/reinforced, /area/centcom/central_command_areas/admin_hangout) -"hi" = ( +"ahi" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/structure/railing/wood{ dir = 4 @@ -2631,15 +2719,15 @@ /obj/structure/railing/wood, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/hall) -"hj" = ( +"ahj" = ( /obj/machinery/light/floor/has_bulb, /turf/open/indestructible/hotelwood, /area/centcom/central_command_areas/admin) -"hk" = ( +"ahk" = ( /obj/effect/decal/remains/xeno/larva, /turf/open/floor/grass, /area/centcom/wizard_station) -"hl" = ( +"ahl" = ( /obj/machinery/modular_computer/preset/id/centcom{ dir = 1 }, @@ -2647,7 +2735,7 @@ dir = 1 }, /area/centcom/central_command_areas/admin) -"hm" = ( +"ahm" = ( /obj/effect/turf_decal/siding/blue, /obj/effect/turf_decal/siding/blue/corner{ dir = 1 @@ -2655,7 +2743,7 @@ /obj/structure/railing/wood, /turf/open/floor/iron/dark/diagonal, /area/centcom/central_command_areas/medical) -"hn" = ( +"ahn" = ( /obj/effect/turf_decal/siding/wideplating/dark, /obj/structure/chair/sofa/bench/right, /obj/structure/sign/poster/contraband/donut_corp{ @@ -2666,7 +2754,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, /turf/open/floor/stone, /area/centcom/syndicate_mothership/control) -"ho" = ( +"aho" = ( /obj/structure/table/wood, /obj/item/folder/red, /obj/item/book/manual/wiki/security_space_law, @@ -2675,7 +2763,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/briefing) -"hp" = ( +"ahp" = ( /obj/machinery/ntnet_relay{ name = "Ook's Modem"; is_operational = 0; @@ -2683,12 +2771,12 @@ }, /turf/open/misc/grass, /area/centcom/central_command_areas/admin) -"hq" = ( +"ahq" = ( /obj/item/cardboard_cutout, /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/centcom/wizard_station) -"hr" = ( +"ahr" = ( /obj/structure/table/wood/fancy/green{ name = "Head Intern Desk" }, @@ -2697,12 +2785,12 @@ /obj/structure/window/plasma/spawner/directional/east, /turf/open/indestructible/hotelwood, /area/centcom/central_command_areas/admin) -"hs" = ( +"ahs" = ( /turf/closed/indestructible/fakeglass{ color = "#ffe599" }, /area/centcom/central_command_areas/admin) -"ht" = ( +"aht" = ( /obj/structure/table/reinforced, /obj/machinery/camera/autoname/directional/east{ network = list("nukie") @@ -2716,7 +2804,7 @@ /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/centcom/syndicate_mothership/control) -"hu" = ( +"ahu" = ( /obj/structure/table/wood, /obj/item/storage/belt/utility/full/powertools/rcd{ pixel_x = -1; @@ -2728,7 +2816,7 @@ }, /turf/open/floor/carpet/neon/simple/black, /area/centcom/central_command_areas/admin) -"hv" = ( +"ahv" = ( /obj/structure/table/wood/fancy/royalblue, /obj/machinery/door/window/brigdoor/security, /obj/machinery/door/window/brigdoor/security, @@ -2741,17 +2829,17 @@ }, /turf/open/floor/glass/reinforced/plasma, /area/centcom/central_command_areas/admin) -"hw" = ( +"ahw" = ( /obj/structure/chair/office{ dir = 4 }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin) -"hx" = ( +"ahx" = ( /obj/machinery/photocopier, /turf/open/floor/iron/grimy, /area/centcom/central_command_areas/briefing) -"hy" = ( +"ahy" = ( /obj/structure/table/wood, /obj/item/phone{ desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; @@ -2771,28 +2859,28 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/ferry) -"hz" = ( +"ahz" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/supply) -"hA" = ( +"ahA" = ( /obj/structure/extinguisher_cabinet/directional/west, /turf/open/misc/grass, /area/centcom/central_command_areas/admin) -"hB" = ( +"ahB" = ( /obj/structure/fans/tiny/invisible, /turf/open/floor/iron, /area/centcom/central_command_areas/admin) -"hC" = ( +"ahC" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/mineral/titanium/tiled/yellow, /area/centcom/syndicate_mothership/expansion_bombthreat) -"hD" = ( +"ahD" = ( /turf/open/floor/carpet/royalblue, /area/centcom/central_command_areas/admin) -"hE" = ( +"ahE" = ( /obj/effect/turf_decal/siding/wood, /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -2807,11 +2895,11 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/borbop) -"hF" = ( +"ahF" = ( /obj/structure/sign/poster/official/bless_this_spess/directional/west, /turf/open/floor/iron/grimy, /area/centcom/central_command_areas/admin) -"hG" = ( +"ahG" = ( /obj/structure/chair/sofa/bench/right{ dir = 4 }, @@ -2820,29 +2908,29 @@ }, /turf/open/floor/mineral/titanium, /area/centcom/syndicate_mothership/control) -"hH" = ( +"ahH" = ( /turf/open/floor/holofloor/hyperspace, /area/space) -"hI" = ( +"ahI" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 4 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/hall) -"hJ" = ( +"ahJ" = ( /obj/machinery/door/poddoor/incinerator_ordmix{ id = "syn_ordmix_vent" }, /turf/open/floor/engine/vacuum, /area/centcom/syndicate_mothership/expansion_bombthreat) -"hK" = ( +"ahK" = ( /obj/structure/table/wood/fancy/green{ name = "Head Intern Desk" }, /obj/item/clipboard, /turf/open/indestructible/hotelwood, /area/centcom/central_command_areas/admin) -"hL" = ( +"ahL" = ( /obj/structure/table/reinforced/plastitaniumglass, /obj/structure/window/reinforced/spawner/directional, /obj/item/autosurgeon{ @@ -2853,24 +2941,24 @@ }, /turf/open/floor/glass/reinforced/plasma, /area/centcom/central_command_areas/admin) -"hM" = ( +"ahM" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 4 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/medical) -"hN" = ( +"ahN" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 }, /obj/structure/chair/stool/bar/directional/east, /turf/open/floor/wood/parquet, /area/centcom/central_command_areas/arcade) -"hO" = ( +"ahO" = ( /obj/structure/railing/corner, /turf/open/misc/asteroid/snow/icemoon, /area/centcom/syndicate_mothership/control) -"hP" = ( +"ahP" = ( /obj/structure/chair/office/light{ dir = 8 }, @@ -2879,7 +2967,7 @@ }, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership/control) -"hQ" = ( +"ahQ" = ( /obj/structure/railing/wood{ dir = 1 }, @@ -2892,18 +2980,18 @@ }, /turf/open/floor/wood/parquet, /area/centcom/central_command_areas/borbop) -"hR" = ( +"ahR" = ( /obj/structure/table/reinforced/titaniumglass, /obj/item/pizzabox/infinite, /obj/machinery/light/floor/has_bulb, /turf/open/floor/mineral/titanium/white, /area/centcom/central_command_areas/admin) -"hS" = ( +"ahS" = ( /obj/structure/window/reinforced/survival_pod/spawner/directional/east, /obj/machinery/growing/tray, /turf/open/floor/mineral/titanium/tiled, /area/centcom/syndicate_mothership/expansion_bioterrorism) -"hT" = ( +"ahT" = ( /obj/structure/window/reinforced/survival_pod/spawner/directional/south{ name = "Tinted Window"; opacity = 1 @@ -2914,7 +3002,7 @@ /obj/effect/turf_decal/stripes/end, /turf/open/floor/mineral/titanium/tiled, /area/centcom/syndicate_mothership/control) -"hU" = ( +"ahU" = ( /obj/structure/hedge, /obj/structure/stone_tile/slab, /obj/structure/sign{ @@ -2926,11 +3014,16 @@ }, /turf/open/misc/snow/actually_safe, /area/centcom/central_command_areas/admin) -"hV" = ( +"ahV" = ( /obj/effect/landmark/navigate_destination/centcom/boxing, /turf/open/floor/carpet, /area/centcom/central_command_areas/hall) -"hX" = ( +"ahW" = ( +/obj/structure/flora/bush/fullgrass, +/obj/structure/flora/bush/flowers_br, +/turf/open/floor/grass, +/area/centcom/central_command_areas/retirement_yard) +"ahX" = ( /obj/machinery/light/floor/has_bulb, /obj/item/kirbyplants{ icon_state = "plant-22"; @@ -2944,7 +3037,13 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/borbop) -"hZ" = ( +"ahY" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood/parquet, +/area/centcom/central_command_areas/retirement_home) +"ahZ" = ( /obj/effect/turf_decal/siding/dark{ dir = 5 }, @@ -2955,7 +3054,7 @@ /obj/machinery/light/floor/has_bulb, /turf/open/floor/iron/white/herringbone, /area/centcom/central_command_areas/kitchen) -"ia" = ( +"aia" = ( /obj/effect/light_emitter{ set_cap = 1; set_luminosity = 4 @@ -2963,7 +3062,7 @@ /obj/structure/flora/grass/both/style_random, /turf/open/misc/asteroid/snow/airless, /area/centcom/syndicate_mothership) -"ib" = ( +"aib" = ( /obj/machinery/door/poddoor/shuttledock{ checkdir = 1; name = "Syndicate Blast Door"; @@ -2971,16 +3070,16 @@ }, /turf/open/floor/plating, /area/centcom/syndicate_mothership/control) -"ic" = ( +"aic" = ( /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood/parquet, /area/centcom/central_command_areas/borbop) -"id" = ( +"aid" = ( /obj/structure/table/wood, /obj/item/book/granter/sign_language, /turf/open/floor/carpet/purple, /area/centcom/central_command_areas/admin) -"ie" = ( +"aie" = ( /obj/effect/turf_decal/tile/dark/diagonal_edge, /obj/structure/table/wood/fancy/royalblue, /obj/effect/spawner/random/decoration/statue{ @@ -2996,7 +3095,7 @@ }, /turf/open/floor/iron/white/diagonal, /area/centcom/central_command_areas/hall) -"if" = ( +"aif" = ( /obj/structure/flora/grass/both/style_random, /obj/effect/light_emitter{ set_cap = 1; @@ -3004,7 +3103,7 @@ }, /turf/open/misc/asteroid/snow/airless, /area/centcom/syndicate_mothership) -"ig" = ( +"aig" = ( /obj/structure/chair/office{ dir = 4 }, @@ -3016,27 +3115,27 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin) -"ih" = ( +"aih" = ( /obj/machinery/light/small/directional/south, /turf/open/floor/iron/smooth_half, /area/centcom/syndicate_mothership/control) -"ii" = ( +"aii" = ( /obj/effect/turf_decal/siding/green{ dir = 8 }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/botany) -"ij" = ( +"aij" = ( /obj/machinery/light/directional/east, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"ik" = ( +"aik" = ( /turf/open/misc/ashplanet/wateryrock{ initial_gas_mix = "o2=22;n2=82;TEMP=293.15"; planetary_atmos = 0 }, /area/awaymission/errorroom) -"il" = ( +"ail" = ( /obj/effect/turf_decal/siding/dark{ dir = 10 }, @@ -3045,7 +3144,13 @@ }, /turf/open/floor/iron/white/herringbone, /area/centcom/central_command_areas/kitchen) -"in" = ( +"aim" = ( +/obj/structure/flora/bush/fullgrass/style_2, +/obj/structure/flora/bush/flowers_br, +/obj/structure/flora/bush/large/style_3, +/turf/open/floor/grass, +/area/centcom/central_command_areas/retirement_yard) +"ain" = ( /obj/item/kirbyplants{ icon_state = "plant-22"; pixel_x = -4 @@ -3056,45 +3161,53 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/kitchen) -"io" = ( +"aio" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/machinery/light/directional/south, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/hall) -"ip" = ( +"aip" = ( /obj/machinery/light/directional/west, /obj/effect/turf_decal/siding/wood{ dir = 9 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/evacuation) -"iq" = ( +"aiq" = ( /obj/machinery/computer/records/security/laptop{ dir = 4 }, /obj/structure/table/reinforced/plastitaniumglass, /turf/open/floor/circuit, /area/centcom/central_command_areas/admin) -"ir" = ( +"air" = ( /obj/machinery/shower/directional/south, /obj/machinery/light/floor/has_bulb, /turf/open/floor/iron/freezer, /area/centcom/syndicate_mothership/control) -"it" = ( +"ais" = ( +/obj/structure/decorative/shelf/milk, +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/wood/large, +/area/centcom/central_command_areas/retirement_home) +"ait" = ( /obj/structure/railing/wood, /obj/structure/flora/bush/grassy/style_random, /turf/open/floor/grass, /area/centcom/central_command_areas/hall) -"iu" = ( +"aiu" = ( /turf/open/floor/wood/large, /area/centcom/central_command_areas/ghost_spawn) -"iv" = ( +"aiv" = ( /obj/machinery/door/airlock/centcom{ dir = 4 }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/firing_range) -"iw" = ( +"aiw" = ( /obj/structure/table/glass/plasmaglass, /obj/item/plunger{ pixel_x = -9; @@ -3108,7 +3221,7 @@ /obj/structure/noticeboard/directional/west, /turf/open/floor/mineral/titanium/tiled/yellow, /area/centcom/syndicate_mothership/expansion_chemicalwarfare) -"ix" = ( +"aix" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/machinery/light/floor/has_bulb, /obj/structure/sign/painting/library_secure{ @@ -3116,20 +3229,28 @@ }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/hall) -"iz" = ( +"aiy" = ( +/obj/structure/decorative/shelf/soda_milk, +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/wood/large, +/area/centcom/central_command_areas/retirement_home) +"aiz" = ( /obj/machinery/washing_machine, /obj/structure/extinguisher_cabinet/directional/north, /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/centcom/syndicate_mothership/control) -"iA" = ( +"aiA" = ( /turf/closed/indestructible/riveted, /area/centcom/central_command_areas/admin_hangout) -"iB" = ( +"aiB" = ( /obj/machinery/power/shuttle_engine/propulsion, /turf/open/floor/plating/airless, /area/centcom/wizard_station) -"iC" = ( +"aiC" = ( /obj/structure/table/wood, /obj/machinery/chem_dispenser/drinks/beer{ dir = 8; @@ -3147,14 +3268,14 @@ /obj/effect/decal/cleanable/blood/old, /turf/open/floor/wood/tile, /area/centcom/central_command_areas/evacuation/ship) -"iD" = ( +"aiD" = ( /obj/effect/turf_decal/siding/wood, /obj/effect/turf_decal/siding/wood{ dir = 1 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin) -"iE" = ( +"aiE" = ( /obj/structure/table/wood, /obj/item/pizzabox, /obj/item/storage/crayons{ @@ -3167,15 +3288,15 @@ }, /turf/open/floor/wood/tile, /area/centcom/syndicate_mothership/control) -"iF" = ( +"aiF" = ( /turf/closed/indestructible/riveted, /area/centcom/central_command_areas/supply) -"iG" = ( +"aiG" = ( /obj/structure/flora/bush/flowers_pp/style_random, /obj/structure/flora/bush/flowers_yw/style_random, /turf/open/floor/grass, /area/centcom/central_command_areas/hall) -"iH" = ( +"aiH" = ( /obj/structure/railing/wood{ dir = 4 }, @@ -3185,68 +3306,68 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron/white/diagonal, /area/centcom/central_command_areas/hall) -"iI" = ( +"aiI" = ( /obj/structure/flora/tree/palm{ icon_state = "palm2" }, /obj/machinery/light/directional/north, /turf/open/floor/grass, /area/centcom/central_command_areas/evacuation/ship) -"iJ" = ( +"aiJ" = ( /obj/effect/turf_decal/siding/thinplating_new/light{ dir = 4 }, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership/expansion_chemicalwarfare) -"iK" = ( +"aiK" = ( /obj/structure/flora/tree/dead/style_random, /turf/open/misc/asteroid/snow/airless, /area/centcom/syndicate_mothership) -"iL" = ( +"aiL" = ( /obj/effect/turf_decal/siding/thinplating_new/dark, /turf/open/floor/iron/dark/textured_large, /area/centcom/syndicate_mothership/control) -"iM" = ( +"aiM" = ( /obj/machinery/door/airlock/centcom, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/medical) -"iN" = ( +"aiN" = ( /obj/machinery/status_display/supply, /turf/closed/indestructible/riveted, /area/centcom/central_command_areas/supply) -"iO" = ( +"aiO" = ( /obj/effect/turf_decal/delivery, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"iP" = ( +"aiP" = ( /obj/structure/closet/cardboard, /obj/structure/sign/poster/contraband/busty_backdoor_xeno_babes_6{ pixel_x = 32 }, /turf/open/floor/catwalk_floor/iron_dark, /area/centcom/syndicate_mothership/control) -"iQ" = ( +"aiQ" = ( /obj/structure/punching_bag, /turf/open/floor/carpet, /area/centcom/wizard_station) -"iR" = ( +"aiR" = ( /obj/effect/turf_decal/tile/brown/half/contrasted{ dir = 1 }, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"iS" = ( +"aiS" = ( /obj/structure/railing{ dir = 4 }, /turf/open/misc/asteroid/snow/icemoon, /area/centcom/syndicate_mothership/control) -"iT" = ( +"aiT" = ( /obj/machinery/door/window, /obj/effect/mapping_helpers/airlock/access/any/admin/captain, /turf/open/floor/iron/grimy, /area/centcom/central_command_areas/admin) -"iU" = ( +"aiU" = ( /obj/structure/table/wood/fancy/royalblue, /obj/item/mod/module/megaphone{ pixel_y = 12; @@ -3261,10 +3382,10 @@ /obj/effect/mapping_helpers/airlock/access/any/admin/captain, /turf/open/floor/glass/reinforced, /area/centcom/central_command_areas/admin) -"iV" = ( +"aiV" = ( /turf/open/floor/mineral/titanium/tiled/yellow, /area/centcom/syndicate_mothership) -"iW" = ( +"aiW" = ( /obj/effect/turf_decal/siding/dark{ dir = 10 }, @@ -3276,11 +3397,11 @@ dir = 10 }, /area/centcom/central_command_areas/hall) -"iX" = ( +"aiX" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/centcom/central_command_areas/supply) -"iY" = ( +"aiY" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 1 }, @@ -3289,24 +3410,24 @@ }, /turf/open/floor/mineral/titanium, /area/centcom/syndicate_mothership/control) -"iZ" = ( +"aiZ" = ( /obj/effect/turf_decal/tile/brown/half/contrasted{ dir = 4 }, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"ja" = ( +"aja" = ( /obj/machinery/light/directional/east, /obj/structure/railing/wood, /obj/structure/flora/bush/fullgrass/style_random, /turf/open/floor/grass, /area/centcom/central_command_areas/hall) -"jb" = ( +"ajb" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/sign/warning/vacuum/external, /turf/open/floor/plating, /area/centcom/central_command_areas/supply) -"jc" = ( +"ajc" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 }, @@ -3316,7 +3437,7 @@ }, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"jd" = ( +"ajd" = ( /obj/effect/spawner/random/trash/cigbutt{ pixel_y = -2 }, @@ -3330,13 +3451,13 @@ }, /turf/open/floor/iron/grimy, /area/centcom/central_command_areas/admin) -"je" = ( +"aje" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 8 }, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership/control) -"jf" = ( +"ajf" = ( /obj/machinery/light/floor/has_bulb, /obj/machinery/growing/tray, /obj/effect/turf_decal/trimline/green/line{ @@ -3344,26 +3465,26 @@ }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/botany) -"jg" = ( +"ajg" = ( /obj/machinery/vending/wardrobe/engi_wardrobe, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/hall) -"jh" = ( +"ajh" = ( /obj/machinery/computer/camera_advanced{ dir = 4 }, /obj/structure/fans/tiny/invisible, /turf/open/floor/carpet/green, /area/centcom/central_command_areas/admin) -"ji" = ( +"aji" = ( /obj/machinery/computer/camera_advanced, /turf/open/floor/wood, /area/centcom/wizard_station) -"jj" = ( +"ajj" = ( /obj/structure/flora/tree/pine/style_random, /turf/open/misc/asteroid/snow/icemoon, /area/centcom/syndicate_mothership/control) -"jk" = ( +"ajk" = ( /obj/machinery/door/poddoor{ id = "XCCQMLoaddoor2"; name = "Supply Dock Loading Door" @@ -3377,7 +3498,7 @@ }, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"jl" = ( +"ajl" = ( /obj/structure/plasticflaps, /obj/effect/turf_decal/stripes/line, /obj/machinery/conveyor{ @@ -3386,7 +3507,7 @@ }, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"jm" = ( +"ajm" = ( /obj/machinery/door/poddoor{ id = "XCCQMLoaddoor2"; name = "Supply Dock Loading Door" @@ -3398,7 +3519,7 @@ }, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"jn" = ( +"ajn" = ( /obj/effect/turf_decal/stripes/end, /obj/machinery/conveyor/inverted{ dir = 10; @@ -3406,12 +3527,12 @@ }, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"jo" = ( +"ajo" = ( /obj/item/soap/homemade, /obj/machinery/light/small/directional/west, /turf/open/floor/iron/white, /area/centcom/wizard_station) -"jp" = ( +"ajp" = ( /obj/effect/turf_decal/bot, /obj/effect/spawner/random/food_or_drink/pizzaparty, /obj/effect/spawner/random/food_or_drink/pizzaparty, @@ -3421,11 +3542,11 @@ /obj/structure/closet/crate/freezer, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"jq" = ( +"ajq" = ( /obj/item/food/meat/slab/corgi, /turf/open/floor/grass, /area/centcom/wizard_station) -"jr" = ( +"ajr" = ( /obj/machinery/door/airlock/external/ruin{ name = "Supply Shuttle" }, @@ -3436,30 +3557,30 @@ /obj/effect/mapping_helpers/airlock/access/any/supply/general, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"js" = ( +"ajs" = ( /obj/structure/fans/tiny, /obj/effect/turf_decal/delivery, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"jt" = ( +"ajt" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 }, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"ju" = ( +"aju" = ( /obj/structure/table/wood/poker, /obj/item/toy/figure/wizard, /turf/open/floor/carpet, /area/centcom/wizard_station) -"jv" = ( +"ajv" = ( /obj/effect/turf_decal/trimline/green/line{ dir = 5 }, /obj/machinery/vending/hydroseeds, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/botany) -"jw" = ( +"ajw" = ( /obj/structure/flora/rock/pile/style_random, /obj/effect/light_emitter{ set_cap = 1; @@ -3467,30 +3588,30 @@ }, /turf/open/misc/asteroid/snow/icemoon, /area/centcom/syndicate_mothership/control) -"jx" = ( +"ajx" = ( /obj/effect/landmark/start/nukeop_leader, /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/centcom/syndicate_mothership/control) -"jy" = ( +"ajy" = ( /obj/machinery/door/airlock/hatch{ name = "Tool Closet" }, /obj/effect/mapping_helpers/airlock/access/all/syndicate/general, /turf/open/floor/mineral/titanium/yellow, /area/centcom/syndicate_mothership/control) -"jz" = ( +"ajz" = ( /obj/machinery/door/airlock{ icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; name = "Study" }, /turf/open/floor/engine/cult, /area/centcom/wizard_station) -"jA" = ( +"ajA" = ( /obj/structure/fans/tiny/invisible, /turf/open/floor/holofloor/hyperspace, /area/space) -"jB" = ( +"ajB" = ( /obj/structure/sign/plaques/kiddie/badger{ desc = "A list of names is engraved on this plaque. 'May their heroic sacrifices inspire your bravery' is carved at the bottom."; name = "\improper Operative Remembrance Plaque"; @@ -3503,13 +3624,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, /turf/open/floor/iron/smooth, /area/centcom/syndicate_mothership/control) -"jC" = ( +"ajC" = ( /obj/structure/chair/comfy/shuttle/tactical{ dir = 1 }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/evacuation/ship) -"jD" = ( +"ajD" = ( /obj/structure/table/reinforced/plastitaniumglass, /obj/structure/window/reinforced/spawner/directional, /obj/item/gun/syringe/rapidsyringe, @@ -3539,7 +3660,7 @@ }, /turf/open/floor/glass/reinforced, /area/centcom/central_command_areas/admin) -"jE" = ( +"ajE" = ( /obj/effect/turf_decal/siding/blue{ dir = 4 }, @@ -3548,7 +3669,7 @@ }, /turf/open/floor/iron/dark/diagonal, /area/centcom/central_command_areas/medical) -"jF" = ( +"ajF" = ( /obj/effect/turf_decal/siding/wideplating{ dir = 1 }, @@ -3558,7 +3679,7 @@ }, /turf/open/floor/iron/dark/textured_half, /area/centcom/syndicate_mothership/control) -"jG" = ( +"ajG" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 1 }, @@ -3566,10 +3687,10 @@ /obj/structure/noticeboard/directional/north, /turf/open/floor/mineral/plastitanium/red, /area/centcom/syndicate_mothership/expansion_bioterrorism) -"jH" = ( +"ajH" = ( /turf/closed/indestructible/syndicate, /area/centcom/syndicate_mothership) -"jI" = ( +"ajI" = ( /obj/machinery/door/poddoor{ id = "XCCQMLoaddoor"; name = "Supply Dock Loading Door" @@ -3583,7 +3704,7 @@ }, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"jJ" = ( +"ajJ" = ( /obj/structure/plasticflaps, /obj/machinery/conveyor{ dir = 8; @@ -3592,7 +3713,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"jK" = ( +"ajK" = ( /obj/machinery/door/poddoor{ id = "XCCQMLoaddoor"; name = "Supply Dock Loading Door" @@ -3604,7 +3725,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"jL" = ( +"ajL" = ( /obj/effect/turf_decal/stripes/end{ dir = 1 }, @@ -3614,32 +3735,32 @@ }, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"jM" = ( +"ajM" = ( /mob/living/basic/bot/cleanbot/medbay, /obj/machinery/light/floor/has_bulb, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/medical) -"jN" = ( +"ajN" = ( /obj/structure/flora/tree/dead/style_random, /obj/structure/flora/grass/both/style_random, /turf/open/misc/asteroid/snow/icemoon, /area/centcom/syndicate_mothership/control) -"jO" = ( +"ajO" = ( /obj/structure/table/reinforced, /obj/item/flashlight/lamp, /turf/open/floor/carpet, /area/centcom/syndicate_mothership/control) -"jP" = ( +"ajP" = ( /obj/structure/hedge, /turf/open/floor/carpet, /area/centcom/central_command_areas/admin) -"jQ" = ( +"ajQ" = ( /obj/effect/turf_decal/siding/green{ dir = 5 }, /turf/open/floor/iron/dark/small, /area/centcom/central_command_areas/botany) -"jR" = ( +"ajR" = ( /obj/effect/turf_decal/siding/dark{ dir = 9 }, @@ -3649,7 +3770,7 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/hall) -"jS" = ( +"ajS" = ( /obj/effect/turf_decal/siding/wood{ dir = 10 }, @@ -3658,12 +3779,12 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/borbop) -"jT" = ( +"ajT" = ( /obj/structure/sink/directional/west, /obj/structure/mirror/directional/east, /turf/open/floor/mineral/titanium, /area/centcom/syndicate_mothership/control) -"jU" = ( +"ajU" = ( /obj/structure/table/sandstone{ color = "#efbc1e" }, @@ -3689,23 +3810,28 @@ color = "#cc9439" }, /area/centcom/central_command_areas/admin) -"jV" = ( +"ajV" = ( /obj/effect/turf_decal/siding/wideplating/dark{ dir = 8 }, /obj/machinery/light/small/directional/south, /turf/open/floor/wood/tile, /area/centcom/syndicate_mothership/control) -"jW" = ( +"ajW" = ( /obj/machinery/computer/records/medical, /turf/open/floor/carpet/royalblue, /area/centcom/central_command_areas/admin) -"jX" = ( +"ajX" = ( /obj/structure/table/wood/fancy/black, /obj/machinery/light/floor/has_bulb, /turf/open/floor/carpet/black, /area/centcom/central_command_areas/borbop) -"jZ" = ( +"ajY" = ( +/obj/structure/flora/bush/fullgrass/style_3, +/obj/structure/flora/bush/flowers_br, +/turf/open/floor/grass, +/area/centcom/central_command_areas/retirement_yard) +"ajZ" = ( /obj/structure/railing/wood, /obj/structure/railing/wood{ dir = 8 @@ -3716,20 +3842,20 @@ }, /turf/open/floor/wood/parquet, /area/centcom/central_command_areas/borbop) -"ka" = ( +"aka" = ( /turf/open/floor/stone, /area/centcom/central_command_areas/admin_hangout) -"kb" = ( +"akb" = ( /obj/effect/turf_decal/siding/green/corner{ dir = 1 }, /turf/open/floor/iron/dark/small, /area/centcom/central_command_areas/botany) -"kc" = ( +"akc" = ( /obj/machinery/light/small/directional/north, /turf/open/floor/iron/smooth_half, /area/centcom/syndicate_mothership/control) -"kd" = ( +"akd" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 9 }, @@ -3738,17 +3864,17 @@ }, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership/control) -"ke" = ( +"ake" = ( /obj/effect/turf_decal/siding/wideplating{ dir = 8 }, /turf/open/floor/plating, /area/centcom/syndicate_mothership/control) -"kf" = ( +"akf" = ( /obj/effect/turf_decal/siding/wood/corner, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin_hangout) -"kg" = ( +"akg" = ( /obj/effect/turf_decal/trimline/green/corner, /obj/effect/turf_decal/trimline/green{ pixel_y = 16; @@ -3756,20 +3882,20 @@ }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/botany) -"kh" = ( +"akh" = ( /obj/machinery/growing/tray, /obj/effect/turf_decal/trimline/green/line{ dir = 5 }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/botany) -"ki" = ( +"aki" = ( /obj/structure/table/wood/fancy/purple, /obj/machinery/computer/records/security/laptop, /obj/item/spellbook_charge/debug, /turf/open/floor/plating/abductor, /area/centcom/central_command_areas/admin) -"kj" = ( +"akj" = ( /obj/item/flashlight/lamp{ pixel_y = -3; pixel_x = -8 @@ -3777,31 +3903,37 @@ /obj/structure/table/wood, /turf/open/floor/iron/dark/textured_large, /area/centcom/central_command_areas/arcade) -"kk" = ( +"akk" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 8 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/ghost_spawn) -"kl" = ( +"akl" = ( /obj/structure/chair/sofa/right/brown{ dir = 4 }, /turf/open/floor/carpet, /area/centcom/central_command_areas/admin) -"km" = ( +"akm" = ( /turf/closed/wall/mineral/wood, /area/centcom/syndicate_mothership/control) -"kn" = ( +"akn" = ( /obj/structure/table/reinforced/plastitaniumglass, /obj/machinery/microwave, /turf/open/floor/carpet/executive, /area/centcom/central_command_areas/admin) -"ko" = ( +"ako" = ( /obj/item/storage/toolbox/fishing, /turf/open/floor/carpet/neon/simple/cyan, /area/centcom/central_command_areas/admin) -"kq" = ( +"akp" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/wood/parquet, +/area/centcom/central_command_areas/retirement_home) +"akq" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/structure/table/reinforced, /obj/item/reagent_containers/cup/glass/bottle/lizardwine{ @@ -3830,7 +3962,7 @@ }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/borbop) -"kr" = ( +"akr" = ( /obj/effect/turf_decal/tile/neutral/full, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 8 @@ -3838,34 +3970,44 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/textured_large, /area/centcom/central_command_areas/evacuation/ship) -"ks" = ( +"aks" = ( /obj/effect/spawner/random/trash/garbage, /obj/effect/spawner/random/structure/closet_maintenance, /obj/structure/fans/tiny/invisible, /obj/machinery/light/very_dim/directional, /turf/open/floor/iron, /area/centcom/central_command_areas/admin) -"ku" = ( +"akt" = ( +/obj/effect/turf_decal/siding/white, +/obj/structure/billboard/twenty_four_seven, +/turf/open/floor/grass, +/area/centcom/central_command_areas/retirement_yard) +"aku" = ( /turf/closed/indestructible/syndicate, /area/centcom/syndicate_mothership/expansion_chemicalwarfare) -"kv" = ( +"akv" = ( /obj/machinery/door/airlock/centcom{ name = "Waffles' Den" }, /obj/effect/mapping_helpers/airlock/access/any/admin/captain, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin) -"kw" = ( +"akw" = ( /obj/effect/turf_decal/siding/green{ dir = 10 }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/botany) -"ky" = ( +"akx" = ( +/obj/effect/turf_decal/siding/white, +/obj/structure/flora/bush/fullgrass/style_3, +/turf/open/floor/grass, +/area/centcom/central_command_areas/retirement_yard) +"aky" = ( /obj/structure/chair/office, /turf/open/floor/iron/white/side, /area/centcom/central_command_areas/admin) -"kz" = ( +"akz" = ( /obj/machinery/door/airlock/maintenance/external{ name = "Bunk Room 1" }, @@ -3874,36 +4016,36 @@ /obj/effect/mapping_helpers/airlock/access/all/syndicate/general, /turf/open/floor/catwalk_floor/iron, /area/centcom/syndicate_mothership/control) -"kA" = ( +"akA" = ( /turf/closed/indestructible/iron, /area/centcom/syndicate_mothership/control) -"kB" = ( +"akB" = ( /obj/machinery/vending/boozeomat, /turf/closed/indestructible/syndicate, /area/centcom/syndicate_mothership/control) -"kC" = ( +"akC" = ( /obj/structure/railing/wood{ dir = 1 }, /turf/open/floor/iron/dark/diagonal, /area/centcom/central_command_areas/medical) -"kD" = ( +"akD" = ( /obj/structure/table/rolling, /obj/item/reagent_containers/condiment/soymilk, /turf/open/floor/mineral/titanium, /area/centcom/syndicate_mothership/control) -"kE" = ( +"akE" = ( /obj/structure/table/wood, /obj/item/pai_card, /turf/open/floor/wood/tile, /area/centcom/syndicate_mothership/control) -"kF" = ( +"akF" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, /obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, /turf/open/floor/iron/smooth, /area/centcom/syndicate_mothership/control) -"kG" = ( +"akG" = ( /obj/structure/sign{ name = "wall"; icon = 'monkestation/icons/turf/walls/reinforced_wall.dmi'; @@ -3912,11 +4054,11 @@ }, /turf/open/space/basic, /area/space) -"kH" = ( +"akH" = ( /obj/machinery/light/small/directional/south, /turf/open/floor/wood/tile, /area/centcom/syndicate_mothership/control) -"kI" = ( +"akI" = ( /obj/effect/turf_decal/siding/dark{ dir = 8 }, @@ -3927,16 +4069,16 @@ dir = 4 }, /area/centcom/central_command_areas/hall) -"kJ" = ( +"akJ" = ( /obj/structure/chair/stool/bar/directional/south, /turf/open/floor/wood/parquet, /area/centcom/central_command_areas/arcade) -"kK" = ( +"akK" = ( /turf/closed/indestructible/fakedoor{ name = "BUNKER 4337" }, /area/centcom/syndicate_mothership) -"kL" = ( +"akL" = ( /obj/effect/turf_decal/siding/thinplating{ dir = 9 }, @@ -3948,44 +4090,44 @@ }, /turf/open/floor/mineral/titanium/tiled, /area/centcom/syndicate_mothership/control) -"kM" = ( +"akM" = ( /obj/structure/railing/wood, /obj/structure/table/reinforced, /obj/machinery/reagentgrinder, /obj/effect/turf_decal/trimline/green/line, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/botany) -"kN" = ( +"akN" = ( /obj/effect/turf_decal/siding/blue{ dir = 10 }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/medical) -"kO" = ( +"akO" = ( /obj/structure/hedge, /obj/effect/turf_decal/siding/wood/corner, /turf/open/floor/wood/large, /area/centcom/central_command_areas/hall) -"kP" = ( +"akP" = ( /obj/structure/closet/secure_closet/armory1, /obj/machinery/light/directional/south, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/firing_range_checkpoint_control) -"kQ" = ( +"akQ" = ( /obj/structure/closet/secure_closet/armory3, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/firing_range_checkpoint_control) -"kR" = ( +"akR" = ( /obj/effect/turf_decal/siding/wood{ dir = 10 }, /turf/open/floor/wood/parquet, /area/centcom/central_command_areas/arcade) -"kS" = ( +"akS" = ( /obj/effect/turf_decal/siding/dark, /turf/open/floor/carpet, /area/centcom/central_command_areas/hall) -"kT" = ( +"akT" = ( /obj/machinery/light/small/directional/east, /obj/structure/closet/crate/freezer{ name = "fruits and veggies freezer" @@ -4022,23 +4164,23 @@ /obj/item/food/grown/apple, /turf/open/floor/plastic, /area/centcom/syndicate_mothership/expansion_fridgerummage) -"kU" = ( +"akU" = ( /turf/closed/indestructible/opsglass, /area/centcom/syndicate_mothership/expansion_bombthreat) -"kV" = ( +"akV" = ( /obj/item/food/meat/slab/xeno, /turf/open/floor/grass, /area/centcom/wizard_station) -"kW" = ( +"akW" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/structure/table/wood/fancy/royalblack, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/kitchen) -"kX" = ( +"akX" = ( /obj/effect/turf_decal/siding/wood/corner, /turf/open/floor/wood/large, /area/centcom/central_command_areas/ghost_spawn) -"kY" = ( +"akY" = ( /obj/effect/turf_decal/siding/wideplating{ dir = 4 }, @@ -4060,27 +4202,27 @@ dir = 8 }, /area/centcom/syndicate_mothership/control) -"kZ" = ( +"akZ" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, /obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, /turf/open/floor/catwalk_floor/titanium, /area/centcom/syndicate_mothership/control) -"la" = ( +"ala" = ( /obj/effect/gun_check_blocker{ dir = 4 }, /turf/open/floor/iron/dark, /area/centcom/tdome/observation) -"lb" = ( +"alb" = ( /obj/structure/railing, /obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, /obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, /turf/open/floor/catwalk_floor/iron_dark, /area/centcom/syndicate_mothership/control) -"lc" = ( +"alc" = ( /obj/effect/turf_decal/siding/dark/end{ dir = 8 }, @@ -4113,7 +4255,7 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/admin) -"ld" = ( +"ald" = ( /obj/structure/fireplace{ fuel_added = 3000 }, @@ -4126,26 +4268,30 @@ }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin) -"le" = ( +"ale" = ( /obj/effect/turf_decal/box, /obj/structure/punching_bag, /turf/open/floor/plating, /area/centcom/syndicate_mothership/control) -"lg" = ( +"alf" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/wood/parquet, +/area/centcom/central_command_areas/retirement_home) +"alg" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/structure/chair/comfy/shuttle/tactical{ dir = 1 }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/evacuation/ship) -"lh" = ( +"alh" = ( /obj/effect/turf_decal/siding/wood{ dir = 10 }, /obj/machinery/vending/cigarette, /turf/open/floor/wood/large, /area/centcom/central_command_areas/borbop) -"li" = ( +"ali" = ( /obj/machinery/light/floor/has_bulb, /obj/item/kirbyplants{ icon_state = "plant-22"; @@ -4159,13 +4305,13 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/borbop) -"lj" = ( +"alj" = ( /obj/structure/extinguisher_cabinet/directional/south, /turf/open/floor/iron/smooth_half{ dir = 1 }, /area/centcom/syndicate_mothership/control) -"lk" = ( +"alk" = ( /obj/structure/chair/sofa/corp/left{ dir = 4; pixel_x = -4 @@ -4173,34 +4319,51 @@ /obj/effect/turf_decal/tile/dark/opposingcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin_hangout) -"lm" = ( +"all" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/machinery/computer/libraryconsole{ + dir = 1 + }, +/turf/open/floor/wood/parquet, +/area/centcom/central_command_areas/retirement_home) +"alm" = ( /obj/structure/window/plasma/spawner/directional/north, /obj/structure/window/plasma/spawner/directional/west, /turf/open/floor/carpet/royalblue, /area/centcom/central_command_areas/admin) -"ln" = ( +"aln" = ( /obj/machinery/light/small/maintenance/directional/west, /obj/effect/spawner/random/trash/bin{ name = "treat storage" }, /turf/open/floor/iron/grimy, /area/centcom/central_command_areas/admin) -"lo" = ( +"alo" = ( /obj/effect/turf_decal/tile/brown/half/contrasted, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"lp" = ( +"alp" = ( /obj/structure/fake_stairs/wood/directional/east, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/hall) -"lq" = ( +"alq" = ( /obj/effect/turf_decal/tile/brown/anticorner/contrasted, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"lr" = ( +"alr" = ( /turf/closed/indestructible/riveted, /area/centcom/central_command_areas/firing_range_checkpoint_control) -"lt" = ( +"als" = ( +/obj/structure/table/wood, +/obj/machinery/microwave{ + pixel_y = 6 + }, +/turf/open/floor/iron/terracotta/small, +/area/centcom/central_command_areas/retirement_home) +"alt" = ( /obj/structure/lattice/catwalk, /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -4210,7 +4373,7 @@ }, /turf/open/lava/plasma/ice_moon, /area/centcom/syndicate_mothership/control) -"lu" = ( +"alu" = ( /obj/structure/railing/wood{ dir = 1 }, @@ -4218,13 +4381,18 @@ /obj/structure/flora/bush/flowers_yw/style_random, /turf/open/floor/grass, /area/centcom/central_command_areas/hall) -"lw" = ( +"alv" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/light/small/directional/south, +/turf/open/floor/carpet, +/area/centcom/central_command_areas/retirement_home) +"alw" = ( /obj/structure/sign/poster/contraband/lizard{ pixel_x = -32 }, /turf/open/floor/mineral/titanium, /area/centcom/syndicate_mothership/control) -"lx" = ( +"alx" = ( /obj/structure/window/reinforced/survival_pod/spawner/directional/south{ name = "Tinted Window"; opacity = 1 @@ -4242,7 +4410,7 @@ }, /turf/open/floor/mineral/titanium/tiled/blue, /area/centcom/syndicate_mothership/control) -"ly" = ( +"aly" = ( /obj/machinery/status_display/evac/directional/west, /obj/machinery/light/directional/west, /obj/structure/railing/wood{ @@ -4250,18 +4418,18 @@ }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/evacuation) -"lz" = ( +"alz" = ( /obj/machinery/light/small/directional/north, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership) -"lA" = ( +"alA" = ( /obj/structure/railing/wood, /obj/structure/railing/wood{ dir = 4 }, /turf/open/floor/glass/reinforced, /area/centcom/central_command_areas/hall) -"lB" = ( +"alB" = ( /obj/effect/turf_decal/siding/wideplating{ dir = 1 }, @@ -4274,14 +4442,14 @@ dir = 4 }, /area/centcom/syndicate_mothership/control) -"lC" = ( +"alC" = ( /obj/effect/turf_decal/siding/dark/corner, /obj/effect/turf_decal/siding/dark{ dir = 9 }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/admin_hangout) -"lD" = ( +"alD" = ( /obj/effect/turf_decal/tile/dark/diagonal_edge, /obj/structure/table/wood/fancy/royalblue, /obj/effect/spawner/random/decoration/statue{ @@ -4292,14 +4460,14 @@ }, /turf/open/floor/iron/white/diagonal, /area/centcom/central_command_areas/hall) -"lE" = ( +"alE" = ( /obj/machinery/light/directional/west, /obj/effect/turf_decal/siding/wood{ dir = 10 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/hall) -"lF" = ( +"alF" = ( /obj/effect/turf_decal/siding/dark{ dir = 4 }, @@ -4308,20 +4476,20 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/admin) -"lG" = ( +"alG" = ( /obj/structure/showcase/machinery/rng, /turf/open/floor/engine/cult, /area/centcom/wizard_station) -"lH" = ( +"alH" = ( /obj/effect/turf_decal/siding/wood{ dir = 10 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/medical) -"lI" = ( +"alI" = ( /turf/open/floor/carpet/black, /area/centcom/central_command_areas/borbop) -"lJ" = ( +"alJ" = ( /obj/machinery/door/airlock/centcom{ name = "Shuttle Control Office" }, @@ -4330,7 +4498,7 @@ /obj/effect/mapping_helpers/airlock/access/any/admin/general, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"lK" = ( +"alK" = ( /obj/machinery/door/airlock/centcom{ name = "CentCom Supply" }, @@ -4339,23 +4507,23 @@ /obj/effect/mapping_helpers/airlock/access/any/admin/general, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"lL" = ( +"alL" = ( /obj/machinery/computer/operating{ dir = 8 }, /turf/open/floor/mineral/titanium/tiled/white, /area/centcom/central_command_areas/admin) -"lM" = ( +"alM" = ( /obj/structure/toilet{ dir = 1 }, /turf/open/floor/iron/white, /area/centcom/wizard_station) -"lN" = ( +"alN" = ( /obj/structure/extinguisher_cabinet/directional/west, /turf/open/floor/mineral/titanium, /area/centcom/syndicate_mothership/control) -"lO" = ( +"alO" = ( /obj/machinery/mecha_part_fabricator/maint, /obj/effect/turf_decal/siding/dark/end{ dir = 4 @@ -4383,49 +4551,49 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/admin) -"lP" = ( +"alP" = ( /obj/machinery/light/cold/directional/south, /turf/open/floor/mineral/titanium, /area/centcom/syndicate_mothership/control) -"lQ" = ( +"alQ" = ( /obj/machinery/computer/records/medical/laptop, /obj/structure/table/wood, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin) -"lR" = ( +"alR" = ( /obj/structure/chair/stool/directional/west, /obj/effect/landmark/start/nukeop, /turf/open/floor/wood/tile, /area/centcom/syndicate_mothership/control) -"lS" = ( +"alS" = ( /obj/structure/fans/tiny/invisible, /turf/open/floor/holofloor/hyperspace, /area/centcom/central_command_areas/supplypod/supplypod_temp_holding) -"lT" = ( +"alT" = ( /obj/effect/turf_decal/siding/green{ dir = 5 }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/botany) -"lU" = ( +"alU" = ( /obj/machinery/light/floor/has_bulb, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership/control) -"lV" = ( +"alV" = ( /turf/open/indestructible/hive, /area/station/hive/four) -"lW" = ( +"alW" = ( /obj/effect/turf_decal/siding/thinplating_new/dark, /obj/machinery/camera/autoname/directional/south{ network = list("nukie") }, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership/control) -"lX" = ( +"alX" = ( /obj/machinery/light/floor/has_bulb, /turf/open/floor/carpet/black, /area/centcom/central_command_areas/borbop) -"lY" = ( +"alY" = ( /obj/structure/table/reinforced, /obj/item/paper/fluff/stations/centcom/disk_memo{ pixel_x = -6; @@ -4437,24 +4605,24 @@ /obj/item/stack/spacecash/c50, /turf/open/floor/carpet, /area/centcom/syndicate_mothership/control) -"lZ" = ( +"alZ" = ( /obj/effect/turf_decal/siding/blue{ dir = 8 }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/medical) -"ma" = ( +"ama" = ( /obj/structure/table/wood, /obj/machinery/computer/security/wooden_tv, /obj/machinery/light/small/directional/east, /turf/open/floor/carpet, /area/centcom/central_command_areas/admin) -"mb" = ( +"amb" = ( /obj/machinery/light/floor/has_bulb, /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood/large, /area/centcom/central_command_areas/medical) -"mc" = ( +"amc" = ( /obj/effect/turf_decal/siding/dark{ dir = 9 }, @@ -4469,41 +4637,41 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron/white/herringbone, /area/centcom/central_command_areas/kitchen) -"md" = ( +"amd" = ( /obj/machinery/computer/shuttle/labor, /obj/effect/turf_decal/stripes/line{ dir = 10 }, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"me" = ( +"ame" = ( /obj/machinery/computer/shuttle/mining, /obj/effect/turf_decal/stripes/line{ dir = 6 }, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"mf" = ( +"amf" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood/tile, /area/centcom/central_command_areas/evacuation/ship) -"mg" = ( +"amg" = ( /obj/effect/landmark/navigate_destination/centcom/hydro, /turf/open/floor/wood/large, /area/centcom/central_command_areas/botany) -"mh" = ( +"amh" = ( /obj/structure/bed, /obj/item/bedsheet/centcom, /obj/item/toy/plush/lizard_plushie/green, /turf/open/floor/iron/dark/small, /area/centcom/central_command_areas/admin) -"mi" = ( +"ami" = ( /obj/effect/turf_decal/tile/brown/anticorner/contrasted{ dir = 1 }, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"mj" = ( +"amj" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 5 }, @@ -4512,7 +4680,7 @@ /obj/effect/turf_decal/tile/blue/fourcorners, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership/control) -"mk" = ( +"amk" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 }, @@ -4521,30 +4689,30 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/kitchen) -"ml" = ( +"aml" = ( /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood/large, /area/centcom/central_command_areas/evacuation) -"mm" = ( +"amm" = ( /obj/effect/turf_decal/bot, /obj/effect/spawner/random/entertainment/money_medium, /obj/structure/closet/crate/mail/full, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"mn" = ( +"amn" = ( /obj/machinery/camera/autoname/directional/south{ network = list("nukie") }, /obj/structure/cable, /turf/open/floor/catwalk_floor/iron_smooth, /area/centcom/syndicate_mothership/control) -"mo" = ( +"amo" = ( /obj/effect/turf_decal/stripes{ dir = 4 }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/arcade) -"mp" = ( +"amp" = ( /obj/structure/chair/wood{ dir = 4 }, @@ -4553,7 +4721,7 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/kitchen) -"mq" = ( +"amq" = ( /obj/structure/table/reinforced/plastitaniumglass{ name = "Andrea's Desk" }, @@ -4563,13 +4731,44 @@ /obj/item/lighter/skull, /turf/open/floor/carpet/royalblue, /area/centcom/central_command_areas/admin) -"mr" = ( +"amr" = ( /obj/effect/turf_decal/siding/blue{ dir = 8 }, /turf/open/floor/iron/dark/diagonal, /area/centcom/central_command_areas/medical) -"mt" = ( +"ams" = ( +/obj/structure/rack, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/item/clothing/shoes/sneakers/green{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/clothing/shoes/sneakers/red{ + pixel_x = 4; + pixel_y = -1 + }, +/obj/item/clothing/shoes/workboots{ + pixel_x = 6; + pixel_y = -2 + }, +/obj/item/clothing/shoes/winterboots{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/item/clothing/shoes/cowboyboots{ + pixel_x = -5; + pixel_y = 8 + }, +/obj/item/clothing/shoes/sneakers/blue{ + pixel_x = -6; + pixel_y = 5 + }, +/turf/open/floor/wood/parquet, +/area/centcom/central_command_areas/retirement_home) +"amt" = ( /obj/structure/table/reinforced, /obj/machinery/microwave{ pixel_y = 3 @@ -4580,13 +4779,13 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/borbop) -"mu" = ( +"amu" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, /obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, /turf/open/floor/catwalk_floor/iron_smooth, /area/centcom/syndicate_mothership/control) -"mv" = ( +"amv" = ( /obj/structure/table/wood/fancy/royalblue, /obj/structure/window/reinforced/spawner/directional/west, /obj/machinery/door/window/brigdoor/security, @@ -4596,10 +4795,10 @@ }, /turf/open/floor/glass/reinforced, /area/centcom/central_command_areas/admin) -"mw" = ( +"amw" = ( /turf/closed/indestructible/fakeglass, /area/centcom/central_command_areas/firing_range_checkpoint_control) -"mx" = ( +"amx" = ( /obj/machinery/power/shuttle_engine/heater{ resistance_flags = 3 }, @@ -4609,12 +4808,12 @@ }, /turf/open/lava/airless, /area/centcom/wizard_station) -"my" = ( +"amy" = ( /obj/effect/turf_decal/bot, /obj/structure/closet/crate/medical, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"mz" = ( +"amz" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 1 }, @@ -4646,13 +4845,13 @@ }, /turf/open/floor/mineral/plastitanium/red, /area/centcom/syndicate_mothership/expansion_bioterrorism) -"mA" = ( +"amA" = ( /obj/machinery/computer/records/medical{ dir = 1 }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/admin_hangout) -"mB" = ( +"amB" = ( /obj/item/kirbyplants{ icon_state = "plant-10" }, @@ -4660,25 +4859,25 @@ /obj/structure/sign/clock/directional/north, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/evacuation/ship) -"mC" = ( +"amC" = ( /obj/structure/table/wood/fancy/royalblack, /turf/open/floor/carpet, /area/centcom/central_command_areas/kitchen) -"mD" = ( +"amD" = ( /turf/closed/indestructible/riveted, /area/centcom/central_command_areas/ferry) -"mE" = ( +"amE" = ( /obj/structure/chair/office{ dir = 4 }, /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/centcom/syndicate_mothership/control) -"mF" = ( +"amF" = ( /obj/machinery/light/small/directional/west, /turf/open/floor/engine/cult, /area/centcom/wizard_station) -"mG" = ( +"amG" = ( /obj/machinery/computer/cargo{ dir = 4 }, @@ -4688,7 +4887,7 @@ /obj/machinery/status_display/ai/directional/west, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"mH" = ( +"amH" = ( /obj/structure/chair/office{ dir = 8 }, @@ -4697,7 +4896,7 @@ }, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"mI" = ( +"amI" = ( /obj/structure/chair/office{ dir = 1 }, @@ -4706,16 +4905,16 @@ }, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"mJ" = ( +"amJ" = ( /obj/structure/curtain/bounty, /turf/closed/indestructible/fakeglass, /area/centcom/central_command_areas/admin) -"mK" = ( +"amK" = ( /obj/machinery/light/cold/directional/east, /obj/item/kirbyplants/random, /turf/open/floor/mineral/titanium, /area/centcom/syndicate_mothership/control) -"mL" = ( +"amL" = ( /obj/machinery/light/small/red/directional/west, /obj/structure/sign/poster/contraband/soviet_propaganda{ pixel_x = -32 @@ -4723,41 +4922,47 @@ /obj/item/stack/sheet/cardboard/fifty, /turf/open/floor/mineral/titanium/yellow, /area/centcom/syndicate_mothership/control) -"mM" = ( +"amM" = ( /obj/machinery/light/floor/has_bulb, /turf/open/floor/plating, /area/centcom/syndicate_mothership/control) -"mO" = ( +"amN" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/wood/large, +/area/centcom/central_command_areas/retirement_home) +"amO" = ( /obj/machinery/light/cold/directional/north, /turf/open/floor/iron/dark/textured_half{ dir = 8 }, /area/centcom/syndicate_mothership/control) -"mP" = ( +"amP" = ( /obj/structure/hedge, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin_hangout) -"mQ" = ( +"amQ" = ( /turf/closed/indestructible/riveted, /area/centcom/central_command_areas/kitchen) -"mR" = ( +"amR" = ( /obj/machinery/vending/cigarette, /obj/effect/turf_decal/siding/wood{ dir = 9 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/kitchen) -"mS" = ( +"amS" = ( /obj/machinery/light/small/directional/north, /obj/machinery/camera/autoname/directional/east{ network = list("nukie") }, /turf/open/misc/asteroid/snow/icemoon, /area/centcom/syndicate_mothership/control) -"mT" = ( +"amT" = ( /turf/open/floor/circuit/red/off, /area/centcom/syndicate_mothership/expansion_bioterrorism) -"mU" = ( +"amU" = ( /obj/structure/flora/tree/palm, /obj/item/toy/plush/beeplushie{ pixel_y = 5; @@ -4765,7 +4970,7 @@ }, /turf/open/floor/grass, /area/centcom/central_command_areas/evacuation/ship) -"mV" = ( +"amV" = ( /obj/structure/hedge, /obj/effect/turf_decal/siding/wood{ dir = 5 @@ -4780,7 +4985,7 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/borbop) -"mW" = ( +"amW" = ( /obj/machinery/light/floor/has_bulb, /obj/effect/turf_decal/trimline/green, /obj/effect/turf_decal/siding/green/end{ @@ -4789,14 +4994,14 @@ /obj/effect/turf_decal/tile/dark_blue/diagonal_centre, /turf/open/floor/iron/dark/diagonal, /area/centcom/central_command_areas/botany) -"mX" = ( +"amX" = ( /obj/structure/sign/poster/contraband/random/directional/south, /obj/structure/chair/pew/right{ dir = 8 }, /turf/open/floor/iron/dark/textured, /area/centcom/central_command_areas/arcade) -"mY" = ( +"amY" = ( /obj/structure/table/wood, /obj/item/gun/magic/wand{ desc = "Used in emergencies to reignite magma engines."; @@ -4805,7 +5010,7 @@ }, /turf/open/floor/engine/cult, /area/centcom/wizard_station) -"mZ" = ( +"amZ" = ( /obj/effect/turf_decal/siding/dark{ dir = 1 }, @@ -4816,14 +5021,14 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/hall) -"na" = ( +"ana" = ( /obj/structure/sign/poster/contraband/random/directional/west, /obj/structure/chair/pew{ dir = 4 }, /turf/open/floor/iron/dark/textured, /area/centcom/central_command_areas/arcade) -"nb" = ( +"anb" = ( /obj/effect/turf_decal/siding/wideplating_new/dark{ dir = 8 }, @@ -4840,7 +5045,7 @@ }, /turf/open/floor/iron/dark/textured_large, /area/centcom/central_command_areas/evacuation/ship) -"nc" = ( +"anc" = ( /obj/effect/turf_decal/siding/dark{ dir = 1 }, @@ -4850,7 +5055,7 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/hall) -"nd" = ( +"and" = ( /obj/structure/chair/wood{ dir = 4 }, @@ -4860,12 +5065,12 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/kitchen) -"ne" = ( +"ane" = ( /obj/effect/turf_decal/siding/thinplating_new/dark/end, /obj/machinery/vending/hydronutrients, /turf/open/floor/mineral/plastitanium/red, /area/centcom/syndicate_mothership/expansion_bioterrorism) -"nf" = ( +"anf" = ( /obj/effect/turf_decal/siding/dark/corner{ dir = 4 }, @@ -4874,23 +5079,23 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/admin_hangout) -"ng" = ( +"ang" = ( /obj/structure/railing/wood, /obj/structure/railing/wood{ dir = 8 }, /turf/open/floor/grass, /area/centcom/central_command_areas/hall) -"nh" = ( +"anh" = ( /obj/structure/railing/wood, /turf/open/floor/grass, /area/centcom/central_command_areas/hall) -"ni" = ( +"ani" = ( /obj/item/fish/chasm_crab, /obj/structure/fans/tiny/invisible, /turf/open/floor/iron, /area/centcom/central_command_areas/admin) -"nj" = ( +"anj" = ( /obj/item/kirbyplants{ icon_state = "plant-22" }, @@ -4898,13 +5103,13 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/ferry) -"nk" = ( +"ank" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/ghost_spawn) -"nl" = ( +"anl" = ( /obj/machinery/computer/security/mining{ dir = 4 }, @@ -4914,32 +5119,32 @@ /obj/machinery/status_display/evac/directional/west, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"nm" = ( +"anm" = ( /obj/effect/turf_decal/tile/brown/anticorner/contrasted{ dir = 8 }, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"nn" = ( +"ann" = ( /obj/structure/chair/office, /obj/effect/turf_decal/tile/brown/half/contrasted, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"no" = ( +"ano" = ( /obj/machinery/camera/autoname/directional/east{ network = list("nukie") }, /obj/structure/closet/crate/cardboard/mothic, /turf/open/floor/plating, /area/centcom/syndicate_mothership/control) -"np" = ( +"anp" = ( /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"nq" = ( +"anq" = ( /obj/structure/stone_tile/slab, /turf/open/misc/snow/actually_safe, /area/centcom/central_command_areas/admin) -"nr" = ( +"anr" = ( /obj/machinery/light/directional/east{ dir = 8 }, @@ -4954,12 +5159,12 @@ /obj/item/reagent_containers/cup/beaker/meta/omnizine, /turf/open/floor/mineral/titanium/tiled/white, /area/centcom/central_command_areas/admin) -"ns" = ( +"ans" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/structure/railing/wood, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin_hangout) -"nt" = ( +"ant" = ( /obj/machinery/vending/wardrobe/chem_wardrobe, /obj/effect/turf_decal/siding/dark, /obj/effect/turf_decal/siding/dark{ @@ -4969,7 +5174,7 @@ dir = 1 }, /area/centcom/central_command_areas/hall) -"nu" = ( +"anu" = ( /obj/effect/light_emitter{ set_cap = 1; set_luminosity = 4 @@ -4977,7 +5182,7 @@ /obj/structure/flora/tree/pine/style_random, /turf/open/misc/asteroid/snow/airless, /area/centcom/syndicate_mothership) -"nv" = ( +"anv" = ( /obj/effect/turf_decal/siding/blue{ dir = 8 }, @@ -4986,29 +5191,29 @@ }, /turf/open/floor/iron/dark/diagonal, /area/centcom/central_command_areas/medical) -"nw" = ( +"anw" = ( /obj/effect/turf_decal/tile/dark/diagonal_edge, /obj/structure/table/wood/fancy/royalblue, /turf/open/floor/iron/white/diagonal, /area/centcom/central_command_areas/hall) -"nx" = ( +"anx" = ( /turf/open/floor/iron/white/side{ dir = 1 }, /area/centcom/central_command_areas/admin) -"ny" = ( +"any" = ( /obj/machinery/computer/operating{ dir = 8 }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/medical) -"nz" = ( +"anz" = ( /obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ dir = 6 }, /turf/open/floor/mineral/titanium/tiled/yellow, /area/centcom/syndicate_mothership/expansion_bombthreat) -"nA" = ( +"anA" = ( /obj/effect/mapping_helpers/airlock/access/any/admin/captain, /obj/machinery/door/airlock/sandstone{ dir = 4; @@ -5016,12 +5221,12 @@ }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin) -"nB" = ( +"anB" = ( /obj/structure/filingcabinet/filingcabinet, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/ferry) -"nC" = ( +"anC" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/structure/railing/wood{ dir = 4 @@ -5031,24 +5236,24 @@ }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/hall) -"nD" = ( +"anD" = ( /obj/structure/flora/grass/both/style_random, /turf/open/misc/asteroid/snow/airless, /area/centcom/syndicate_mothership) -"nE" = ( +"anE" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 }, /obj/machinery/portable_atmospherics/canister/oxygen, /turf/open/floor/plating, /area/centcom/syndicate_mothership/expansion_bombthreat) -"nF" = ( +"anF" = ( /obj/effect/turf_decal/siding/wood{ dir = 10 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/ghost_spawn) -"nG" = ( +"anG" = ( /obj/machinery/computer/security/mining{ dir = 1 }, @@ -5058,20 +5263,27 @@ /obj/machinery/status_display/ai/directional/south, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"nH" = ( +"anH" = ( /obj/structure/urinal/directional/north, /turf/open/floor/iron/white, /area/centcom/wizard_station) -"nI" = ( +"anI" = ( /obj/structure/hedge, /obj/machinery/light/floor/has_bulb, /obj/machinery/light/directional/north, /turf/open/floor/wood/large, /area/centcom/central_command_areas/hall) -"nK" = ( +"anJ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/wood/large, +/area/centcom/central_command_areas/retirement_home) +"anK" = ( /turf/closed/indestructible/syndicate, /area/centcom/syndicate_mothership/control) -"nL" = ( +"anL" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/siding/red/corner{ dir = 4 @@ -5081,11 +5293,11 @@ }, /turf/open/floor/iron/dark/textured_large, /area/centcom/syndicate_mothership/control) -"nM" = ( +"anM" = ( /obj/effect/turf_decal/siding/thinplating_new/dark, /turf/open/floor/mineral/titanium, /area/centcom/syndicate_mothership/control) -"nN" = ( +"anN" = ( /obj/structure/railing/wood{ dir = 8 }, @@ -5094,19 +5306,19 @@ }, /turf/open/floor/glass/reinforced, /area/centcom/central_command_areas/hall) -"nO" = ( +"anO" = ( /obj/structure/cannon{ dir = 4; desc = "Resort to the cannon at the top of the stairs loaded with GRAPESHOT!" }, /turf/open/misc/grass, /area/centcom/central_command_areas/admin) -"nP" = ( +"anP" = ( /obj/structure/hedge, /obj/machinery/light/floor/has_bulb, /turf/open/floor/iron/dark, /area/centcom/tdome/observation) -"nQ" = ( +"anQ" = ( /obj/structure/carving_block{ color = "#cc9439" }, @@ -5114,29 +5326,32 @@ color = "#cc9439" }, /area/centcom/central_command_areas/admin) -"nR" = ( +"anR" = ( /obj/effect/turf_decal/siding/wood{ dir = 6 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/ghost_spawn) -"nS" = ( +"anS" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, /obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, /turf/open/floor/catwalk_floor/iron_smooth, /area/centcom/syndicate_mothership/control) -"nT" = ( +"anT" = ( /obj/item/kirbyplants/random, /obj/structure/cable, /turf/open/floor/iron/smooth, /area/centcom/syndicate_mothership/control) -"nU" = ( +"anU" = ( /obj/machinery/vending/boozeomat, /turf/open/floor/carpet/executive, /area/centcom/central_command_areas/admin) -"nW" = ( +"anV" = ( +/turf/closed/indestructible/rock, +/area/cruiser_dock) +"anW" = ( /obj/machinery/fax{ color = "#cc9439"; name = "Amun's Fax Machine"; @@ -5149,7 +5364,7 @@ color = "#cc9439" }, /area/centcom/central_command_areas/admin) -"nX" = ( +"anX" = ( /obj/structure/hedge, /obj/effect/turf_decal/siding/dark{ dir = 8 @@ -5162,7 +5377,7 @@ dir = 8 }, /area/centcom/central_command_areas/hall) -"nY" = ( +"anY" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/siding/red{ dir = 1 @@ -5170,7 +5385,7 @@ /obj/machinery/recharger, /turf/open/floor/iron/dark/textured_large, /area/centcom/syndicate_mothership/control) -"nZ" = ( +"anZ" = ( /obj/structure/lattice/catwalk, /obj/effect/turf_decal/stripes/line{ dir = 5 @@ -5184,16 +5399,16 @@ }, /turf/open/lava/plasma/ice_moon, /area/centcom/syndicate_mothership/control) -"oa" = ( +"aoa" = ( /obj/machinery/light/cold/directional/south, /obj/effect/turf_decal/siding/thinplating_new/dark, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership/control) -"ob" = ( +"aob" = ( /obj/structure/closet/secure_closet/armory2, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/firing_range_checkpoint_control) -"oc" = ( +"aoc" = ( /obj/structure/table/reinforced/plastitaniumglass, /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 8 @@ -5210,7 +5425,7 @@ /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/centcom/syndicate_mothership/control) -"od" = ( +"aod" = ( /obj/structure/railing/wood{ dir = 1 }, @@ -5219,13 +5434,13 @@ }, /turf/open/floor/grass, /area/centcom/central_command_areas/hall) -"oe" = ( +"aoe" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 8 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/botany) -"of" = ( +"aof" = ( /obj/effect/turf_decal/siding/wideplating_new/dark{ dir = 4 }, @@ -5236,70 +5451,70 @@ /obj/machinery/light/directional/west, /turf/open/floor/iron/dark/textured_large, /area/centcom/central_command_areas/evacuation/ship) -"og" = ( +"aog" = ( /obj/structure/railing, /turf/open/floor/iron/stairs/old{ dir = 8; initial_gas_mix = "TEMP=2.7" }, /area/centcom/syndicate_mothership) -"oh" = ( +"aoh" = ( /obj/machinery/shower/directional/south, /obj/structure/drain, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/hall) -"oi" = ( +"aoi" = ( /obj/structure/railing/wood, /obj/structure/railing/wood{ dir = 8 }, /turf/open/floor/glass/reinforced, /area/centcom/central_command_areas/admin_hangout) -"oj" = ( +"aoj" = ( /obj/structure/flora/grass/green/style_random, /turf/open/misc/snow/actually_safe, /area/centcom/central_command_areas/admin) -"ok" = ( +"aok" = ( /obj/structure/fight_button, /obj/machinery/light/floor/has_bulb, /obj/effect/landmark/navigate_destination/centcom/duelbutton, /turf/open/floor/wood/large, /area/centcom/tdome/observation) -"ol" = ( +"aol" = ( /obj/structure/hedge, /obj/machinery/light/directional/south, /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood/large, /area/centcom/central_command_areas/hall) -"om" = ( +"aom" = ( /obj/effect/grand_rune/finale, /obj/structure/chair/old, /turf/open/floor/plating/abductor, /area/centcom/central_command_areas/admin) -"on" = ( +"aon" = ( /obj/effect/turf_decal/siding/green{ dir = 4 }, /obj/structure/table/glass, /turf/open/floor/iron/dark/small, /area/centcom/central_command_areas/botany) -"oo" = ( +"aoo" = ( /obj/structure/fake_stairs/wood/directional/north, /turf/open/floor/wood/large, /area/centcom/central_command_areas/hall) -"op" = ( +"aop" = ( /obj/structure/window/reinforced/spawner/directional/north{ color = "#008000"; resistance_flags = 3 }, /turf/open/lava, /area/centcom/wizard_station) -"oq" = ( +"aoq" = ( /obj/structure/railing/wood, /obj/structure/fake_stairs/wood/directional/west, /turf/open/floor/wood/parquet, /area/centcom/central_command_areas/borbop) -"or" = ( +"aor" = ( /obj/effect/turf_decal/siding/dark{ dir = 4 }, @@ -5309,7 +5524,7 @@ /obj/machinery/light/directional/east, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/supply) -"os" = ( +"aos" = ( /obj/structure/table/reinforced, /obj/item/paper_bin, /obj/item/pen/red, @@ -5318,7 +5533,7 @@ }, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"ot" = ( +"aot" = ( /obj/structure/table/reinforced, /obj/item/stack/package_wrap, /obj/item/hand_labeler, @@ -5326,14 +5541,14 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"ou" = ( +"aou" = ( /obj/machinery/photocopier, /obj/effect/turf_decal/stripes/line{ dir = 6 }, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"ov" = ( +"aov" = ( /obj/machinery/computer/cargo{ dir = 8 }, @@ -5342,14 +5557,24 @@ }, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"ow" = ( +"aow" = ( /obj/structure/table/wood/fancy, /obj/item/storage/dice{ icon_state = "magicdicebag" }, /turf/open/floor/carpet, /area/centcom/wizard_station) -"oy" = ( +"aox" = ( +/obj/structure/table/wood, +/obj/structure/fluff/gramophone{ + pixel_y = 11 + }, +/obj/item/gun/ballistic/shotgun/doublebarrel/slugs{ + pixel_y = -4 + }, +/turf/open/floor/wood, +/area/centcom/central_command_areas/retirement_home) +"aoy" = ( /obj/machinery/vending/wardrobe/curator_wardrobe, /obj/effect/turf_decal/siding/dark, /obj/effect/turf_decal/siding/dark{ @@ -5359,7 +5584,7 @@ dir = 1 }, /area/centcom/central_command_areas/hall) -"oz" = ( +"aoz" = ( /obj/effect/light_emitter{ set_cap = 1; set_luminosity = 4 @@ -5367,37 +5592,44 @@ /obj/structure/flora/rock/icy/style_random, /turf/open/misc/asteroid/snow/airless, /area/centcom/syndicate_mothership) -"oB" = ( +"aoA" = ( +/obj/structure/decorative/shelf/milk_big, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/wood/large, +/area/centcom/central_command_areas/retirement_home) +"aoB" = ( /turf/closed/wall/vault/sandstone, /area/centcom/central_command_areas/admin) -"oC" = ( +"aoC" = ( /obj/machinery/door/airlock/medical/glass, /obj/effect/mapping_helpers/airlock/access/any/admin/captain, /turf/open/floor/glass/reinforced, /area/centcom/central_command_areas/admin) -"oD" = ( +"aoD" = ( /turf/closed/indestructible/opsglass, /area/centcom/syndicate_mothership/control) -"oE" = ( +"aoE" = ( /obj/machinery/light/floor/has_bulb, /obj/effect/turf_decal/siding/wood{ dir = 8 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/hall) -"oF" = ( +"aoF" = ( /obj/machinery/door/airlock/centcom, /obj/effect/mapping_helpers/airlock/access/any/admin/captain, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/firing_range_checkpoint_control) -"oG" = ( +"aoG" = ( /obj/structure/chair/wood{ dir = 8 }, /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood/large, /area/centcom/central_command_areas/kitchen) -"oH" = ( +"aoH" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 8 }, @@ -5431,28 +5663,28 @@ /obj/item/stack/sheet/mineral/plasma, /turf/open/floor/mineral/plastitanium/red, /area/centcom/syndicate_mothership/expansion_bioterrorism) -"oI" = ( +"aoI" = ( /obj/structure/table/wood, /obj/item/clothing/suit/wizrobe/magusred, /obj/item/clothing/head/wizard/magus, /obj/item/staff, /turf/open/floor/engine/cult, /area/centcom/wizard_station) -"oJ" = ( +"aoJ" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"oK" = ( +"aoK" = ( /obj/machinery/airalarm/directional/south, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/briefing) -"oL" = ( +"aoL" = ( /obj/machinery/light/directional/east, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/armory) -"oM" = ( +"aoM" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/stripes/line{ dir = 5 @@ -5463,13 +5695,13 @@ }, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"oN" = ( +"aoN" = ( /obj/effect/turf_decal/tile/brown/anticorner/contrasted{ dir = 4 }, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"oO" = ( +"aoO" = ( /obj/machinery/computer/security/mining{ dir = 8 }, @@ -5478,7 +5710,7 @@ }, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"oP" = ( +"aoP" = ( /obj/structure/table/reinforced/plastitaniumglass, /obj/structure/showcase/machinery/tv{ desc = "Static fills the screen. If you can find the VCR, you might be able to watch those old Heist Movies again."; @@ -5490,7 +5722,7 @@ /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/centcom/syndicate_mothership/control) -"oQ" = ( +"aoQ" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -5501,14 +5733,30 @@ }, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership/control) -"oR" = ( +"aoR" = ( /turf/closed/indestructible/hive, /area/station/hive/three) -"oS" = ( +"aoS" = ( /obj/effect/turf_decal/siding/thinplating_new/dark, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership/control) -"oU" = ( +"aoT" = ( +/obj/structure/table/wood, +/obj/item/kirbyplants/organic/plant8{ + pixel_x = 7; + pixel_y = 8 + }, +/obj/item/storage/box/coffeepack/robusta{ + pixel_y = -2; + pixel_x = -6 + }, +/obj/item/storage/box/coffeepack{ + pixel_y = 8; + pixel_x = 3 + }, +/turf/open/floor/iron/terracotta/small, +/area/centcom/central_command_areas/retirement_home) +"aoU" = ( /obj/structure/closet/emcloset, /obj/item/tank/internals/emergency_oxygen/engi, /obj/item/tank/internals/emergency_oxygen/engi, @@ -5521,7 +5769,7 @@ /obj/machinery/status_display/evac/directional/south, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"oV" = ( +"aoV" = ( /obj/structure/sign/poster/contraband/free_drone{ pixel_y = 32 }, @@ -5529,11 +5777,11 @@ dir = 8 }, /area/centcom/syndicate_mothership/control) -"oW" = ( +"aoW" = ( /obj/structure/flora/bush/fullgrass/style_random, /turf/open/floor/grass, /area/centcom/central_command_areas/hall) -"oX" = ( +"aoX" = ( /obj/effect/turf_decal/siding/wideplating/dark{ dir = 1 }, @@ -5544,7 +5792,7 @@ /obj/effect/mapping_helpers/airlock/access/all/syndicate/general, /turf/open/floor/iron, /area/centcom/syndicate_mothership/control) -"oY" = ( +"aoY" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 }, @@ -5553,29 +5801,29 @@ }, /turf/open/floor/stone, /area/centcom/central_command_areas/evacuation/ship) -"oZ" = ( +"aoZ" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 4 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/ghost_spawn) -"pa" = ( +"apa" = ( /obj/item/kirbyplants/random, /obj/structure/cable, /turf/open/floor/catwalk_floor/iron_smooth, /area/centcom/syndicate_mothership/control) -"pb" = ( +"apb" = ( /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/grass, /area/centcom/wizard_station) -"pc" = ( +"apc" = ( /obj/machinery/vending/coffee, /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 4 }, /turf/open/floor/mineral/titanium, /area/centcom/syndicate_mothership/control) -"pd" = ( +"apd" = ( /obj/item/clipboard, /obj/item/stamp/denied{ pixel_x = 3; @@ -5586,24 +5834,24 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/supply) -"pe" = ( +"ape" = ( /obj/structure/table/wood, /obj/item/storage/fancy/donut_box, /obj/machinery/light/floor/has_bulb, /turf/open/floor/carpet/purple, /area/centcom/central_command_areas/admin) -"pf" = ( +"apf" = ( /obj/structure/chair/sofa/left/brown{ dir = 4 }, /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/centcom/syndicate_mothership/control) -"pg" = ( +"apg" = ( /obj/structure/flora/bush/large/style_3, /turf/open/floor/grass, /area/centcom/central_command_areas/botany) -"ph" = ( +"aph" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 }, @@ -5617,10 +5865,10 @@ }, /turf/open/lava/plasma/ice_moon, /area/centcom/syndicate_mothership/control) -"pi" = ( +"api" = ( /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin) -"pj" = ( +"apj" = ( /obj/structure/chair/office{ dir = 8 }, @@ -5629,7 +5877,7 @@ }, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"pk" = ( +"apk" = ( /obj/item/kirbyplants{ icon_state = "plant-05"; pixel_y = 20; @@ -5640,7 +5888,7 @@ }, /turf/open/floor/carpet, /area/centcom/central_command_areas/admin) -"pl" = ( +"apl" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 }, @@ -5654,12 +5902,12 @@ /obj/machinery/light/directional/east, /turf/open/floor/carpet/purple, /area/centcom/central_command_areas/admin) -"pm" = ( +"apm" = ( /obj/structure/flora/rock/pile/style_random, /obj/structure/flora/grass/both/style_random, /turf/open/misc/asteroid/snow/icemoon, /area/centcom/syndicate_mothership/control) -"pn" = ( +"apn" = ( /obj/structure/table/reinforced/plastitaniumglass, /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 8 @@ -5668,19 +5916,19 @@ /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/centcom/syndicate_mothership/control) -"po" = ( +"apo" = ( /obj/effect/turf_decal/siding/wood{ dir = 9 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/borbop) -"pp" = ( +"app" = ( /obj/structure/chair/office{ dir = 8 }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin) -"pq" = ( +"apq" = ( /obj/structure/railing/wood{ dir = 1 }, @@ -5688,7 +5936,7 @@ /obj/machinery/light/floor/has_bulb, /turf/open/floor/iron/dark, /area/centcom/tdome/observation) -"pr" = ( +"apr" = ( /obj/structure/table/wood, /obj/item/reagent_containers/cup/glass/bottle/beer{ pixel_x = 5; @@ -5701,43 +5949,50 @@ /obj/effect/spawner/random/aimodule/syndicate, /turf/open/floor/wood/tile, /area/centcom/syndicate_mothership/control) -"ps" = ( +"aps" = ( /obj/machinery/air_sensor{ chamber_id = "nukiebase"; name = "syndicate ordnance gas sensor" }, /turf/open/floor/engine/vacuum, /area/centcom/syndicate_mothership/expansion_bombthreat) -"pu" = ( +"apt" = ( +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/structure/flora/bush/fullgrass/style_2, +/turf/open/floor/grass, +/area/centcom/central_command_areas/retirement_yard) +"apu" = ( /obj/item/food/spaghetti/copypasta{ name = "Spaghetti Code"; desc = "Better file a bug report..." }, /turf/open/ai_visible, /area/centcom/ai_multicam_room) -"pv" = ( +"apv" = ( /obj/effect/rune/narsie, /obj/structure/chair/comfy/carp{ dir = 1 }, /turf/open/floor/plating/abductor, /area/centcom/central_command_areas/admin) -"pw" = ( +"apw" = ( /obj/effect/turf_decal/trimline/blue, /obj/machinery/light/floor/has_bulb, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/medical) -"px" = ( +"apx" = ( /obj/machinery/door/airlock/centcom, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/botany) -"py" = ( +"apy" = ( /obj/structure/chair/comfy/black{ dir = 8 }, /turf/open/floor/carpet/black, /area/centcom/central_command_areas/borbop) -"pz" = ( +"apz" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 }, @@ -5753,60 +6008,60 @@ }, /turf/open/floor/wood/parquet, /area/centcom/central_command_areas/borbop) -"pA" = ( +"apA" = ( /obj/effect/turf_decal/tile/dark/diagonal_edge, /obj/machinery/light/neon_lining{ icon_state = "pink2_1" }, /turf/open/floor/iron/white/diagonal, /area/centcom/central_command_areas/hall) -"pB" = ( +"apB" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 }, /turf/open/floor/iron, /area/centcom/central_command_areas/supplypod/loading/ert) -"pC" = ( +"apC" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/iron, /area/centcom/central_command_areas/supplypod/loading/ert) -"pD" = ( +"apD" = ( /obj/effect/turf_decal/stripes/line{ dir = 5 }, /turf/open/floor/iron, /area/centcom/central_command_areas/supplypod/loading/ert) -"pE" = ( +"apE" = ( /obj/effect/turf_decal/siding/thinplating_new/dark/corner, /obj/effect/turf_decal/siding/thinplating_new/dark/corner{ dir = 8 }, /turf/open/floor/mineral/plastitanium/red, /area/centcom/syndicate_mothership/expansion_bioterrorism) -"pF" = ( +"apF" = ( /obj/machinery/door/airlock/centcom{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/admin/captain, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/firing_range_checkpoint_control) -"pG" = ( +"apG" = ( /turf/closed/indestructible/riveted, /area/centcom/central_command_areas/hall) -"pH" = ( +"apH" = ( /obj/structure/flora/tree/palm{ icon_state = "palm2" }, /turf/open/floor/grass, /area/centcom/central_command_areas/evacuation/ship) -"pI" = ( +"apI" = ( /obj/machinery/shower/directional/north, /obj/structure/drain, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/hall) -"pJ" = ( +"apJ" = ( /obj/docking_port/stationary{ dir = 8; dwidth = 1; @@ -5817,27 +6072,27 @@ }, /turf/open/space/basic, /area/space) -"pK" = ( +"apK" = ( /obj/effect/turf_decal/stripes, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/arcade) -"pL" = ( +"apL" = ( /obj/structure/stone_tile/block{ dir = 1 }, /turf/open/misc/snow/actually_safe, /area/centcom/central_command_areas/admin) -"pM" = ( +"apM" = ( /obj/structure/chair/plastic, /turf/open/floor/iron/grimy, /area/centcom/central_command_areas/admin) -"pN" = ( +"apN" = ( /obj/effect/turf_decal/siding/wood{ dir = 9 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/evacuation) -"pO" = ( +"apO" = ( /obj/structure/table/glass/plasmaglass, /obj/item/pen{ pixel_x = 9; @@ -5880,7 +6135,7 @@ }, /turf/open/floor/mineral/titanium/tiled/yellow, /area/centcom/syndicate_mothership/expansion_chemicalwarfare) -"pP" = ( +"apP" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 }, @@ -5899,15 +6154,15 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin) -"pQ" = ( +"apQ" = ( /obj/effect/turf_decal/bot, /turf/closed/indestructible/riveted, /area/centcom/central_command_areas/supply) -"pR" = ( +"apR" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/ferry) -"pS" = ( +"apS" = ( /obj/structure/rack, /obj/item/clothing/ears/earmuffs{ pixel_x = 6; @@ -5918,57 +6173,57 @@ }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/firing_range) -"pT" = ( +"apT" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/iron, /area/centcom/central_command_areas/supplypod/loading/ert) -"pU" = ( +"apU" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, /area/centcom/central_command_areas/supplypod/loading/ert) -"pV" = ( +"apV" = ( /obj/structure/lattice, /obj/structure/window/reinforced/spawner, /turf/open/space/basic, /area/space/nearstation) -"pW" = ( +"apW" = ( /obj/effect/landmark/ai_multicam_room, /turf/open/ai_visible, /area/centcom/ai_multicam_room) -"pX" = ( +"apX" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 }, /turf/open/floor/iron, /area/centcom/central_command_areas/supplypod/loading/ert) -"pY" = ( +"apY" = ( /obj/structure/frame/computer{ dir = 1 }, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership) -"pZ" = ( +"apZ" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 }, /obj/structure/closet/emcloset, /turf/open/floor/iron/dark/smooth_large, /area/centcom/central_command_areas/evacuation/ship) -"qa" = ( +"aqa" = ( /obj/machinery/computer/records/security/laptop, /obj/structure/table/wood, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin) -"qb" = ( +"aqb" = ( /obj/item/stack/spacecash/c20, /turf/open/misc/asteroid/snow/icemoon, /area/centcom/syndicate_mothership/control) -"qc" = ( +"aqc" = ( /turf/open/floor/mineral/titanium/tiled/yellow, /area/centcom/syndicate_mothership/expansion_chemicalwarfare) -"qd" = ( +"aqd" = ( /obj/structure/rack, /obj/item/gun/energy/laser/practice{ pixel_x = 2; @@ -5984,7 +6239,7 @@ }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/firing_range) -"qe" = ( +"aqe" = ( /obj/structure/table/reinforced/titaniumglass, /obj/machinery/fax{ fax_name = "Cmdr. Abraxis"; @@ -5992,13 +6247,13 @@ }, /turf/open/floor/mineral/titanium/white, /area/centcom/central_command_areas/admin) -"qf" = ( +"aqf" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 1 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/hall) -"qg" = ( +"aqg" = ( /obj/effect/light_emitter{ set_cap = 1; set_luminosity = 4 @@ -6006,14 +6261,14 @@ /obj/structure/flora/tree/dead/style_random, /turf/open/misc/asteroid/snow/airless, /area/centcom/syndicate_mothership) -"qh" = ( +"aqh" = ( /obj/machinery/light/floor/has_bulb, /obj/effect/turf_decal/siding/wood{ dir = 1 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/hall) -"qi" = ( +"aqi" = ( /obj/effect/turf_decal/siding/wood{ dir = 10 }, @@ -6030,27 +6285,27 @@ }, /turf/open/floor/wood/parquet, /area/centcom/central_command_areas/borbop) -"qj" = ( +"aqj" = ( /obj/structure/flora/grass/both/style_random, /obj/structure/flora/tree/dead/style_random, /turf/open/misc/asteroid/snow/icemoon, /area/centcom/syndicate_mothership/control) -"qk" = ( +"aqk" = ( /obj/machinery/shuttle_manipulator, /turf/open/floor/circuit/red, /area/centcom/syndicate_mothership/control) -"ql" = ( +"aql" = ( /obj/structure/flora/grass/both/style_random, /obj/structure/flora/rock/pile/style_random, /turf/open/misc/asteroid/snow/icemoon, /area/centcom/syndicate_mothership/control) -"qm" = ( +"aqm" = ( /obj/structure/table/reinforced/titaniumglass, /obj/machinery/computer/records/security/laptop, /obj/machinery/light/floor/has_bulb, /turf/open/floor/mineral/titanium/white, /area/centcom/central_command_areas/admin) -"qn" = ( +"aqn" = ( /obj/structure/filingcabinet/filingcabinet, /obj/machinery/airalarm/directional/south, /obj/effect/turf_decal/stripes/line{ @@ -6058,7 +6313,7 @@ }, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"qo" = ( +"aqo" = ( /obj/structure/table/reinforced, /obj/item/folder, /obj/item/stamp/denied{ @@ -6072,7 +6327,7 @@ /obj/machinery/light/directional/south, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"qp" = ( +"aqp" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 8 }, @@ -6080,12 +6335,12 @@ /obj/machinery/door/airlock/maintenance_hatch, /turf/open/floor/catwalk_floor, /area/centcom/central_command_areas/evacuation/ship) -"qq" = ( +"aqq" = ( /obj/machinery/light/floor/has_bulb, /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood/large, /area/centcom/central_command_areas/hall) -"qr" = ( +"aqr" = ( /obj/machinery/light/small/directional/south, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, @@ -6093,11 +6348,11 @@ /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/centcom/syndicate_mothership/control) -"qs" = ( +"aqs" = ( /obj/effect/turf_decal/siding/thinplating_new/dark/corner, /turf/open/floor/mineral/plastitanium/red, /area/centcom/syndicate_mothership/expansion_bioterrorism) -"qt" = ( +"aqt" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 }, @@ -6108,7 +6363,7 @@ /obj/effect/mapping_helpers/airalarm/unlocked, /turf/open/floor/mineral/titanium/tiled/yellow, /area/centcom/syndicate_mothership/expansion_bombthreat) -"qu" = ( +"aqu" = ( /obj/effect/turf_decal/tile/dark/diagonal_edge, /obj/structure/table/wood/fancy/royalblue, /obj/effect/spawner/random/decoration/statue{ @@ -6123,31 +6378,35 @@ }, /turf/open/floor/iron/white/diagonal, /area/centcom/central_command_areas/hall) -"qv" = ( +"aqv" = ( /obj/structure/curtain/cloth/fancy, /obj/structure/fake_stairs/wood/directional/west, /turf/open/floor/wood/parquet, /area/centcom/central_command_areas/arcade) -"qw" = ( +"aqw" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/machinery/light/directional/north, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/hall) -"qx" = ( +"aqx" = ( /obj/structure/window/plasma/spawner/directional/east, /turf/open/floor/carpet/royalblue, /area/centcom/central_command_areas/admin) -"qy" = ( +"aqy" = ( /obj/structure/flora/rock/icy/style_random{ pixel_x = -7 }, /turf/open/misc/asteroid/snow/airless, /area/centcom/syndicate_mothership) -"qA" = ( +"aqz" = ( +/obj/effect/turf_decal/siding/white, +/turf/open/floor/grass, +/area/centcom/central_command_areas/retirement_yard) +"aqA" = ( /obj/structure/extinguisher_cabinet/directional/west, /turf/open/floor/iron/dark/textured_large, /area/centcom/syndicate_mothership/control) -"qB" = ( +"aqB" = ( /obj/structure/table/reinforced, /obj/item/reagent_containers/cup/beaker/bluespace, /obj/item/reagent_containers/cup/beaker/bluespace, @@ -6165,7 +6424,7 @@ /obj/machinery/door/window/right/directional/south, /turf/open/floor/iron/dark/diagonal, /area/centcom/central_command_areas/medical) -"qC" = ( +"aqC" = ( /obj/machinery/door/window/survival_pod{ dir = 8; name = "Toilet Door"; @@ -6181,31 +6440,31 @@ /obj/machinery/light/small/directional/east, /turf/open/floor/mineral/titanium, /area/centcom/syndicate_mothership/control) -"qD" = ( +"aqD" = ( /turf/closed/wall, /area/centcom/central_command_areas/arcade) -"qE" = ( +"aqE" = ( /obj/effect/turf_decal/siding/blue{ dir = 4 }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/medical) -"qF" = ( +"aqF" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 }, /turf/open/floor/iron, /area/centcom/central_command_areas/supplypod/loading/ert) -"qG" = ( +"aqG" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, /area/centcom/central_command_areas/supplypod/loading/ert) -"qH" = ( +"aqH" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/machinery/vending/wardrobe/jani_wardrobe, /turf/open/floor/iron/dark, /area/centcom/tdome/observation) -"qI" = ( +"aqI" = ( /obj/structure/rack, /obj/item/screwdriver, /obj/item/crowbar, @@ -6233,7 +6492,7 @@ /obj/item/stack/tile/carpet/fifty, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/arcade) -"qJ" = ( +"aqJ" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 }, @@ -6243,13 +6502,19 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/arcade) -"qK" = ( +"aqK" = ( /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/hall) -"qM" = ( +"aqL" = ( +/obj/structure/railing/wooden_fence{ + dir = 10 + }, +/turf/open/floor/wood, +/area/centcom/central_command_areas/retirement_home) +"aqM" = ( /turf/open/floor/glass/reinforced, /area/centcom/tdome/observation) -"qN" = ( +"aqN" = ( /obj/structure/table/wood/fancy/purple, /obj/item/paper_bin, /obj/item/pen/fourcolor, @@ -6257,7 +6522,7 @@ /obj/item/mod/control/pre_equipped/enchanted, /turf/open/floor/plating/abductor, /area/centcom/central_command_areas/admin) -"qO" = ( +"aqO" = ( /obj/effect/turf_decal/siding/wood{ dir = 5 }, @@ -6266,7 +6531,11 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/botany) -"qQ" = ( +"aqP" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/carpet/orange, +/area/centcom/central_command_areas/retirement_home) +"aqQ" = ( /obj/effect/turf_decal/siding/dark{ dir = 1 }, @@ -6274,26 +6543,26 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/supply) -"qR" = ( +"aqR" = ( /obj/structure/sign/nanotrasen, /turf/closed/indestructible/riveted, /area/centcom/central_command_areas/ferry) -"qS" = ( +"aqS" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 }, /obj/machinery/atmospherics/components/trinary/filter/flipped, /turf/open/floor/mineral/titanium/tiled/yellow, /area/centcom/syndicate_mothership/expansion_bombthreat) -"qT" = ( +"aqT" = ( /obj/machinery/light/floor/has_bulb, /turf/open/floor/carpet, /area/centcom/central_command_areas/kitchen) -"qU" = ( +"aqU" = ( /obj/structure/fence, /turf/open/misc/asteroid/snow/airless, /area/centcom/syndicate_mothership) -"qV" = ( +"aqV" = ( /obj/machinery/chem_master/condimaster{ desc = "Looks like a knock-off chem-master. Perhaps useful for separating liquids when mixing drinks precisely. Also dispenses condiments."; name = "HoochMaster Deluxe" @@ -6304,14 +6573,14 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/borbop) -"qW" = ( +"aqW" = ( /turf/open/floor/engine/vacuum, /area/centcom/syndicate_mothership/expansion_bombthreat) -"qX" = ( +"aqX" = ( /obj/structure/chair/wood/wings, /turf/open/floor/carpet, /area/centcom/wizard_station) -"qY" = ( +"aqY" = ( /obj/effect/turf_decal/siding/dark{ dir = 10 }, @@ -6319,7 +6588,7 @@ dir = 4 }, /area/centcom/central_command_areas/hall) -"qZ" = ( +"aqZ" = ( /obj/effect/turf_decal/siding/dark{ dir = 8 }, @@ -6328,7 +6597,7 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/admin) -"ra" = ( +"ara" = ( /obj/structure/hedge, /obj/effect/turf_decal/siding/wood{ dir = 9 @@ -6343,38 +6612,38 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/borbop) -"rb" = ( +"arb" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 }, /turf/open/floor/iron, /area/centcom/central_command_areas/supplypod/loading/ert) -"rc" = ( +"arc" = ( /obj/structure/dresser, /obj/structure/noticeboard/directional/north, /turf/open/floor/iron/smooth_half{ dir = 1 }, /area/centcom/syndicate_mothership/control) -"rd" = ( +"ard" = ( /obj/structure/hedge, /obj/machinery/light/floor/has_bulb, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/botany) -"re" = ( +"are" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, /obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, /turf/open/floor/catwalk_floor/iron_smooth, /area/centcom/syndicate_mothership/control) -"rf" = ( +"arf" = ( /obj/effect/turf_decal/siding/wood, /obj/effect/turf_decal/siding/wood/corner{ dir = 4 }, /turf/open/floor/wood/parquet, /area/centcom/central_command_areas/borbop) -"rg" = ( +"arg" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/structure/table/glass, /obj/item/reagent_containers/cup/glass/mug/tea{ @@ -6392,84 +6661,84 @@ /obj/machinery/light/floor/has_bulb, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/borbop) -"rh" = ( +"arh" = ( /obj/structure/light_prism, /turf/open/floor/plating/abductor, /area/centcom/central_command_areas/admin) -"ri" = ( +"ari" = ( /obj/structure/railing/wood{ dir = 8 }, /obj/structure/flora/bush/flowers_yw/style_random, /turf/open/floor/grass, /area/centcom/central_command_areas/hall) -"rj" = ( +"arj" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/hall) -"rk" = ( +"ark" = ( /turf/open/floor/catwalk_floor/iron_smooth, /area/centcom/syndicate_mothership/control) -"rl" = ( +"arl" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/structure/railing/wood{ dir = 8 }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/hall) -"rm" = ( +"arm" = ( /obj/machinery/computer/shuttle/labor, /obj/effect/turf_decal/stripes/line{ dir = 10 }, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"rn" = ( +"arn" = ( /obj/machinery/computer/shuttle/mining, /obj/effect/turf_decal/stripes/line{ dir = 6 }, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"ro" = ( +"aro" = ( /obj/structure/window/reinforced/tinted/frosted, /turf/open/floor/iron/dark/small, /area/centcom/central_command_areas/admin) -"rp" = ( +"arp" = ( /obj/effect/turf_decal/stripes/box, /obj/machinery/shower/directional/south, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership/control) -"rq" = ( +"arq" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/botany) -"rr" = ( +"arr" = ( /obj/effect/turf_decal/siding/green{ dir = 1 }, /turf/open/floor/iron/dark/small, /area/centcom/central_command_areas/botany) -"rs" = ( +"ars" = ( /obj/structure/rack, /obj/item/restraints/handcuffs/cable/pink, /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/centcom/syndicate_mothership/control) -"rt" = ( +"art" = ( /obj/machinery/computer/shuttle, /turf/open/floor/engine/cult, /area/centcom/wizard_station) -"ru" = ( +"aru" = ( /obj/effect/turf_decal/siding/wideplating/dark{ dir = 8 }, /obj/machinery/light/small/directional/north, /turf/open/floor/wood/tile, /area/centcom/syndicate_mothership/control) -"rv" = ( +"arv" = ( /obj/effect/turf_decal/siding/wideplating{ dir = 1 }, @@ -6482,7 +6751,11 @@ dir = 4 }, /area/centcom/syndicate_mothership/control) -"rx" = ( +"arw" = ( +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/wood/parquet, +/area/centcom/central_command_areas/retirement_home) +"arx" = ( /obj/structure/table/reinforced, /obj/item/knife/combat/survival{ pixel_x = 7; @@ -6499,49 +6772,49 @@ /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/centcom/syndicate_mothership/control) -"ry" = ( +"ary" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 10 }, /turf/open/misc/ice/icemoon, /area/centcom/syndicate_mothership/control) -"rz" = ( +"arz" = ( /obj/effect/turf_decal/siding/wood/corner, /turf/open/floor/wood/tile, /area/centcom/central_command_areas/evacuation/ship) -"rA" = ( +"arA" = ( /turf/open/floor/iron/smooth_half{ dir = 1 }, /area/centcom/syndicate_mothership/control) -"rB" = ( +"arB" = ( /obj/structure/table/reinforced, /obj/item/storage/fancy/donut_box, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/briefing) -"rC" = ( +"arC" = ( /obj/effect/turf_decal/trimline/red, /obj/effect/turf_decal/box/corners, /obj/effect/turf_decal/stripes/corner, /obj/effect/turf_decal/trimline/red, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership/expansion_chemicalwarfare) -"rD" = ( +"arD" = ( /turf/closed/indestructible/hive, /area/station/hive/two) -"rE" = ( +"arE" = ( /obj/structure/table/reinforced, /obj/item/radio, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/firing_range_checkpoint_control) -"rF" = ( +"arF" = ( /obj/structure/chair/sofa/right{ dir = 8 }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/botany) -"rG" = ( +"arG" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/structure/filingcabinet{ pixel_x = 9 @@ -6552,29 +6825,34 @@ }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/evacuation/ship) -"rH" = ( +"arH" = ( /obj/structure/closet/crate/bin{ name = "treat storage" }, /turf/open/misc/grass, /area/centcom/central_command_areas/admin) -"rJ" = ( +"arI" = ( +/obj/structure/flora/bush/fullgrass, +/obj/structure/flora/biolumi/mine, +/turf/open/floor/grass, +/area/centcom/central_command_areas/retirement_yard) +"arJ" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/components/tank/nitrogen, /turf/open/space/basic, /area/space/nearstation) -"rK" = ( +"arK" = ( /obj/structure/sign/poster/contraband/cc64k_ad, /turf/closed/indestructible/syndicate, /area/centcom/syndicate_mothership/control) -"rL" = ( +"arL" = ( /obj/effect/turf_decal/siding/green{ dir = 10 }, /obj/structure/hedge, /turf/open/floor/iron/dark/small, /area/centcom/central_command_areas/botany) -"rM" = ( +"arM" = ( /obj/effect/turf_decal/siding/green{ dir = 8 }, @@ -6583,27 +6861,27 @@ }, /turf/open/floor/iron/dark/small, /area/centcom/central_command_areas/botany) -"rN" = ( +"arN" = ( /obj/machinery/door/window/survival_pod{ name = "Frosted Door"; opacity = 1 }, /turf/open/floor/iron/freezer, /area/centcom/syndicate_mothership/control) -"rO" = ( +"arO" = ( /obj/effect/turf_decal/siding/thinplating_new/dark, /obj/structure/closet/syndicate/personal, /obj/effect/turf_decal/tile/red/full, /turf/open/floor/iron/dark/textured_half, /area/centcom/syndicate_mothership/control) -"rP" = ( +"arP" = ( /obj/effect/turf_decal/siding/blue{ dir = 1 }, /obj/structure/railing/wood, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/medical) -"rQ" = ( +"arQ" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/structure/table/reinforced, /obj/machinery/reagentgrinder{ @@ -6620,7 +6898,7 @@ }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/borbop) -"rR" = ( +"arR" = ( /obj/machinery/light/floor/has_bulb, /obj/structure/hedge, /obj/effect/turf_decal/siding/dark{ @@ -6631,26 +6909,26 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/borbop) -"rS" = ( +"arS" = ( /obj/machinery/vending/cola, /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 4 }, /turf/open/floor/mineral/titanium, /area/centcom/syndicate_mothership/control) -"rT" = ( +"arT" = ( /turf/open/lava/plasma/ice_moon, /area/centcom/syndicate_mothership/control) -"rU" = ( +"arU" = ( /obj/effect/baseturf_helper/asteroid/snow, /turf/closed/indestructible/syndicate, /area/centcom/syndicate_mothership/expansion_bioterrorism) -"rV" = ( +"arV" = ( /obj/structure/falsewall/reinforced, /obj/structure/fans/tiny/invisible, /turf/open/floor/plating, /area/centcom/central_command_areas/admin) -"rW" = ( +"arW" = ( /obj/structure/railing{ dir = 8; layer = 4.1 @@ -6664,21 +6942,21 @@ /obj/effect/turf_decal/siding/dark/corner, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/supply) -"rX" = ( +"arX" = ( /obj/structure/railing/wood{ dir = 4 }, /turf/open/floor/grass, /area/centcom/central_command_areas/hall) -"rY" = ( +"arY" = ( /obj/structure/sign/warning/secure_area, /turf/closed/indestructible/riveted, /area/centcom/central_command_areas/armory) -"rZ" = ( +"arZ" = ( /obj/structure/curtain/cloth/fancy, /turf/open/floor/carpet, /area/centcom/central_command_areas/admin_hangout) -"sa" = ( +"asa" = ( /obj/effect/turf_decal/siding/wood, /obj/structure/table/wood/fancy/black, /obj/machinery/light/neon_lining{ @@ -6694,37 +6972,37 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/borbop) -"sb" = ( +"asb" = ( /obj/structure/fake_stairs/wood/directional/north, /obj/structure/railing/wood{ dir = 8 }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/hall) -"sc" = ( +"asc" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/structure/chair/sofa/corp/right, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/hall) -"sd" = ( +"asd" = ( /obj/machinery/door/airlock/centcom{ name = "Orbital Drop Pod Loading" }, /obj/effect/mapping_helpers/airlock/access/any/admin/general, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"se" = ( +"ase" = ( /obj/structure/table/reinforced, /obj/item/storage/belt/utility/full/engi, /turf/open/floor/circuit/green, /area/centcom/central_command_areas/admin) -"sf" = ( +"asf" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 10 }, /turf/open/floor/mineral/plastitanium/red, /area/centcom/syndicate_mothership/expansion_bioterrorism) -"sg" = ( +"asg" = ( /obj/structure/lattice/catwalk, /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -6734,11 +7012,11 @@ }, /turf/open/lava/plasma/ice_moon, /area/centcom/syndicate_mothership/control) -"sh" = ( +"ash" = ( /obj/item/kirbyplants/random, /turf/open/floor/mineral/titanium/white, /area/centcom/central_command_areas/admin) -"si" = ( +"asi" = ( /obj/machinery/growing/tray, /obj/machinery/light/cold/directional/west, /obj/item/seeds/cannabis{ @@ -6750,7 +7028,7 @@ }, /turf/open/floor/mineral/titanium/tiled, /area/centcom/syndicate_mothership/expansion_bioterrorism) -"sj" = ( +"asj" = ( /obj/structure/hedge, /obj/effect/turf_decal/siding/wood{ dir = 6 @@ -6764,38 +7042,38 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/borbop) -"sk" = ( +"ask" = ( /obj/effect/baseturf_helper/asteroid/snow, /turf/closed/indestructible/rock/snow, /area/centcom/syndicate_mothership) -"sl" = ( +"asl" = ( /obj/structure/closet/gimmick/tacticool, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/firing_range_checkpoint_control) -"sm" = ( +"asm" = ( /obj/machinery/light/directional/south, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/evacuation/ship) -"sn" = ( +"asn" = ( /obj/structure/table/wood, /obj/machinery/fax{ fax_name = "Raziel's Desk" }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin) -"so" = ( +"aso" = ( /obj/effect/turf_decal/siding/green{ dir = 9 }, /turf/open/floor/iron/dark/small, /area/centcom/central_command_areas/botany) -"sp" = ( +"asp" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 }, /turf/open/floor/wood/parquet, /area/centcom/central_command_areas/arcade) -"sq" = ( +"asq" = ( /obj/machinery/computer/shuttle/white_ship{ dir = 4 }, @@ -6805,7 +7083,7 @@ /obj/machinery/status_display/ai/directional/west, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"sr" = ( +"asr" = ( /obj/structure/chair/office{ dir = 8 }, @@ -6814,13 +7092,13 @@ }, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"ss" = ( +"ass" = ( /obj/effect/turf_decal/tile/green{ dir = 1 }, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"st" = ( +"ast" = ( /obj/structure/chair/office{ dir = 1 }, @@ -6829,20 +7107,20 @@ }, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"su" = ( +"asu" = ( /obj/effect/turf_decal/tile/green{ dir = 4 }, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"sv" = ( +"asv" = ( /obj/structure/noticeboard/directional/east, /obj/effect/turf_decal/tile/green/anticorner/contrasted{ dir = 4 }, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"sw" = ( +"asw" = ( /obj/structure/railing{ dir = 8; layer = 4.1 @@ -6858,7 +7136,7 @@ }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/evacuation/ship) -"sx" = ( +"asx" = ( /obj/item/kirbyplants{ icon_state = "plant-21" }, @@ -6866,13 +7144,13 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/briefing) -"sy" = ( +"asy" = ( /obj/effect/turf_decal/siding/wideplating{ dir = 10 }, /turf/open/floor/plating, /area/centcom/syndicate_mothership/control) -"sz" = ( +"asz" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, @@ -6881,7 +7159,7 @@ /obj/item/stack/spacecash/c100, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership/control) -"sA" = ( +"asA" = ( /obj/effect/turf_decal/siding/dark, /obj/effect/turf_decal/siding/dark{ dir = 1 @@ -6889,7 +7167,7 @@ /obj/structure/mirror/directional/south, /turf/open/floor/iron/dark/side, /area/centcom/central_command_areas/hall) -"sB" = ( +"asB" = ( /obj/effect/turf_decal/siding/wideplating_new/dark{ dir = 8 }, @@ -6901,14 +7179,14 @@ /obj/machinery/light/directional/east, /turf/open/floor/iron/dark/textured_large, /area/centcom/central_command_areas/evacuation/ship) -"sC" = ( +"asC" = ( /obj/structure/table/reinforced, /obj/machinery/recharger{ pixel_y = 4 }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/firing_range) -"sD" = ( +"asD" = ( /obj/machinery/door/airlock/external/ruin, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 8 @@ -6917,16 +7195,16 @@ /obj/effect/mapping_helpers/airlock/access/all/syndicate/general, /turf/open/floor/plating, /area/centcom/syndicate_mothership/control) -"sE" = ( +"asE" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/armory) -"sF" = ( +"asF" = ( /obj/machinery/computer/crew, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/evacuation/ship) -"sG" = ( +"asG" = ( /obj/effect/turf_decal/siding/green, /obj/effect/turf_decal/siding/green/corner{ dir = 1 @@ -6934,19 +7212,19 @@ /obj/structure/railing/wood, /turf/open/floor/iron/dark/small, /area/centcom/central_command_areas/botany) -"sH" = ( +"asH" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/machinery/door/airlock/centcom, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/borbop) -"sI" = ( +"asI" = ( /turf/open/floor/carpet, /area/centcom/central_command_areas/admin) -"sJ" = ( +"asJ" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /turf/closed/indestructible/riveted, /area/centcom/central_command_areas/hall) -"sK" = ( +"asK" = ( /obj/machinery/door/airlock/centcom{ dir = 4; name = "Glyphee's Secret Office" @@ -6955,14 +7233,14 @@ /obj/structure/fans/tiny/invisible, /turf/open/floor/carpet/green, /area/centcom/central_command_areas/admin) -"sL" = ( +"asL" = ( /obj/effect/decal/cleanable/blood/splatter, /mob/living/basic/creature{ name = "Experiment 35b" }, /turf/open/floor/grass, /area/centcom/wizard_station) -"sM" = ( +"asM" = ( /obj/effect/turf_decal/siding/wood{ dir = 10 }, @@ -6972,16 +7250,16 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/borbop) -"sN" = ( +"asN" = ( /obj/machinery/light/cold/directional/west, /obj/structure/closet/crate/cardboard, /turf/open/floor/plating, /area/centcom/syndicate_mothership/control) -"sO" = ( +"asO" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/ghost_spawn) -"sP" = ( +"asP" = ( /obj/structure/hedge, /obj/effect/turf_decal/siding/dark{ dir = 8 @@ -6994,18 +7272,18 @@ dir = 4 }, /area/centcom/central_command_areas/hall) -"sQ" = ( +"asQ" = ( /turf/closed/indestructible/fakeglass{ color = "#008000" }, /area/centcom/wizard_station) -"sR" = ( +"asR" = ( /obj/structure/railing/wood, /obj/structure/table/reinforced, /obj/item/storage/medkit/tactical, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/medical) -"sS" = ( +"asS" = ( /obj/effect/turf_decal/siding/dark{ dir = 5 }, @@ -7014,26 +7292,26 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/hall) -"sT" = ( +"asT" = ( /obj/structure/chair/plastic{ dir = 4 }, /turf/open/floor/iron/grimy, /area/centcom/central_command_areas/admin) -"sU" = ( +"asU" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 8 }, /obj/effect/turf_decal/siding/wood/corner, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin) -"sV" = ( +"asV" = ( /obj/machinery/door/poddoor/shuttledock, /obj/effect/turf_decal/delivery, /obj/structure/fans/tiny, /turf/open/floor/iron, /area/centcom/central_command_areas/evacuation) -"sW" = ( +"asW" = ( /obj/structure/table/wood, /obj/item/bikehorn/golden{ pixel_x = -8; @@ -7041,16 +7319,16 @@ }, /turf/open/floor/engine/cult, /area/centcom/wizard_station) -"sX" = ( +"asX" = ( /obj/structure/table/wood, /turf/open/floor/iron/dark/textured_large, /area/centcom/central_command_areas/arcade) -"sY" = ( +"asY" = ( /obj/structure/table/reinforced, /obj/machinery/vending/medical, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/medical) -"sZ" = ( +"asZ" = ( /obj/structure/railing/corner{ dir = 4 }, @@ -7058,26 +7336,26 @@ /obj/structure/flora/grass/both/style_random, /turf/open/misc/asteroid/snow/icemoon, /area/centcom/syndicate_mothership/control) -"ta" = ( +"ata" = ( /obj/machinery/light/floor/has_bulb, /turf/closed/indestructible/fakeglass, /area/centcom/central_command_areas/ferry) -"tb" = ( +"atb" = ( /obj/structure/table/wood, /obj/item/paper_bin, /obj/item/pen/fourcolor, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/briefing) -"tc" = ( +"atc" = ( /obj/machinery/light/cold/directional/east, /turf/open/floor/iron/smooth, /area/centcom/syndicate_mothership/control) -"td" = ( +"atd" = ( /obj/structure/sign/departments/drop, /turf/closed/indestructible/riveted, /area/centcom/central_command_areas/ferry) -"te" = ( +"ate" = ( /obj/effect/turf_decal/siding/wood, /obj/structure/chair/wood{ dir = 4 @@ -7087,7 +7365,7 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/borbop) -"tf" = ( +"atf" = ( /obj/machinery/conveyor_switch/oneway{ id = "XCCQMLoad2"; pixel_x = 6 @@ -7104,7 +7382,7 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/supply) -"tg" = ( +"atg" = ( /obj/effect/turf_decal/siding/wideplating/dark, /obj/structure/chair/sofa/bench/left, /obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, @@ -7112,7 +7390,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, /turf/open/floor/stone, /area/centcom/syndicate_mothership/control) -"th" = ( +"ath" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 6 }, @@ -7122,24 +7400,24 @@ }, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership/control) -"ti" = ( +"ati" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/atmospherics/components/binary/pump/on, /turf/open/floor/mineral/titanium/tiled/yellow, /area/centcom/syndicate_mothership/expansion_bombthreat) -"tj" = ( +"atj" = ( /turf/closed/indestructible/rock/snow, /area/centcom/central_command_areas/admin) -"tk" = ( +"atk" = ( /obj/effect/turf_decal/trimline/blue, /obj/machinery/light/floor/has_bulb, /turf/open/floor/iron/dark/diagonal, /area/centcom/central_command_areas/medical) -"tl" = ( +"atl" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, /area/centcom/wizard_station) -"tm" = ( +"atm" = ( /obj/effect/turf_decal/siding/wideplating_new/dark{ dir = 8 }, @@ -7166,7 +7444,7 @@ /obj/machinery/light/directional/east, /turf/open/floor/iron/dark/textured_large, /area/centcom/central_command_areas/evacuation/ship) -"tn" = ( +"atn" = ( /obj/structure/chair{ dir = 8 }, @@ -7178,7 +7456,7 @@ /obj/machinery/light/directional/south, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"to" = ( +"ato" = ( /obj/machinery/computer/shuttle/ferry{ dir = 4 }, @@ -7188,34 +7466,34 @@ /obj/machinery/status_display/evac/directional/west, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"tp" = ( +"atp" = ( /obj/effect/turf_decal/tile/green/anticorner/contrasted{ dir = 8 }, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"tq" = ( +"atq" = ( /obj/structure/chair/office, /obj/effect/turf_decal/tile/green{ dir = 8 }, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"tr" = ( +"atr" = ( /obj/effect/turf_decal/tile/green{ dir = 8 }, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"ts" = ( +"ats" = ( /obj/effect/turf_decal/tile/green, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"tt" = ( +"att" = ( /obj/effect/turf_decal/tile/green/anticorner/contrasted, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"tu" = ( +"atu" = ( /obj/machinery/door/airlock/centcom{ name = "CentCom Supply" }, @@ -7224,31 +7502,31 @@ }, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"tv" = ( +"atv" = ( /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood/large, /area/centcom/central_command_areas/botany) -"tw" = ( +"atw" = ( /obj/structure/chair/sofa/corp/right{ dir = 8 }, /obj/effect/turf_decal/tile/dark/opposingcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin_hangout) -"tx" = ( +"atx" = ( /obj/structure/chair/sofa/corp{ dir = 8 }, /obj/effect/turf_decal/tile/dark/opposingcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin_hangout) -"ty" = ( +"aty" = ( /obj/structure/filingcabinet/security, /obj/machinery/status_display/evac/directional/south, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/briefing) -"tz" = ( +"atz" = ( /obj/effect/turf_decal/siding/wood{ dir = 9 }, @@ -7267,21 +7545,21 @@ /obj/machinery/barsign/all_access/directional/north, /turf/open/floor/wood/parquet, /area/centcom/central_command_areas/borbop) -"tA" = ( +"atA" = ( /obj/machinery/atmospherics/components/tank/air, /obj/effect/turf_decal/stripes/white/line, /obj/machinery/light/small/directional/north, /turf/open/floor/iron/smooth_large, /area/centcom/central_command_areas/evacuation/ship) -"tB" = ( +"atB" = ( /obj/machinery/computer/records/security, /turf/open/floor/carpet/royalblue, /area/centcom/central_command_areas/admin) -"tC" = ( +"atC" = ( /obj/machinery/vending/wardrobe/science_wardrobe, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/hall) -"tD" = ( +"atD" = ( /obj/item/pen/fourcolor{ pixel_x = 7; pixel_y = 11 @@ -7325,14 +7603,19 @@ /obj/machinery/light_switch/directional/north, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/arcade) -"tE" = ( +"atE" = ( /obj/structure/sign/poster/contraband/masked_men{ pixel_x = 32 }, /obj/machinery/chem_dispenser/fullupgrade, /turf/open/floor/mineral/titanium/tiled/yellow, /area/centcom/syndicate_mothership/expansion_chemicalwarfare) -"tG" = ( +"atF" = ( +/obj/structure/decorative/shelf/soda_multipacks, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/terracotta/small, +/area/centcom/central_command_areas/retirement_home) +"atG" = ( /obj/structure/railing{ dir = 6 }, @@ -7340,24 +7623,31 @@ initial_gas_mix = "TEMP=2.7" }, /area/centcom/syndicate_mothership) -"tH" = ( +"atH" = ( /obj/effect/turf_decal/siding/dark{ dir = 10 }, /obj/structure/hedge, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/hall) -"tI" = ( +"atI" = ( /obj/effect/turf_decal/tile/dark/diagonal_edge, /obj/machinery/deepfryer, /turf/open/floor/iron/white/diagonal, /area/centcom/central_command_areas/kitchen) -"tK" = ( +"atJ" = ( +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/structure/flora/biolumi/flower, +/turf/open/floor/grass, +/area/centcom/central_command_areas/retirement_yard) +"atK" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/tile/dark/opposingcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/kitchen) -"tL" = ( +"atL" = ( /obj/effect/turf_decal/siding/wood{ dir = 9 }, @@ -7366,12 +7656,12 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/kitchen) -"tM" = ( +"atM" = ( /obj/effect/turf_decal/stripes/corner, /obj/structure/railing/corner, /turf/open/floor/plating/icemoon, /area/centcom/syndicate_mothership/control) -"tN" = ( +"atN" = ( /obj/structure/chair/sofa/bench/left{ dir = 8 }, @@ -7381,7 +7671,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, /turf/open/floor/catwalk_floor/titanium, /area/centcom/syndicate_mothership/control) -"tO" = ( +"atO" = ( /obj/structure/lattice/catwalk, /obj/effect/turf_decal/stripes/line{ dir = 6 @@ -7395,7 +7685,7 @@ }, /turf/open/lava/plasma/ice_moon, /area/centcom/syndicate_mothership/control) -"tP" = ( +"atP" = ( /obj/structure/fence, /obj/effect/light_emitter{ set_cap = 1; @@ -7403,13 +7693,13 @@ }, /turf/open/misc/asteroid/snow/airless, /area/centcom/syndicate_mothership) -"tQ" = ( +"atQ" = ( /obj/machinery/atmospherics/pipe/smart/simple/general/hidden{ dir = 4 }, /turf/closed/indestructible/syndicate, /area/centcom/syndicate_mothership/expansion_bombthreat) -"tR" = ( +"atR" = ( /obj/effect/turf_decal/stripes{ dir = 6 }, @@ -7422,7 +7712,7 @@ /obj/structure/table, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/arcade) -"tS" = ( +"atS" = ( /obj/machinery/light/small/maintenance/directional/west, /obj/structure/window/reinforced/tinted, /obj/effect/spawner/random/trash/garbage{ @@ -7437,14 +7727,18 @@ }, /turf/open/floor/iron/grimy, /area/centcom/central_command_areas/admin) -"tU" = ( +"atT" = ( +/obj/structure/chair/comfy/brown, +/turf/open/floor/wood, +/area/centcom/central_command_areas/retirement_home) +"atU" = ( /turf/closed/indestructible/fakeglass, /area/centcom/tdome/observation) -"tV" = ( +"atV" = ( /obj/machinery/atmospherics/pipe/smart/simple/general/visible, /turf/closed/indestructible/opsglass, /area/centcom/syndicate_mothership/expansion_bombthreat) -"tW" = ( +"atW" = ( /obj/effect/turf_decal/siding/wood{ dir = 10 }, @@ -7453,20 +7747,20 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin) -"tX" = ( +"atX" = ( /obj/structure/chair/comfy{ dir = 8 }, /turf/open/floor/carpet/neon/simple/cyan, /area/centcom/central_command_areas/admin) -"tY" = ( +"atY" = ( /obj/structure/railing/wood{ dir = 1 }, /obj/structure/fake_stairs/wood/directional/west, /turf/open/floor/wood/parquet, /area/centcom/central_command_areas/borbop) -"tZ" = ( +"atZ" = ( /obj/structure/window/reinforced/survival_pod/spawner/directional/south{ name = "Tinted Window"; opacity = 1 @@ -7484,47 +7778,53 @@ }, /turf/open/floor/mineral/plastitanium/red, /area/centcom/syndicate_mothership/expansion_bombthreat) -"ua" = ( +"aua" = ( /obj/structure/curtain/cloth/fancy, /turf/closed/indestructible/fakeglass, /area/centcom/central_command_areas/admin) -"ub" = ( +"aub" = ( /obj/machinery/vending/wardrobe/det_wardrobe, /obj/machinery/light/directional/north, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/hall) -"uc" = ( +"auc" = ( /obj/structure/fake_stairs/wood/directional/west, /turf/open/floor/wood/large, /area/centcom/central_command_areas/hall) -"ud" = ( +"aud" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/stone, /area/centcom/central_command_areas/evacuation/ship) -"ue" = ( +"aue" = ( /obj/structure/chair/sofa/corp/right, /turf/open/floor/mineral/titanium/white, /area/centcom/central_command_areas/admin) -"uf" = ( +"auf" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 1 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin_hangout) -"uh" = ( +"aug" = ( +/obj/structure/railing/wooden_fence{ + dir = 8 + }, +/turf/open/floor/wood, +/area/centcom/central_command_areas/retirement_home) +"auh" = ( /turf/open/floor/carpet/purple, /area/centcom/central_command_areas/admin) -"ui" = ( +"aui" = ( /obj/effect/turf_decal/siding/dark, /obj/effect/turf_decal/siding/dark{ dir = 1 }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/borbop) -"uj" = ( +"auj" = ( /obj/structure/hedge, /obj/structure/railing/wood, /obj/structure/railing/wood{ @@ -7532,17 +7832,17 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin_hangout) -"uk" = ( +"auk" = ( /turf/open/misc/grass, /area/centcom/central_command_areas/admin) -"ul" = ( +"aul" = ( /obj/structure/disposalpipe/trunk{ dir = 4 }, /obj/structure/fans/tiny/invisible, /turf/open/floor/iron, /area/centcom/central_command_areas/admin) -"um" = ( +"aum" = ( /obj/machinery/computer/communications{ dir = 1 }, @@ -7551,7 +7851,7 @@ }, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"un" = ( +"aun" = ( /obj/structure/window/reinforced/survival_pod/spawner/directional/south{ name = "Tinted Window"; opacity = 1 @@ -7562,22 +7862,22 @@ /obj/machinery/portable_atmospherics/canister/oxygen, /turf/open/floor/plating, /area/centcom/syndicate_mothership/expansion_bombthreat) -"uo" = ( +"auo" = ( /obj/structure/fans/tiny/invisible, /turf/open/floor/carpet/green, /area/centcom/central_command_areas/admin) -"up" = ( +"aup" = ( /obj/machinery/light/directional/east{ dir = 8 }, /turf/open/floor/glass/reinforced, /area/centcom/central_command_areas/admin) -"uq" = ( +"auq" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/structure/chair/stool/bar/directional/south, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/borbop) -"ur" = ( +"aur" = ( /obj/machinery/modular_computer/preset/id/centcom{ dir = 4; desc = "A specialized console to connect to gaming computers to be able to broadcast live. Seriously, where does Ook find this stuff?" @@ -7586,13 +7886,13 @@ /obj/machinery/light/floor/has_bulb, /turf/open/floor/carpet/green, /area/centcom/central_command_areas/admin) -"us" = ( +"aus" = ( /obj/effect/turf_decal/siding/blue{ dir = 6 }, /turf/open/floor/iron/dark/diagonal, /area/centcom/central_command_areas/medical) -"ut" = ( +"aut" = ( /obj/docking_port/stationary{ dir = 8; dwidth = 1; @@ -7603,12 +7903,12 @@ }, /turf/open/space/basic, /area/space) -"uu" = ( +"auu" = ( /obj/structure/table/wood, /obj/machinery/computer/records/medical/laptop, /turf/open/floor/iron/grimy, /area/centcom/central_command_areas/admin) -"uv" = ( +"auv" = ( /obj/machinery/door/airlock/centcom{ dir = 4; name = "Glyphee's Garbage Dump" @@ -7616,7 +7916,7 @@ /obj/structure/fans/tiny/invisible, /turf/open/floor/iron, /area/centcom/central_command_areas/admin) -"uw" = ( +"auw" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 }, @@ -7632,14 +7932,14 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/medical) -"ux" = ( +"aux" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 }, /obj/structure/hedge, /turf/open/floor/wood/large, /area/centcom/central_command_areas/medical) -"uy" = ( +"auy" = ( /obj/structure/chair/wood{ dir = 8 }, @@ -7648,7 +7948,7 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/kitchen) -"uz" = ( +"auz" = ( /obj/docking_port/stationary{ dir = 4; dwidth = 25; @@ -7660,13 +7960,13 @@ }, /turf/open/space, /area/space) -"uA" = ( +"auA" = ( /obj/effect/turf_decal/siding/wood{ dir = 9 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/ghost_spawn) -"uB" = ( +"auB" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 }, @@ -7678,23 +7978,23 @@ }, /turf/open/floor/carpet/neon/simple/black, /area/centcom/central_command_areas/admin) -"uC" = ( +"auC" = ( /obj/structure/railing/wood, /turf/open/floor/glass/reinforced, /area/centcom/central_command_areas/hall) -"uD" = ( +"auD" = ( /obj/structure/table/wood, /obj/machinery/computer/records/medical/laptop, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin) -"uE" = ( +"auE" = ( /obj/structure/hedge, /obj/structure/railing/wood, /obj/machinery/light/floor/has_bulb, /obj/effect/turf_decal/trimline/green/line, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/botany) -"uF" = ( +"auF" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/structure/railing/wood{ dir = 4 @@ -7704,27 +8004,36 @@ }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin_hangout) -"uG" = ( +"auG" = ( /turf/closed/indestructible/opsglass, /area/centcom/syndicate_mothership/expansion_bioterrorism) -"uH" = ( +"auH" = ( /obj/effect/turf_decal/stripes/line, /turf/closed/indestructible/riveted, /area/centcom/central_command_areas/supply) -"uI" = ( +"auI" = ( /obj/effect/turf_decal/siding/wood{ dir = 10 }, /obj/machinery/vending/donksofttoyvendor, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin_hangout) -"uJ" = ( +"auJ" = ( /obj/effect/turf_decal/siding/green/corner{ dir = 8 }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/botany) -"uL" = ( +"auK" = ( +/obj/structure/grandfatherclock{ + pixel_y = 15 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/wood/large, +/area/centcom/central_command_areas/retirement_home) +"auL" = ( /obj/item/toy/eightball{ pixel_y = 8; pixel_x = -6 @@ -7732,18 +8041,18 @@ /obj/structure/table/wood, /turf/open/floor/iron/dark/textured_large, /area/centcom/central_command_areas/arcade) -"uM" = ( +"auM" = ( /obj/structure/sign/poster/contraband/free_key, /turf/closed/indestructible/syndicate, /area/centcom/syndicate_mothership/control) -"uN" = ( +"auN" = ( /obj/machinery/light/directional/west, /obj/effect/turf_decal/siding/wood{ dir = 9 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/hall) -"uO" = ( +"auO" = ( /obj/machinery/door/airlock/centcom{ name = "Shuttle Control Office" }, @@ -7751,7 +8060,7 @@ /obj/effect/mapping_helpers/airlock/access/any/admin/general, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"uP" = ( +"auP" = ( /obj/structure/railing/wood{ dir = 1 }, @@ -7761,40 +8070,40 @@ /obj/structure/flora/bush/flowers_br/style_random, /turf/open/floor/grass, /area/centcom/central_command_areas/borbop) -"uQ" = ( +"auQ" = ( /turf/open/floor/glass/reinforced, /area/centcom/central_command_areas/hall) -"uR" = ( +"auR" = ( /obj/structure/fluff/tram_rail{ pixel_y = 17 }, /obj/structure/fluff/tram_rail, /turf/open/lava/plasma/ice_moon, /area/centcom/syndicate_mothership/control) -"uS" = ( +"auS" = ( /obj/machinery/light/floor/has_bulb, /obj/effect/turf_decal/trimline/green/line, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/botany) -"uT" = ( +"auT" = ( /obj/effect/turf_decal/siding/dark, /obj/effect/turf_decal/siding/dark{ dir = 1 }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/admin_hangout) -"uU" = ( +"auU" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/structure/railing/wood{ dir = 1 }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin_hangout) -"uV" = ( +"auV" = ( /obj/effect/decal/remains/xeno, /turf/open/floor/grass, /area/centcom/wizard_station) -"uW" = ( +"auW" = ( /obj/structure/table/wood, /obj/item/clothing/suit/wizrobe/magusblue, /obj/item/clothing/head/wizard/magus, @@ -7805,7 +8114,7 @@ /obj/machinery/light/directional/north, /turf/open/floor/engine/cult, /area/centcom/wizard_station) -"uX" = ( +"auX" = ( /obj/structure/railing/wood{ dir = 4 }, @@ -7815,41 +8124,41 @@ /obj/machinery/light/floor/has_bulb, /turf/open/floor/wood/parquet, /area/centcom/central_command_areas/borbop) -"uY" = ( +"auY" = ( /obj/structure/table/wood/poker, /turf/open/floor/wood/parquet, /area/centcom/central_command_areas/arcade) -"uZ" = ( +"auZ" = ( /obj/effect/turf_decal/siding/dark{ dir = 9 }, /obj/structure/hedge, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/hall) -"va" = ( +"ava" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 4 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/botany) -"vb" = ( +"avb" = ( /obj/effect/turf_decal/siding/purple, /obj/effect/turf_decal/siding/thinplating_new/light{ dir = 4 }, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership/expansion_chemicalwarfare) -"vc" = ( +"avc" = ( /obj/item/food/meat/slab/human/mutant/lizard, /turf/open/floor/grass, /area/centcom/wizard_station) -"vd" = ( +"avd" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 4 }, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership/control) -"ve" = ( +"ave" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 }, @@ -7858,14 +8167,14 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/medical) -"vf" = ( +"avf" = ( /obj/structure/sign/painting/library{ pixel_x = 32 }, /obj/structure/fans/tiny/invisible, /turf/open/floor/carpet/green, /area/centcom/central_command_areas/admin) -"vg" = ( +"avg" = ( /obj/machinery/vending/wardrobe/sec_wardrobe, /obj/effect/turf_decal/siding/dark{ dir = 9 @@ -7875,18 +8184,18 @@ dir = 9 }, /area/centcom/central_command_areas/hall) -"vh" = ( +"avh" = ( /obj/effect/turf_decal/siding/dark{ dir = 1 }, /obj/effect/turf_decal/siding/dark, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/hall) -"vi" = ( +"avi" = ( /obj/machinery/vending/clothing, /turf/open/floor/mineral/titanium, /area/centcom/syndicate_mothership/control) -"vj" = ( +"avj" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 }, @@ -7897,7 +8206,7 @@ /obj/machinery/barsign/all_access/directional/north, /turf/open/floor/wood/parquet, /area/centcom/central_command_areas/borbop) -"vk" = ( +"avk" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/structure/railing/wood{ dir = 1 @@ -7907,7 +8216,7 @@ }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/hall) -"vl" = ( +"avl" = ( /obj/effect/turf_decal/siding/dark{ dir = 6 }, @@ -7916,14 +8225,14 @@ }, /turf/open/floor/iron/white/herringbone, /area/centcom/central_command_areas/kitchen) -"vm" = ( +"avm" = ( /obj/item/kirbyplants{ icon_state = "plant-21" }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/ferry) -"vn" = ( +"avn" = ( /obj/structure/rack, /obj/item/storage/toolbox/mechanical/old, /obj/structure/sign/poster/contraband/pwr_game{ @@ -7931,7 +8240,7 @@ }, /turf/open/floor/mineral/titanium/yellow, /area/centcom/syndicate_mothership/control) -"vo" = ( +"avo" = ( /obj/docking_port/stationary{ dir = 8; dwidth = 8; @@ -7943,23 +8252,23 @@ }, /turf/open/space/basic, /area/space) -"vp" = ( +"avp" = ( /obj/machinery/light/floor/has_bulb, /turf/open/floor/wood/large, /area/centcom/central_command_areas/hall) -"vq" = ( +"avq" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/structure/chair/comfy/brown, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/evacuation/ship) -"vr" = ( +"avr" = ( /obj/machinery/light/floor/has_bulb, /obj/effect/turf_decal/siding/wood{ dir = 10 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin_hangout) -"vs" = ( +"avs" = ( /obj/structure/table/wood/fancy/green{ name = "Intern Desk" }, @@ -7967,39 +8276,39 @@ /obj/item/pen/fourcolor, /turf/open/indestructible/hotelwood, /area/centcom/central_command_areas/admin) -"vt" = ( +"avt" = ( /turf/open/floor/glass/reinforced, /area/centcom/central_command_areas/kitchen) -"vu" = ( +"avu" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 }, /turf/open/floor/mineral/plastitanium/red, /area/centcom/syndicate_mothership/expansion_chemicalwarfare) -"vv" = ( +"avv" = ( /obj/structure/showcase/wizard, /turf/open/floor/engine/cult, /area/centcom/wizard_station) -"vw" = ( +"avw" = ( /obj/effect/landmark/prisonwarp, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/prison/cells) -"vx" = ( +"avx" = ( /turf/open/floor/carpet/neon/simple/cyan, /area/centcom/central_command_areas/admin) -"vy" = ( +"avy" = ( /obj/effect/turf_decal/siding/thinplating_new/dark/end, /obj/machinery/vending/hydroseeds{ slogan_delay = 700 }, /turf/open/floor/mineral/plastitanium/red, /area/centcom/syndicate_mothership/expansion_bioterrorism) -"vz" = ( +"avz" = ( /obj/machinery/door/poddoor/shutters/cc/xcc, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"vA" = ( +"avA" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/sign/directions/engineering{ desc = "A sign that shows there are doors here. There are doors everywhere!"; @@ -8008,7 +8317,7 @@ }, /turf/open/floor/plating, /area/centcom/central_command_areas/ferry) -"vB" = ( +"avB" = ( /obj/structure/closet/emcloset, /obj/item/tank/internals/emergency_oxygen/engi, /obj/item/tank/internals/emergency_oxygen/engi, @@ -8020,20 +8329,20 @@ /obj/machinery/status_display/ai/directional/north, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"vC" = ( +"avC" = ( /obj/machinery/light/directional/north, /obj/effect/turf_decal/stripes/line{ dir = 9 }, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"vD" = ( +"avD" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"vE" = ( +"avE" = ( /obj/machinery/firealarm/directional/north, /obj/structure/chair{ dir = 8 @@ -8044,7 +8353,7 @@ }, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"vF" = ( +"avF" = ( /obj/machinery/door/airlock/centcom{ name = "AdminLand" }, @@ -8053,7 +8362,7 @@ /obj/effect/mapping_helpers/airlock/access/any/admin/captain, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"vG" = ( +"avG" = ( /obj/effect/turf_decal/siding/wood{ dir = 6 }, @@ -8062,28 +8371,32 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/botany) -"vH" = ( +"avH" = ( /obj/machinery/vending/snack, /obj/effect/turf_decal/siding/wood{ dir = 10 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/kitchen) -"vJ" = ( +"avI" = ( +/obj/structure/curtain/cloth/fancy, +/turf/closed/indestructible/fakeglass, +/area/centcom/central_command_areas/retirement_home) +"avJ" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/evacuation/ship) -"vK" = ( +"avK" = ( /obj/machinery/light/floor/has_bulb, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/supply) -"vL" = ( +"avL" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/mineral/plastitanium/red, /area/centcom/syndicate_mothership/expansion_chemicalwarfare) -"vM" = ( +"avM" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 1 }, @@ -8101,7 +8414,7 @@ }, /turf/open/floor/mineral/plastitanium/red, /area/centcom/syndicate_mothership/expansion_bioterrorism) -"vN" = ( +"avN" = ( /obj/structure/railing/wood, /obj/structure/table/reinforced, /obj/item/reagent_containers/cup/watering_can/advanced, @@ -8113,34 +8426,43 @@ /obj/effect/turf_decal/trimline/green/line, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/botany) -"vO" = ( +"avO" = ( /obj/machinery/vending/cigarette, /obj/effect/turf_decal/siding/wood{ dir = 6 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/kitchen) -"vP" = ( +"avP" = ( /obj/structure/flora/bush/large/style_3, /turf/open/floor/grass, /area/centcom/central_command_areas/medical) -"vQ" = ( +"avQ" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 }, /obj/machinery/portable_atmospherics/canister, /turf/open/floor/plating, /area/centcom/syndicate_mothership/expansion_bombthreat) -"vR" = ( +"avR" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 8 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/medical) -"vS" = ( +"avS" = ( /turf/open/floor/wood/large, /area/centcom/central_command_areas/medical) -"vU" = ( +"avT" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/chair/office{ + pixel_y = -3 + }, +/turf/open/floor/wood/parquet, +/area/centcom/central_command_areas/retirement_home) +"avU" = ( /obj/structure/window/reinforced/survival_pod/spawner/directional/south{ name = "Frosted Window"; opacity = 1 @@ -8151,30 +8473,30 @@ }, /turf/open/floor/iron/freezer, /area/centcom/syndicate_mothership/control) -"vV" = ( +"avV" = ( /obj/structure/hedge, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/firing_range) -"vW" = ( +"avW" = ( /obj/effect/turf_decal/siding/wood{ dir = 6 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/medical) -"vX" = ( +"avX" = ( /obj/machinery/light/small/directional/east, /turf/open/floor/engine/cult, /area/centcom/wizard_station) -"vY" = ( +"avY" = ( /turf/open/misc/asteroid/snow/icemoon, /area/centcom/syndicate_mothership/control) -"vZ" = ( +"avZ" = ( /obj/structure/chair/comfy/black{ dir = 4 }, /turf/open/floor/carpet/red, /area/centcom/central_command_areas/admin) -"wa" = ( +"awa" = ( /obj/effect/turf_decal/siding/dark{ dir = 6 }, @@ -8183,40 +8505,40 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/hall) -"wb" = ( +"awb" = ( /obj/structure/chair/sofa/right{ dir = 4 }, /turf/open/floor/carpet/purple, /area/centcom/central_command_areas/admin) -"wc" = ( +"awc" = ( /turf/closed/indestructible/riveted, /area/centcom/central_command_areas/borbop) -"wd" = ( +"awd" = ( /obj/structure/railing{ dir = 1 }, /obj/effect/turf_decal/siding/dark, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/supply) -"we" = ( +"awe" = ( /turf/closed/indestructible/riveted, /area/centcom/central_command_areas/medical) -"wf" = ( +"awf" = ( /turf/open/floor/carpet, /area/centcom/central_command_areas/hall) -"wg" = ( +"awg" = ( /obj/machinery/camera/autoname/directional/south{ network = list("nukie") }, /turf/open/floor/circuit/red/off, /area/centcom/syndicate_mothership/expansion_bioterrorism) -"wh" = ( +"awh" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/green, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"wi" = ( +"awi" = ( /obj/structure/table/glass/plasmaglass, /obj/item/screwdriver{ pixel_x = 1; @@ -8245,14 +8567,14 @@ }, /turf/open/floor/mineral/titanium/tiled/yellow, /area/centcom/syndicate_mothership/expansion_chemicalwarfare) -"wj" = ( +"awj" = ( /obj/machinery/camera/autoname/directional/north{ network = list("nukie") }, /obj/structure/cable, /turf/open/floor/catwalk_floor/iron_smooth, /area/centcom/syndicate_mothership/control) -"wk" = ( +"awk" = ( /obj/structure/reagent_dispensers/watertank, /obj/effect/turf_decal/stripes/line{ dir = 6 @@ -8262,20 +8584,20 @@ /obj/machinery/light/small/directional/west, /turf/open/floor/iron/smooth_large, /area/centcom/central_command_areas/evacuation/ship) -"wl" = ( +"awl" = ( /obj/machinery/light/directional/east, /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/structure/sign/warning/secure_area/directional/east, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/armory) -"wm" = ( +"awm" = ( /obj/structure/railing/wood{ dir = 8 }, /obj/structure/flora/bush/flowers_br/style_random, /turf/open/floor/grass, /area/centcom/central_command_areas/borbop) -"wn" = ( +"awn" = ( /obj/structure/table/reinforced/plastitaniumglass, /obj/item/knife/kitchen, /obj/structure/sign/poster/contraband/self_ai_liberation{ @@ -8284,24 +8606,24 @@ /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/centcom/syndicate_mothership/control) -"wo" = ( +"awo" = ( /obj/structure/table/reinforced/plastitaniumglass{ name = "Andrea's Desk" }, /obj/machinery/coffeemaker/impressa, /turf/open/floor/carpet/royalblue, /area/centcom/central_command_areas/admin) -"wp" = ( +"awp" = ( /obj/structure/chair/sofa/left/brown{ dir = 4 }, /turf/open/floor/carpet, /area/centcom/central_command_areas/admin) -"wq" = ( +"awq" = ( /obj/structure/hedge, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/firing_range_checkpoint_control) -"wr" = ( +"awr" = ( /obj/structure/chair{ dir = 4 }, @@ -8310,18 +8632,18 @@ }, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"ws" = ( +"aws" = ( /obj/structure/closet/cardboard/metal, /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/centcom/syndicate_mothership/control) -"wt" = ( +"awt" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 }, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"wu" = ( +"awu" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/centcom{ name = "CentCom Security" @@ -8335,7 +8657,7 @@ /obj/effect/mapping_helpers/airlock/access/any/admin/general, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"wv" = ( +"awv" = ( /obj/machinery/door/poddoor/shutters{ id = "XCCFerry"; name = "XCC Ferry Hangar" @@ -8345,7 +8667,7 @@ }, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"ww" = ( +"aww" = ( /obj/machinery/button/door/indestructible{ id = "XCCFerry"; name = "Hanger Bay Shutters"; @@ -8357,44 +8679,44 @@ }, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"wx" = ( +"awx" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 }, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"wy" = ( +"awy" = ( /obj/effect/turf_decal/delivery, /obj/structure/cable, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"wz" = ( +"awz" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 }, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"wA" = ( +"awA" = ( /obj/machinery/light/directional/north, /obj/effect/turf_decal/tile/green{ dir = 4 }, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"wB" = ( +"awB" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 }, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"wC" = ( +"awC" = ( /obj/structure/hedge, /obj/structure/railing/wood, /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/machinery/light/floor/has_bulb, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/kitchen) -"wD" = ( +"awD" = ( /obj/effect/turf_decal/siding/dark{ dir = 6 }, @@ -8404,11 +8726,11 @@ }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin) -"wE" = ( +"awE" = ( /obj/structure/chair/sofa/corp/left, /turf/open/floor/carpet, /area/centcom/central_command_areas/kitchen) -"wF" = ( +"awF" = ( /obj/machinery/modular_computer/preset/id/centcom{ color = "#cc9439" }, @@ -8419,29 +8741,49 @@ color = "#cc9439" }, /area/centcom/central_command_areas/admin) -"wG" = ( +"awG" = ( /obj/effect/turf_decal/siding/blue/corner{ dir = 1 }, /turf/open/floor/iron/dark/diagonal, /area/centcom/central_command_areas/medical) -"wH" = ( +"awH" = ( /obj/machinery/light/floor/has_bulb, /turf/open/floor/wood/large, /area/centcom/central_command_areas/ghost_spawn) -"wJ" = ( +"awI" = ( +/obj/structure/rack/wooden, +/obj/item/clothing/suit/koreacoat{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/item/clothing/suit/modern_winter{ + pixel_y = -3; + pixel_x = 7 + }, +/obj/item/clothing/suit/jacket/delta{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/clothing/suit/jacket/puffer{ + pixel_x = -3; + pixel_y = -6 + }, +/turf/open/floor/wood/parquet, +/area/centcom/central_command_areas/retirement_home) +"awJ" = ( /obj/structure/closet/crate/bin{ name = "treat storage" }, /turf/open/floor/carpet/royalblue, /area/centcom/central_command_areas/admin) -"wK" = ( +"awK" = ( /obj/effect/turf_decal/siding/blue/corner{ dir = 4 }, /turf/open/floor/iron/dark/diagonal, /area/centcom/central_command_areas/medical) -"wL" = ( +"awL" = ( /obj/effect/turf_decal/tile/dark/diagonal_edge, /obj/structure/table/wood/fancy/royalblue, /obj/effect/spawner/random/decoration/statue{ @@ -8456,16 +8798,16 @@ }, /turf/open/floor/iron/white/diagonal, /area/centcom/central_command_areas/hall) -"wM" = ( +"awM" = ( /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"wN" = ( +"awN" = ( /obj/effect/turf_decal/siding/wood{ dir = 6 }, /turf/open/floor/wood/tile, /area/centcom/central_command_areas/evacuation/ship) -"wO" = ( +"awO" = ( /obj/machinery/light/floor/has_bulb, /obj/effect/turf_decal/trimline/green/line{ dir = 1 @@ -8473,7 +8815,7 @@ /obj/machinery/vending/wardrobe/hydro_wardrobe, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/botany) -"wP" = ( +"awP" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 }, @@ -8481,7 +8823,7 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/stone, /area/centcom/central_command_areas/evacuation/ship) -"wQ" = ( +"awQ" = ( /obj/structure/table/reinforced/plasmarglass, /obj/item/banhammer{ desc = "A terrible weapon that has seen countless use over the ages. It looks like Ook doesn't use this thing much. A good thing for you guys!"; @@ -8489,11 +8831,15 @@ }, /turf/open/misc/grass, /area/centcom/central_command_areas/admin) -"wS" = ( +"awR" = ( +/obj/structure/mineral_door/wood/large_gate, +/turf/open/floor/wood/parquet, +/area/centcom/central_command_areas/retirement_home) +"awS" = ( /obj/structure/table/wood/fancy/black, /turf/open/floor/carpet/black, /area/centcom/central_command_areas/borbop) -"wT" = ( +"awT" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/turf_decal/siding/wood/corner{ dir = 4 @@ -8504,14 +8850,14 @@ }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/evacuation/ship) -"wU" = ( +"awU" = ( /turf/closed/indestructible/opsglass, /area/centcom/syndicate_mothership) -"wV" = ( +"awV" = ( /obj/machinery/computer/security/wooden_tv, /turf/open/floor/circuit, /area/centcom/central_command_areas/admin) -"wW" = ( +"awW" = ( /obj/item/kirbyplants{ icon_state = "plant-21" }, @@ -8521,7 +8867,7 @@ }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/briefing) -"wX" = ( +"awX" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 8 }, @@ -8531,27 +8877,27 @@ }, /turf/open/floor/catwalk_floor, /area/centcom/central_command_areas/evacuation/ship) -"wY" = ( +"awY" = ( /obj/machinery/autolathe, /turf/open/floor/circuit/green, /area/centcom/central_command_areas/admin) -"wZ" = ( +"awZ" = ( /obj/effect/turf_decal/siding/wood, /obj/structure/chair/stool/bar/directional/north, /turf/open/floor/wood/parquet, /area/centcom/central_command_areas/arcade) -"xa" = ( +"axa" = ( /obj/structure/chair/office, /obj/structure/window/plasma/spawner/directional/west, /obj/structure/window/plasma/spawner/directional/north, /turf/open/indestructible/hotelwood, /area/centcom/central_command_areas/admin) -"xb" = ( +"axb" = ( /obj/structure/table/reinforced, /obj/item/storage/box/material, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/botany) -"xc" = ( +"axc" = ( /obj/machinery/door/airlock/external/ruin{ name = "Ferry Airlock" }, @@ -8563,22 +8909,22 @@ }, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"xd" = ( +"axd" = ( /obj/structure/fans/tiny, /obj/effect/turf_decal/delivery, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"xe" = ( +"axe" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"xf" = ( +"axf" = ( /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"xg" = ( +"axg" = ( /obj/structure/chair{ dir = 8 }, @@ -8587,7 +8933,7 @@ }, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"xh" = ( +"axh" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/sign/directions/engineering{ desc = "A sign that shows there are doors here. There are doors everywhere!"; @@ -8596,76 +8942,76 @@ }, /turf/open/floor/plating, /area/centcom/central_command_areas/ferry) -"xi" = ( +"axi" = ( /obj/item/kirbyplants{ icon_state = "plant-21" }, /obj/effect/turf_decal/delivery, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"xj" = ( +"axj" = ( /obj/effect/turf_decal/tile/green/half/contrasted{ dir = 8 }, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"xk" = ( +"axk" = ( /obj/effect/turf_decal/tile/green/half/contrasted{ dir = 4 }, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"xl" = ( +"axl" = ( /obj/effect/turf_decal/siding/wood{ dir = 9 }, /obj/machinery/light/directional/north, /turf/open/floor/wood/large, /area/centcom/central_command_areas/kitchen) -"xm" = ( +"axm" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 6 }, /turf/open/misc/ice/icemoon, /area/centcom/syndicate_mothership/control) -"xn" = ( +"axn" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, /obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, /turf/open/floor/iron/smooth_half{ dir = 1 }, /area/centcom/syndicate_mothership/control) -"xo" = ( +"axo" = ( /obj/effect/turf_decal/siding/wood{ dir = 9 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/kitchen) -"xp" = ( +"axp" = ( /obj/effect/turf_decal/siding/wood{ dir = 9 }, /turf/open/floor/wood/large, /area/centcom/tdome/observation) -"xq" = ( +"axq" = ( /obj/machinery/chem_master, /obj/effect/turf_decal/siding/wood{ dir = 6 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/medical) -"xr" = ( +"axr" = ( /obj/effect/turf_decal/stripes/corner, /obj/effect/turf_decal/stripes/corner{ dir = 8 }, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership/expansion_chemicalwarfare) -"xs" = ( +"axs" = ( /obj/machinery/light/directional/east, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/firing_range) -"xt" = ( +"axt" = ( /obj/docking_port/stationary{ area_type = /area/centcom/syndicate_mothership/control; dir = 2; @@ -8677,7 +9023,7 @@ }, /turf/open/floor/plating/icemoon, /area/centcom/syndicate_mothership/control) -"xu" = ( +"axu" = ( /obj/effect/turf_decal/siding/wood/corner, /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -8691,17 +9037,17 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/borbop) -"xv" = ( +"axv" = ( /obj/effect/turf_decal/siding/dark{ dir = 6 }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/prison/cells) -"xw" = ( +"axw" = ( /obj/item/kirbyplants/random, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership) -"xx" = ( +"axx" = ( /obj/structure/table/optable/abductor{ color = "#efbc1e"; name = "Ancient Operating Table" @@ -8710,21 +9056,21 @@ color = "#cc9439" }, /area/centcom/central_command_areas/admin) -"xy" = ( +"axy" = ( /obj/structure/closet/secure_closet/contraband/armory, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/firing_range_checkpoint_control) -"xz" = ( +"axz" = ( /obj/machinery/door/airlock/centcom, /turf/open/floor/iron/dark/diagonal, /area/centcom/central_command_areas/botany) -"xA" = ( +"axA" = ( /obj/structure/fence/cut/large{ dir = 4 }, /turf/open/misc/asteroid/snow/airless, /area/centcom/syndicate_mothership) -"xB" = ( +"axB" = ( /obj/effect/turf_decal/siding/dark{ dir = 6 }, @@ -8736,7 +9082,7 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/hall) -"xC" = ( +"axC" = ( /obj/structure/table/wood, /obj/item/paper_bin, /obj/item/pen/fourcolor, @@ -8745,7 +9091,7 @@ }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin) -"xD" = ( +"axD" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 }, @@ -8754,24 +9100,24 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/kitchen) -"xE" = ( +"axE" = ( /turf/open/misc/asteroid/snow/airless, /area/centcom/syndicate_mothership) -"xF" = ( +"axF" = ( /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood/parquet, /area/centcom/central_command_areas/arcade) -"xG" = ( +"axG" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/machinery/vending/wardrobe/det_wardrobe, /turf/open/floor/iron/dark, /area/centcom/tdome/observation) -"xH" = ( +"axH" = ( /obj/structure/table/reinforced, /obj/machinery/splicer, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/botany) -"xI" = ( +"axI" = ( /obj/structure/railing/wood{ dir = 8 }, @@ -8782,13 +9128,13 @@ /obj/machinery/light/floor/has_bulb, /turf/open/floor/wood/parquet, /area/centcom/central_command_areas/borbop) -"xJ" = ( +"axJ" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple{ dir = 6 }, /turf/open/floor/engine, /area/centcom/syndicate_mothership/expansion_bioterrorism) -"xK" = ( +"axK" = ( /obj/effect/turf_decal/siding/dark{ dir = 10 }, @@ -8797,13 +9143,13 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/hall) -"xL" = ( +"axL" = ( /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership) -"xM" = ( +"axM" = ( /turf/open/floor/grass, /area/centcom/wizard_station) -"xN" = ( +"axN" = ( /obj/effect/turf_decal/siding/dark{ dir = 6 }, @@ -8815,31 +9161,31 @@ dir = 6 }, /area/centcom/central_command_areas/hall) -"xO" = ( +"axO" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 }, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership/expansion_chemicalwarfare) -"xP" = ( +"axP" = ( /obj/structure/table/wood, /obj/item/flashlight/lamp/bananalamp, /turf/open/misc/grass, /area/centcom/central_command_areas/admin) -"xQ" = ( +"axQ" = ( /obj/effect/turf_decal/delivery, /obj/machinery/light/directional/south, /obj/machinery/status_display/ai/directional/south, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"xR" = ( +"axR" = ( /obj/effect/turf_decal/stripes/line{ dir = 5 }, /obj/structure/cable, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"xS" = ( +"axS" = ( /obj/machinery/button/door/indestructible{ id = "XCCsec1"; name = "CC Shutter 1 Control"; @@ -8850,20 +9196,23 @@ }, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"xT" = ( +"axT" = ( /obj/effect/turf_decal/siding/wood{ dir = 5 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/kitchen) -"xU" = ( +"axU" = ( /turf/open/floor/mineral/plastitanium/red, /area/centcom/syndicate_mothership/control) -"xW" = ( +"axV" = ( +/turf/closed/indestructible/syndicate, +/area/cruiser_dock) +"axW" = ( /obj/structure/bookcase/random/reference/wizard, /turf/open/floor/engine/cult, /area/centcom/wizard_station) -"xX" = ( +"axX" = ( /obj/structure/hedge, /obj/structure/stone_tile/slab, /obj/structure/sign{ @@ -8882,7 +9231,7 @@ }, /turf/open/misc/snow/actually_safe, /area/centcom/central_command_areas/admin) -"xY" = ( +"axY" = ( /obj/item/toy/cards/deck/kotahi{ pixel_y = 26 }, @@ -8921,20 +9270,20 @@ /obj/machinery/light/directional/west, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/arcade) -"xZ" = ( +"axZ" = ( /turf/open/floor/wood/large, /area/centcom/central_command_areas/arcade) -"ya" = ( +"aya" = ( /obj/structure/flora/grass/both/style_random, /turf/open/misc/snow/actually_safe, /area/centcom/central_command_areas/admin) -"yb" = ( +"ayb" = ( /obj/effect/turf_decal/siding/wood{ dir = 9 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin_hangout) -"yc" = ( +"ayc" = ( /obj/structure/flora/tree/dead/style_random, /obj/effect/light_emitter{ set_cap = 1; @@ -8942,13 +9291,13 @@ }, /turf/open/misc/asteroid/snow/airless, /area/centcom/syndicate_mothership) -"yd" = ( +"ayd" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/filingcabinet/chestdrawer, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/supply) -"ye" = ( +"aye" = ( /obj/effect/turf_decal/siding/wideplating{ dir = 1 }, @@ -8961,16 +9310,16 @@ dir = 4 }, /area/centcom/syndicate_mothership/control) -"yf" = ( +"ayf" = ( /obj/effect/turf_decal/trimline/green/line{ dir = 6 }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/botany) -"yg" = ( +"ayg" = ( /turf/open/floor/circuit/green, /area/centcom/central_command_areas/admin) -"yh" = ( +"ayh" = ( /obj/item/toy/figure/assistant, /obj/item/toy/figure/atmos, /obj/item/toy/figure/bartender, @@ -9016,22 +9365,22 @@ /obj/structure/table, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/arcade) -"yi" = ( +"ayi" = ( /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood/large, /area/centcom/central_command_areas/hall) -"yj" = ( +"ayj" = ( /obj/structure/fake_stairs/wood/directional/north, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/medical) -"yk" = ( +"ayk" = ( /obj/structure/railing/wood{ dir = 1 }, /obj/structure/fake_stairs/wood/directional/east, /turf/open/floor/wood/parquet, /area/centcom/central_command_areas/borbop) -"yl" = ( +"ayl" = ( /obj/structure/rack, /obj/item/gun/energy/e_gun{ pixel_x = -3; @@ -9046,7 +9395,7 @@ }, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"ym" = ( +"aym" = ( /obj/effect/turf_decal/siding/dark{ dir = 4 }, @@ -9056,23 +9405,23 @@ /obj/machinery/light/directional/west, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/hall) -"yn" = ( +"ayn" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/sign/warning/vacuum, /turf/open/floor/plating, /area/centcom/central_command_areas/ferry) -"yo" = ( +"ayo" = ( /obj/effect/turf_decal/siding/wood{ dir = 9 }, /obj/structure/hedge, /turf/open/floor/wood/large, /area/centcom/central_command_areas/medical) -"yp" = ( +"ayp" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"yq" = ( +"ayq" = ( /obj/structure/hedge, /obj/effect/turf_decal/siding/dark{ dir = 9 @@ -9082,7 +9431,7 @@ dir = 9 }, /area/centcom/central_command_areas/hall) -"yr" = ( +"ayr" = ( /obj/machinery/door/airlock/centcom{ name = "Briefing Room" }, @@ -9090,18 +9439,18 @@ /obj/effect/mapping_helpers/airlock/access/any/admin/general, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"ys" = ( +"ays" = ( /obj/structure/chair/sofa/corp, /turf/open/floor/carpet, /area/centcom/central_command_areas/kitchen) -"yt" = ( +"ayt" = ( /obj/effect/turf_decal/siding/wood{ dir = 9 }, /obj/machinery/vending/cigarette, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin_hangout) -"yu" = ( +"ayu" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 }, @@ -9114,19 +9463,19 @@ }, /turf/open/floor/carpet/red, /area/centcom/central_command_areas/admin) -"yv" = ( +"ayv" = ( /turf/closed/indestructible/fakedoor{ name = "Tac-Com" }, /area/centcom/syndicate_mothership/control) -"yw" = ( +"ayw" = ( /obj/structure/table/wood, /obj/item/modular_computer/laptop/preset/civilian{ desc = "A low-end laptop often used for personal recreation. Looks like Ook's gaming computer. Thankfully these things are at least somewhat robust." }, /turf/open/misc/grass, /area/centcom/central_command_areas/admin) -"yx" = ( +"ayx" = ( /obj/machinery/door/airlock/maintenance/external{ name = "Bunk Room 2" }, @@ -9135,7 +9484,7 @@ /obj/effect/mapping_helpers/airlock/access/all/syndicate/general, /turf/open/floor/catwalk_floor/iron, /area/centcom/syndicate_mothership/control) -"yy" = ( +"ayy" = ( /obj/structure/lattice/catwalk, /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -9145,13 +9494,13 @@ }, /turf/open/floor/plating/snowed/icemoon, /area/centcom/syndicate_mothership/control) -"yz" = ( +"ayz" = ( /obj/structure/flora/bush/flowers_yw/style_random, /obj/structure/flora/bush/fullgrass/style_random, /mob/living/basic/cow, /turf/open/floor/grass, /area/centcom/central_command_areas/hall) -"yA" = ( +"ayA" = ( /obj/machinery/firealarm/directional/east, /obj/effect/turf_decal/siding/dark{ dir = 4 @@ -9161,17 +9510,17 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/supply) -"yB" = ( +"ayB" = ( /obj/machinery/light/cold/directional/east, /turf/open/floor/catwalk_floor/iron_dark, /area/centcom/syndicate_mothership/control) -"yC" = ( +"ayC" = ( /turf/open/floor/circuit, /area/centcom/central_command_areas/admin) -"yD" = ( +"ayD" = ( /turf/closed/indestructible/rock/snow, /area/centcom/syndicate_mothership) -"yE" = ( +"ayE" = ( /obj/structure/railing/wrestling{ dir = 4 }, @@ -9180,20 +9529,20 @@ icon_state = "boxing" }, /area/centcom/central_command_areas/hall) -"yF" = ( +"ayF" = ( /obj/structure/chair/wood/wings{ dir = 1 }, /turf/open/floor/wood, /area/centcom/wizard_station) -"yG" = ( +"ayG" = ( /obj/machinery/growing/tray, /obj/effect/turf_decal/trimline/green/line{ dir = 10 }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/botany) -"yH" = ( +"ayH" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -9204,7 +9553,16 @@ }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/evacuation/ship) -"yJ" = ( +"ayI" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 6 + }, +/obj/structure/railing/wooden_fencing{ + pixel_y = 16 + }, +/turf/open/floor/grass, +/area/centcom/central_command_areas/retirement_yard) +"ayJ" = ( /obj/structure/railing/wood{ dir = 8 }, @@ -9215,22 +9573,22 @@ /obj/structure/gel_cocoon, /turf/open/floor/grass, /area/centcom/central_command_areas/admin_hangout) -"yK" = ( +"ayK" = ( /obj/effect/turf_decal/siding/green/end{ dir = 8 }, /obj/structure/railing/wood, /turf/open/floor/iron/dark/small, /area/centcom/central_command_areas/botany) -"yL" = ( +"ayL" = ( /obj/structure/chair/stool/bar/directional/north, /turf/open/floor/wood/parquet, /area/centcom/central_command_areas/arcade) -"yM" = ( +"ayM" = ( /obj/machinery/light/floor/has_bulb, /turf/open/floor/carpet/purple, /area/centcom/central_command_areas/admin) -"yN" = ( +"ayN" = ( /obj/structure/table/wood, /obj/effect/spawner/random/trash/garbage, /obj/effect/spawner/random/trash/garbage, @@ -9253,7 +9611,7 @@ }, /turf/open/floor/iron/grimy, /area/centcom/central_command_areas/admin) -"yO" = ( +"ayO" = ( /obj/item/paper_bin{ pixel_x = 5; pixel_y = 5 @@ -9270,7 +9628,7 @@ /obj/structure/table, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/arcade) -"yP" = ( +"ayP" = ( /obj/machinery/newscaster{ pixel_y = -32 }, @@ -9282,16 +9640,16 @@ }, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"yQ" = ( +"ayQ" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin_hangout) -"yR" = ( +"ayR" = ( /turf/open/floor/carpet/orange, /area/centcom/central_command_areas/admin) -"yS" = ( +"ayS" = ( /obj/structure/table/reinforced, /obj/item/storage/box/emps, /obj/structure/sign/departments/medbay/alt/directional/south, @@ -9301,14 +9659,14 @@ /obj/item/gun/energy/ionrifle/carbine, /turf/open/floor/iron, /area/centcom/central_command_areas/armory) -"yT" = ( +"ayT" = ( /obj/machinery/light/small/directional/south, /obj/item/watertank{ pixel_x = -10 }, /turf/open/floor/catwalk_floor/iron_smooth, /area/centcom/syndicate_mothership/control) -"yU" = ( +"ayU" = ( /obj/structure/hedge, /obj/machinery/light/floor/has_bulb, /obj/effect/turf_decal/siding/wood, @@ -9317,25 +9675,42 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/kitchen) -"yW" = ( +"ayV" = ( +/obj/structure/dresser{ + pixel_y = -11 + }, +/obj/structure/mirror{ + layer = 3; + pixel_y = 4 + }, +/obj/structure/dresser{ + pixel_y = -11 + }, +/obj/item/lipstick/purple{ + pixel_x = -9; + pixel_y = -1 + }, +/turf/closed/indestructible/wood, +/area/centcom/central_command_areas/retirement_home) +"ayW" = ( /obj/structure/cable, /turf/open/floor/catwalk_floor/iron, /area/centcom/syndicate_mothership/control) -"yX" = ( +"ayX" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 4 }, /turf/open/floor/iron/white/textured, /area/centcom/central_command_areas/evacuation/ship) -"yY" = ( +"ayY" = ( /obj/machinery/vending/cigarette/syndicate, /turf/open/floor/mineral/titanium, /area/centcom/syndicate_mothership/control) -"yZ" = ( +"ayZ" = ( /obj/structure/chair/stool/directional/west, /turf/open/floor/wood/tile, /area/centcom/syndicate_mothership/control) -"za" = ( +"aza" = ( /obj/machinery/power/terminal{ dir = 1 }, @@ -9343,11 +9718,11 @@ /obj/effect/decal/cleanable/oil, /turf/open/floor/iron/smooth_large, /area/centcom/central_command_areas/evacuation/ship) -"zb" = ( +"azb" = ( /obj/machinery/vending/dinnerware, /turf/open/floor/catwalk_floor/titanium, /area/centcom/syndicate_mothership/control) -"zc" = ( +"azc" = ( /obj/structure/flora/tree/dead/style_random, /obj/structure/flora/grass/both/style_random, /obj/effect/light_emitter{ @@ -9356,25 +9731,25 @@ }, /turf/open/misc/asteroid/snow/airless, /area/centcom/syndicate_mothership) -"zd" = ( +"azd" = ( /obj/machinery/light/cold/directional/south, /turf/open/floor/iron/dark/textured_half{ dir = 8 }, /area/centcom/syndicate_mothership/control) -"ze" = ( +"aze" = ( /obj/machinery/door/airlock{ icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; name = "Observation Room" }, /turf/open/floor/engine/cult, /area/centcom/wizard_station) -"zf" = ( +"azf" = ( /obj/structure/flora/bush/flowers_yw/style_random, /obj/structure/flora/tree/jungle/style_5, /turf/open/floor/grass, /area/centcom/central_command_areas/hall) -"zg" = ( +"azg" = ( /obj/structure/chair/sofa/bench/left{ dir = 8 }, @@ -9383,19 +9758,19 @@ }, /turf/open/floor/mineral/titanium, /area/centcom/syndicate_mothership/control) -"zh" = ( +"azh" = ( /obj/machinery/firealarm/directional/south, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/supply) -"zi" = ( +"azi" = ( /obj/item/rupee, /turf/open/misc/ashplanet/wateryrock{ initial_gas_mix = "o2=22;n2=82;TEMP=293.15"; planetary_atmos = 0 }, /area/awaymission/errorroom) -"zj" = ( +"azj" = ( /obj/machinery/door/airlock/wood/glass{ security_level = 6; normal_integrity = 1000; @@ -9404,22 +9779,22 @@ /obj/effect/mapping_helpers/airlock/access/any/admin/captain, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin) -"zk" = ( +"azk" = ( /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/medical) -"zl" = ( +"azl" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/heat_exchanging/junction, /turf/open/space/basic, /area/space/nearstation) -"zm" = ( +"azm" = ( /obj/machinery/atmospherics/components/unary/passive_vent{ dir = 8 }, /obj/structure/lattice, /turf/open/space/basic, /area/space/nearstation) -"zn" = ( +"azn" = ( /obj/machinery/light/directional/north, /obj/structure/table/reinforced, /obj/item/crowbar/red, @@ -9428,17 +9803,17 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/supply) -"zo" = ( +"azo" = ( /obj/machinery/door/poddoor/shutters/indestructible/preopen, /turf/closed/indestructible/fakeglass{ color = "#ffe599" }, /area/centcom/central_command_areas/admin) -"zp" = ( +"azp" = ( /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood/large, /area/centcom/central_command_areas/medical) -"zq" = ( +"azq" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 }, @@ -9448,7 +9823,7 @@ }, /turf/open/floor/wood/parquet, /area/centcom/central_command_areas/borbop) -"zr" = ( +"azr" = ( /obj/docking_port/stationary{ dir = 4; dwidth = 2; @@ -9459,13 +9834,13 @@ }, /turf/open/space/basic, /area/space) -"zs" = ( +"azs" = ( /obj/effect/turf_decal/tile/brown/anticorner/contrasted{ dir = 8 }, /turf/open/floor/iron, /area/centcom/central_command_areas/supplypod/loading/two) -"zt" = ( +"azt" = ( /obj/effect/turf_decal/siding/dark{ dir = 10 }, @@ -9475,7 +9850,7 @@ icon_state = "boxing" }, /area/centcom/central_command_areas/admin) -"zu" = ( +"azu" = ( /obj/structure/hedge, /obj/machinery/light/floor/has_bulb, /obj/effect/turf_decal/siding/wood{ @@ -9486,17 +9861,17 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/kitchen) -"zv" = ( +"azv" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 4 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin_hangout) -"zw" = ( +"azw" = ( /obj/machinery/light/cold/directional/west, /turf/open/floor/catwalk_floor/iron_dark, /area/centcom/syndicate_mothership/control) -"zx" = ( +"azx" = ( /obj/effect/turf_decal/siding/wideplating_new/dark{ dir = 8 }, @@ -9522,7 +9897,7 @@ }, /turf/open/floor/iron/dark/textured_large, /area/centcom/central_command_areas/evacuation/ship) -"zy" = ( +"azy" = ( /obj/machinery/computer/records/medical/laptop, /obj/structure/table/wood, /obj/effect/turf_decal/siding/dark{ @@ -9530,20 +9905,20 @@ }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin) -"zz" = ( +"azz" = ( /obj/structure/table/reinforced, /obj/item/restraints/handcuffs/cable/zipties, /obj/item/assembly/flash/handheld, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/briefing) -"zA" = ( +"azA" = ( /obj/item/bedsheet/medical, /obj/structure/bed, /obj/structure/curtain/cloth/fancy, /turf/open/floor/glass/reinforced/plasma, /area/centcom/central_command_areas/admin) -"zB" = ( +"azB" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, @@ -9551,56 +9926,56 @@ /obj/machinery/light/cold/directional/south, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership/expansion_chemicalwarfare) -"zC" = ( +"azC" = ( /obj/structure/table/wood/fancy, /obj/item/camera/spooky, /turf/open/floor/carpet, /area/centcom/wizard_station) -"zD" = ( +"azD" = ( /obj/effect/turf_decal/siding/dark{ dir = 5 }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/prison/cells) -"zE" = ( +"azE" = ( /obj/effect/turf_decal/tile/brown/anticorner/contrasted, /turf/open/floor/iron, /area/centcom/central_command_areas/supplypod/loading/three) -"zF" = ( +"azF" = ( /obj/structure/chair/sofa/corp{ dir = 1 }, /turf/open/floor/carpet, /area/centcom/central_command_areas/kitchen) -"zG" = ( +"azG" = ( /obj/effect/turf_decal/siding/dark{ dir = 9 }, /obj/effect/turf_decal/siding/dark/corner, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/hall) -"zH" = ( +"azH" = ( /obj/effect/turf_decal/siding/blue, /turf/open/floor/iron/dark/diagonal, /area/centcom/central_command_areas/medical) -"zI" = ( +"azI" = ( /obj/effect/turf_decal/siding/blue, /obj/structure/railing/wood, /turf/open/floor/iron/dark/diagonal, /area/centcom/central_command_areas/medical) -"zJ" = ( +"azJ" = ( /obj/effect/turf_decal/siding/wood{ dir = 5 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/ghost_spawn) -"zK" = ( +"azK" = ( /obj/effect/turf_decal/siding/blue{ dir = 6 }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/medical) -"zL" = ( +"azL" = ( /obj/machinery/atmospherics/components/unary/thermomachine/freezer{ dir = 4 }, @@ -9609,19 +9984,19 @@ }, /turf/open/floor/mineral/plastitanium/red, /area/centcom/syndicate_mothership/expansion_bombthreat) -"zM" = ( +"azM" = ( /obj/effect/turf_decal/tile/brown/half/contrasted{ dir = 8 }, /turf/open/floor/iron, /area/centcom/central_command_areas/supplypod/loading/two) -"zN" = ( +"azN" = ( /obj/structure/chair/sofa/corp/right{ dir = 1 }, /turf/open/floor/carpet, /area/centcom/central_command_areas/kitchen) -"zO" = ( +"azO" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 }, @@ -9643,18 +10018,18 @@ }, /turf/open/floor/wood/parquet, /area/centcom/central_command_areas/borbop) -"zP" = ( +"azP" = ( /obj/structure/chair/sofa/corp/left{ dir = 1 }, /turf/open/floor/carpet, /area/centcom/central_command_areas/kitchen) -"zQ" = ( +"azQ" = ( /obj/structure/window/reinforced/spawner/directional/north, /obj/machinery/mecha_part_fabricator, /turf/open/floor/mineral/titanium/purple, /area/centcom/central_command_areas/admin) -"zR" = ( +"azR" = ( /obj/structure/chair/sofa/corp/right{ dir = 4; pixel_x = -4 @@ -9662,7 +10037,7 @@ /obj/effect/turf_decal/tile/dark/opposingcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin_hangout) -"zS" = ( +"azS" = ( /obj/machinery/conveyor_switch/oneway{ dir = 8; id = "XCCQMLoad"; @@ -9680,25 +10055,25 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/supply) -"zT" = ( +"azT" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/light/floor/has_bulb, /turf/open/floor/plating, /area/centcom/central_command_areas/briefing) -"zU" = ( +"azU" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/evacuation) -"zV" = ( +"azV" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 }, /obj/effect/turf_decal/siding/wood/corner, /turf/open/floor/wood/parquet, /area/centcom/central_command_areas/borbop) -"zW" = ( +"azW" = ( /obj/structure/railing/wood, /obj/structure/railing/wood{ dir = 8 @@ -9706,10 +10081,10 @@ /obj/structure/flora/bush/flowers_pp/style_random, /turf/open/floor/grass, /area/centcom/central_command_areas/borbop) -"zX" = ( +"azX" = ( /turf/open/floor/plating/abductor, /area/centcom/central_command_areas/admin) -"zY" = ( +"azY" = ( /obj/structure/destructible/cult/item_dispenser/archives/library{ color = "#cc9439"; name = "Records of the Sand" @@ -9718,22 +10093,22 @@ color = "#cc9439" }, /area/centcom/central_command_areas/admin) -"zZ" = ( +"azZ" = ( /obj/effect/turf_decal/tile/brown/half/contrasted, /turf/open/floor/iron, /area/centcom/central_command_areas/supplypod/loading/three) -"Aa" = ( +"aAa" = ( /obj/machinery/suit_storage_unit/rd, /turf/open/floor/carpet/purple, /area/centcom/central_command_areas/admin) -"Ab" = ( +"aAb" = ( /obj/structure/railing/wood, /obj/structure/railing/wood{ dir = 8 }, /turf/open/floor/glass/reinforced, /area/centcom/central_command_areas/hall) -"Ac" = ( +"aAc" = ( /obj/effect/turf_decal/siding/dark{ dir = 4 }, @@ -9743,13 +10118,13 @@ /obj/machinery/vending/cigarette, /turf/open/floor/iron/white/herringbone, /area/centcom/central_command_areas/kitchen) -"Ad" = ( +"aAd" = ( /obj/effect/turf_decal/siding/dark{ dir = 4 }, /turf/open/floor/carpet, /area/centcom/central_command_areas/hall) -"Ae" = ( +"aAe" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 8 }, @@ -9758,7 +10133,12 @@ dir = 8 }, /area/centcom/central_command_areas/evacuation/ship) -"Ag" = ( +"aAf" = ( +/obj/structure/flora/bush/fullgrass/style_3, +/obj/structure/flora/bush/large/style_3, +/turf/open/floor/grass, +/area/centcom/central_command_areas/retirement_yard) +"aAg" = ( /obj/structure/chair/stool/directional/south, /obj/structure/sign/map/right{ desc = "A framed picture of the station. Clockwise from security in red at the top, you see engineering in yellow, science in purple, escape in checkered red-and-white, medbay in green, arrivals in checkered red-and-blue, and then cargo in brown."; @@ -9767,7 +10147,7 @@ }, /turf/open/floor/wood/tile, /area/centcom/syndicate_mothership/control) -"Ah" = ( +"aAh" = ( /obj/effect/turf_decal/tile/dark/diagonal_edge, /obj/machinery/light/neon_lining{ icon_state = "pink2_1" @@ -9778,7 +10158,7 @@ }, /turf/open/floor/iron/white/diagonal, /area/centcom/central_command_areas/hall) -"Ai" = ( +"aAi" = ( /obj/structure/sign/poster/contraband/lamarr{ pixel_y = -32 }, @@ -9786,7 +10166,7 @@ dir = 1 }, /area/centcom/syndicate_mothership/control) -"Aj" = ( +"aAj" = ( /obj/structure/railing/wood{ dir = 8 }, @@ -9794,35 +10174,35 @@ /obj/structure/flora/bush/flowers_yw/style_random, /turf/open/floor/grass, /area/centcom/central_command_areas/hall) -"Ak" = ( +"aAk" = ( /obj/structure/railing/wood{ dir = 4 }, /turf/open/floor/glass/reinforced, /area/centcom/central_command_areas/admin_hangout) -"Al" = ( +"aAl" = ( /turf/open/floor/mineral/titanium/tiled/white, /area/centcom/central_command_areas/admin) -"Am" = ( +"aAm" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/kitchen) -"An" = ( +"aAn" = ( /turf/open/floor/carpet, /area/centcom/central_command_areas/kitchen) -"Ao" = ( +"aAo" = ( /turf/open/floor/vault/sandstone, /area/centcom/central_command_areas/admin) -"Ap" = ( +"aAp" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 }, /obj/effect/turf_decal/siding/wood/corner, /turf/open/floor/wood/large, /area/centcom/central_command_areas/kitchen) -"Aq" = ( +"aAq" = ( /obj/structure/table/reinforced/plastitaniumglass, /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/siding/thinplating_new/dark{ @@ -9836,16 +10216,16 @@ /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/centcom/syndicate_mothership/control) -"Ar" = ( +"aAr" = ( /obj/structure/fake_stairs/wood/directional/south, /turf/open/floor/wood/large, /area/centcom/central_command_areas/medical) -"As" = ( +"aAs" = ( /obj/structure/fake_stairs/wood/directional/west, /obj/structure/curtain/cloth/fancy, /turf/open/floor/wood/parquet, /area/centcom/central_command_areas/arcade) -"At" = ( +"aAt" = ( /obj/structure/sign/poster/contraband/bountyhunters{ pixel_x = -32 }, @@ -9854,21 +10234,21 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, /turf/open/floor/iron/smooth, /area/centcom/syndicate_mothership/control) -"Au" = ( +"aAu" = ( /turf/open/floor/plastic, /area/centcom/syndicate_mothership/expansion_fridgerummage) -"Av" = ( +"aAv" = ( /obj/effect/turf_decal/siding/green, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/botany) -"Aw" = ( +"aAw" = ( /obj/effect/turf_decal/siding/dark{ dir = 1 }, /obj/effect/turf_decal/siding/dark, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/admin) -"Ax" = ( +"aAx" = ( /obj/structure/table/reinforced/plasmarglass, /obj/item/pen{ pixel_x = 6; @@ -9879,7 +10259,7 @@ }, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership) -"Ay" = ( +"aAy" = ( /obj/structure/railing/wood, /obj/structure/table/reinforced, /obj/item/botanical_lexicon, @@ -9889,7 +10269,7 @@ /obj/effect/turf_decal/trimline/green/line, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/botany) -"Az" = ( +"aAz" = ( /obj/effect/turf_decal/siding/wood{ dir = 10 }, @@ -9898,7 +10278,7 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/kitchen) -"AA" = ( +"aAA" = ( /obj/structure/window/reinforced/spawner/directional/east, /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/table/reinforced, @@ -9908,7 +10288,7 @@ /obj/effect/turf_decal/tile/blue/fourcorners, /turf/open/floor/iron/white, /area/centcom/central_command_areas/evacuation/ship) -"AB" = ( +"aAB" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 }, @@ -9917,7 +10297,7 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/borbop) -"AC" = ( +"aAC" = ( /obj/effect/turf_decal/tile/brown/diagonal_centre, /obj/structure/table/reinforced, /obj/item/reagent_containers/cup/coffeepot/bluespace{ @@ -9938,14 +10318,21 @@ }, /turf/open/floor/iron/white/diagonal, /area/centcom/central_command_areas/admin) -"AD" = ( +"aAD" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 }, /obj/item/banner/command, /turf/open/floor/stone, /area/centcom/central_command_areas/evacuation/ship) -"AF" = ( +"aAE" = ( +/obj/machinery/oven/range, +/obj/structure/sign/painting/eldritch/desire{ + pixel_y = 32 + }, +/turf/open/floor/iron/terracotta/small, +/area/centcom/central_command_areas/retirement_home) +"aAF" = ( /obj/effect/turf_decal/siding/dark{ dir = 1 }, @@ -9955,7 +10342,7 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/hall) -"AG" = ( +"aAG" = ( /obj/structure/table/wood, /obj/item/reagent_containers/cup/glass/drinkingglass{ pixel_y = 2; @@ -9969,10 +10356,10 @@ }, /turf/open/floor/wood/tile, /area/centcom/central_command_areas/evacuation/ship) -"AH" = ( +"aAH" = ( /turf/open/floor/iron, /area/centcom/central_command_areas/supplypod/loading/one) -"AI" = ( +"aAI" = ( /obj/structure/chair/wood{ dir = 8 }, @@ -9982,16 +10369,16 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/kitchen) -"AJ" = ( +"aAJ" = ( /obj/machinery/vending/autodrobe/all_access, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/hall) -"AK" = ( +"aAK" = ( /obj/effect/turf_decal/trimline/red, /obj/effect/turf_decal/trimline/red, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership/expansion_chemicalwarfare) -"AL" = ( +"aAL" = ( /obj/structure/chair/office{ dir = 1 }, @@ -10000,27 +10387,27 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/briefing) -"AM" = ( +"aAM" = ( /obj/structure/fake_stairs/wood/directional/south, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin_hangout) -"AN" = ( +"aAN" = ( /obj/structure/table/reinforced/titaniumglass, /obj/machinery/computer/records/medical/laptop, /turf/open/floor/mineral/titanium/white, /area/centcom/central_command_areas/admin) -"AO" = ( +"aAO" = ( /obj/machinery/computer/operating{ dir = 8 }, /obj/machinery/light/floor/has_bulb, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/medical) -"AP" = ( +"aAP" = ( /obj/machinery/nuclearbomb/beer, /turf/open/floor/mineral/titanium/white, /area/centcom/central_command_areas/admin) -"AQ" = ( +"aAQ" = ( /obj/structure/lattice/catwalk, /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -10030,23 +10417,23 @@ }, /turf/open/lava/plasma/ice_moon, /area/centcom/syndicate_mothership/control) -"AR" = ( +"aAR" = ( /obj/structure/table/reinforced/plastitaniumglass, /obj/item/dice/d20, /turf/open/floor/circuit, /area/centcom/central_command_areas/admin) -"AS" = ( +"aAS" = ( /obj/machinery/light/floor/has_bulb, /turf/open/floor/carpet/royalblue, /area/centcom/central_command_areas/admin) -"AT" = ( +"aAT" = ( /obj/effect/turf_decal/siding/wood{ dir = 6 }, /obj/machinery/light/directional/south, /turf/open/floor/wood/large, /area/centcom/central_command_areas/kitchen) -"AU" = ( +"aAU" = ( /obj/structure/lattice/catwalk, /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -10056,7 +10443,7 @@ }, /turf/open/lava/plasma/ice_moon, /area/centcom/syndicate_mothership/control) -"AV" = ( +"aAV" = ( /obj/structure/hedge, /obj/structure/railing/wood{ dir = 4 @@ -10066,7 +10453,7 @@ /obj/structure/railing/wood, /turf/open/floor/iron/white/diagonal, /area/centcom/central_command_areas/hall) -"AW" = ( +"aAW" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 }, @@ -10075,7 +10462,7 @@ }, /turf/open/floor/mineral/titanium/tiled/blue, /area/centcom/syndicate_mothership/expansion_bombthreat) -"AX" = ( +"aAX" = ( /obj/effect/turf_decal/siding/dark{ dir = 5 }, @@ -10083,28 +10470,42 @@ dir = 8 }, /area/centcom/central_command_areas/hall) -"AZ" = ( +"aAY" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/item/reagent_containers/cup/glass/coffee/no_lid{ + pixel_y = 33; + pixel_x = 11 + }, +/turf/open/floor/wood/parquet, +/area/centcom/central_command_areas/retirement_home) +"aAZ" = ( /obj/structure/chair/office{ dir = 1 }, /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/centcom/syndicate_mothership/control) -"Ba" = ( +"aBa" = ( /obj/structure/flora/bush/flowers_pp/style_random, /turf/open/floor/grass, /area/centcom/central_command_areas/hall) -"Bc" = ( +"aBb" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/carpet, +/area/centcom/central_command_areas/retirement_home) +"aBc" = ( /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/centcom/syndicate_mothership/control) -"Bd" = ( +"aBd" = ( /obj/structure/fence{ dir = 4 }, /turf/open/misc/asteroid/snow/airless, /area/centcom/syndicate_mothership) -"Be" = ( +"aBe" = ( /obj/item/clothing/head/soft/fishing_hat, /obj/structure/table/wood, /obj/item/fishing_line, @@ -10129,7 +10530,7 @@ /obj/item/bait_can/worm/premium, /turf/open/floor/carpet/neon/simple/cyan, /area/centcom/central_command_areas/admin) -"Bf" = ( +"aBf" = ( /obj/effect/turf_decal/siding/dark/corner{ dir = 1 }, @@ -10138,7 +10539,7 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/admin_hangout) -"Bg" = ( +"aBg" = ( /obj/structure/railing{ dir = 8; layer = 4.1 @@ -10151,7 +10552,7 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/supply) -"Bh" = ( +"aBh" = ( /obj/effect/turf_decal/siding/wood{ dir = 5 }, @@ -10169,18 +10570,18 @@ }, /turf/open/floor/wood/parquet, /area/centcom/central_command_areas/borbop) -"Bi" = ( +"aBi" = ( /obj/effect/turf_decal/siding/green{ dir = 5 }, /obj/machinery/vending/hydroseeds, /turf/open/floor/iron/dark/small, /area/centcom/central_command_areas/botany) -"Bj" = ( +"aBj" = ( /obj/effect/landmark/navigate_destination/centcom/dresser, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/hall) -"Bk" = ( +"aBk" = ( /obj/effect/turf_decal/siding/wood/corner, /obj/effect/turf_decal/siding/wood{ dir = 9 @@ -10195,13 +10596,13 @@ }, /turf/open/floor/wood/parquet, /area/centcom/central_command_areas/borbop) -"Bl" = ( +"aBl" = ( /obj/structure/table/wood, /obj/item/storage/box/drinkingglasses, /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/centcom/syndicate_mothership/control) -"Bm" = ( +"aBm" = ( /obj/structure/reagent_dispensers/fueltank, /obj/item/weldingtool/experimental, /obj/effect/decal/cleanable/oil, @@ -10209,7 +10610,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"Bn" = ( +"aBn" = ( /obj/structure/table/reinforced/titaniumglass, /obj/machinery/door/window/left/directional/west{ name = "Secret Stuff"; @@ -10233,18 +10634,18 @@ }, /turf/open/floor/carpet/green, /area/centcom/central_command_areas/admin) -"Bo" = ( +"aBo" = ( /turf/open/floor/iron/dark, /area/centcom/central_command_areas/firing_range) -"Bp" = ( +"aBp" = ( /obj/structure/fence/door, /turf/open/misc/asteroid/snow/airless, /area/centcom/syndicate_mothership) -"Bq" = ( +"aBq" = ( /obj/effect/landmark/start/wizard, /turf/open/floor/engine/cult, /area/centcom/wizard_station) -"Br" = ( +"aBr" = ( /obj/structure/railing/wood{ dir = 8 }, @@ -10253,17 +10654,20 @@ /obj/structure/flora/bush/grassy/style_random, /turf/open/floor/grass, /area/centcom/central_command_areas/hall) -"Bt" = ( +"aBs" = ( +/turf/open/misc/asteroid, +/area/cruiser_dock) +"aBt" = ( /obj/effect/turf_decal/siding/wood{ dir = 5 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/evacuation) -"Bu" = ( +"aBu" = ( /obj/machinery/vending/drugs, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/medical) -"Bv" = ( +"aBv" = ( /obj/structure/chair/stool/bar/directional/west, /obj/effect/turf_decal/siding/thinplating/dark{ dir = 4 @@ -10272,7 +10676,7 @@ /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/centcom/syndicate_mothership/control) -"Bw" = ( +"aBw" = ( /obj/structure/disposalpipe/trunk{ dir = 8 }, @@ -10280,27 +10684,27 @@ /obj/structure/fans/tiny/invisible, /turf/open/floor/plating, /area/centcom/central_command_areas/admin) -"Bx" = ( +"aBx" = ( /obj/structure/table/wood, /obj/item/food/syndicake{ pixel_y = 3 }, /turf/open/floor/wood/tile, /area/centcom/syndicate_mothership/control) -"By" = ( +"aBy" = ( /obj/machinery/light/directional/south, /obj/structure/filingcabinet/chestdrawer, /obj/machinery/status_display/evac/directional/south, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/ferry) -"Bz" = ( +"aBz" = ( /obj/structure/table/reinforced, /obj/effect/spawner/random/bureaucracy/pen, /obj/effect/spawner/random/bureaucracy/folder, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"BA" = ( +"aBA" = ( /obj/structure/chair/sofa/corp/right{ dir = 1 }, @@ -10309,21 +10713,21 @@ }, /turf/open/floor/wood/large, /area/centcom/tdome/observation) -"BB" = ( +"aBB" = ( /obj/effect/turf_decal/siding/wood{ dir = 5 }, /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin) -"BC" = ( +"aBC" = ( /obj/effect/turf_decal/siding/wood{ dir = 5 }, /obj/machinery/vending/cigarette, /turf/open/floor/wood/large, /area/centcom/central_command_areas/borbop) -"BD" = ( +"aBD" = ( /obj/effect/turf_decal/siding/purple{ dir = 1 }, @@ -10332,30 +10736,30 @@ }, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership/expansion_chemicalwarfare) -"BE" = ( +"aBE" = ( /obj/structure/fake_stairs/wood/directional/south, /turf/open/floor/wood/large, /area/centcom/central_command_areas/kitchen) -"BF" = ( +"aBF" = ( /obj/structure/hive_exit, /turf/closed/indestructible/hive, /area/station/hive/two) -"BG" = ( +"aBG" = ( /obj/structure/fence{ dir = 4 }, /turf/open/misc/asteroid/snow/icemoon, /area/centcom/syndicate_mothership/control) -"BH" = ( +"aBH" = ( /turf/open/floor/mineral/titanium/yellow, /area/centcom/syndicate_mothership/control) -"BI" = ( +"aBI" = ( /obj/effect/turf_decal/siding/dark{ dir = 1 }, /turf/open/floor/carpet, /area/centcom/central_command_areas/hall) -"BJ" = ( +"aBJ" = ( /obj/effect/turf_decal/bot, /obj/structure/closet/crate/syndicrate{ max_integrity = 1 @@ -10363,7 +10767,7 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"BK" = ( +"aBK" = ( /obj/effect/turf_decal/siding/dark{ dir = 10 }, @@ -10375,7 +10779,7 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/hall) -"BL" = ( +"aBL" = ( /obj/machinery/light/small/directional/west, /obj/structure/closet/secure_closet/freezer/fridge/open, /obj/item/food/meat/slab/rawcrab, @@ -10404,12 +10808,17 @@ }, /turf/open/floor/plastic, /area/centcom/syndicate_mothership/expansion_fridgerummage) -"BM" = ( +"aBM" = ( /obj/effect/decal/cleanable/garbage, /obj/structure/fans/tiny/invisible, /turf/open/floor/iron, /area/centcom/central_command_areas/admin) -"BO" = ( +"aBN" = ( +/obj/structure/flora/bush/fullgrass/style_3, +/obj/structure/flora/biolumi/mine, +/turf/open/floor/grass, +/area/centcom/central_command_areas/retirement_yard) +"aBO" = ( /obj/structure/bed{ dir = 4 }, @@ -10418,7 +10827,12 @@ }, /turf/open/floor/iron/smooth_half, /area/centcom/syndicate_mothership/control) -"BQ" = ( +"aBP" = ( +/obj/structure/decorative/shelf/alcohol, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/large, +/area/centcom/central_command_areas/retirement_home) +"aBQ" = ( /obj/structure/chair/stool/bar/directional/west, /obj/effect/turf_decal/siding/thinplating/dark{ dir = 4 @@ -10427,21 +10841,21 @@ /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/centcom/syndicate_mothership/control) -"BR" = ( +"aBR" = ( /turf/open/floor/grass, /area/centcom/central_command_areas/evacuation/ship) -"BS" = ( +"aBS" = ( /obj/structure/hedge, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"BT" = ( +"aBT" = ( /obj/machinery/door/airlock{ icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; name = "Storage" }, /turf/open/floor/engine/cult, /area/centcom/wizard_station) -"BU" = ( +"aBU" = ( /obj/structure/sign/poster/contraband/lusty_xenomorph{ pixel_y = 32 }, @@ -10451,21 +10865,21 @@ dir = 1 }, /area/centcom/syndicate_mothership/control) -"BV" = ( +"aBV" = ( /obj/effect/turf_decal/siding/red{ dir = 4 }, /turf/open/floor/iron/dark/textured_large, /area/centcom/syndicate_mothership/control) -"BW" = ( +"aBW" = ( /obj/structure/lattice/catwalk, /obj/structure/railing, /turf/open/floor/plating/snowed/icemoon, /area/centcom/syndicate_mothership/control) -"BX" = ( +"aBX" = ( /turf/open/floor/iron/dark/textured_large, /area/centcom/syndicate_mothership/control) -"BY" = ( +"aBY" = ( /obj/effect/turf_decal/siding/wood{ dir = 6 }, @@ -10482,10 +10896,15 @@ }, /turf/open/floor/wood/parquet, /area/centcom/central_command_areas/borbop) -"BZ" = ( +"aBZ" = ( /turf/open/indestructible/hive, /area/station/hive/one) -"Cb" = ( +"aCa" = ( +/obj/structure/flora/bush/fullgrass, +/obj/structure/flora/bush/large/style_3, +/turf/open/floor/grass, +/area/centcom/central_command_areas/retirement_yard) +"aCb" = ( /obj/effect/turf_decal/siding/wood, /obj/structure/sign{ name = "wall"; @@ -10495,33 +10914,33 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin) -"Cc" = ( +"aCc" = ( /obj/structure/chair/comfy/shuttle, /turf/open/floor/circuit/green, /area/centcom/central_command_areas/admin) -"Cd" = ( +"aCd" = ( /turf/open/misc/asteroid/snow/airless, /area/centcom/syndicate_mothership/control) -"Ce" = ( +"aCe" = ( /obj/structure/table/wood, /obj/item/dice/d20, /obj/item/dice, /turf/open/floor/carpet, /area/centcom/wizard_station) -"Cf" = ( +"aCf" = ( /obj/structure/destructible/cult/item_dispenser/forge/engine, /turf/open/floor/engine/cult, /area/centcom/wizard_station) -"Cg" = ( +"aCg" = ( /obj/effect/turf_decal/siding/dark{ dir = 6 }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/hall) -"Ch" = ( +"aCh" = ( /turf/open/floor/wood/large, /area/centcom/central_command_areas/borbop) -"Ci" = ( +"aCi" = ( /obj/structure/railing/wood{ dir = 4 }, @@ -10530,7 +10949,7 @@ }, /turf/open/floor/glass/reinforced, /area/centcom/central_command_areas/hall) -"Cj" = ( +"aCj" = ( /obj/effect/turf_decal/siding/dark/corner{ dir = 8 }, @@ -10539,23 +10958,23 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/supply) -"Ck" = ( +"aCk" = ( /obj/effect/turf_decal/stripes/line{ dir = 5 }, /obj/machinery/portable_atmospherics/canister, /turf/open/floor/plating, /area/centcom/syndicate_mothership/expansion_bombthreat) -"Cl" = ( +"aCl" = ( /turf/open/space/transit, /area/space) -"Cm" = ( +"aCm" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/structure/table/reinforced, /obj/structure/desk_bell, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/borbop) -"Cn" = ( +"aCn" = ( /obj/effect/turf_decal/siding/wood{ dir = 5 }, @@ -10567,24 +10986,24 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin) -"Co" = ( +"aCo" = ( /obj/effect/turf_decal/tile/brown/half/contrasted{ dir = 4 }, /turf/open/floor/iron, /area/centcom/central_command_areas/supplypod/loading/four) -"Cp" = ( +"aCp" = ( /obj/effect/turf_decal/siding/thinplating_new/light{ dir = 8 }, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership/expansion_chemicalwarfare) -"Cq" = ( +"aCq" = ( /obj/structure/chair/comfy/carp, /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin_hangout) -"Cr" = ( +"aCr" = ( /obj/effect/turf_decal/box/corners{ dir = 8 }, @@ -10593,29 +11012,29 @@ }, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership/expansion_chemicalwarfare) -"Cs" = ( +"aCs" = ( /obj/effect/turf_decal/siding/dark, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin) -"Ct" = ( +"aCt" = ( /obj/machinery/light/directional/south, /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood/large, /area/centcom/central_command_areas/hall) -"Cu" = ( +"aCu" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/structure/railing/wood{ dir = 4 }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/hall) -"Cv" = ( +"aCv" = ( /obj/machinery/light/cold/directional/south, /turf/open/floor/iron/smooth_half{ dir = 1 }, /area/centcom/syndicate_mothership/control) -"Cw" = ( +"aCw" = ( /obj/effect/turf_decal/siding/red, /obj/structure/table/reinforced, /obj/machinery/recharger, @@ -10625,11 +11044,11 @@ }, /turf/open/floor/iron/dark/textured_large, /area/centcom/syndicate_mothership/control) -"Cx" = ( +"aCx" = ( /obj/machinery/door/airlock/centcom, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/medical) -"Cy" = ( +"aCy" = ( /obj/structure/table/wood, /obj/machinery/chem_dispenser/drinks{ dir = 8; @@ -10643,63 +11062,68 @@ /obj/structure/sign/calendar/directional/north, /turf/open/floor/wood/tile, /area/centcom/central_command_areas/evacuation/ship) -"Cz" = ( +"aCz" = ( /obj/effect/turf_decal/siding/wood, /obj/machinery/light/directional/east, /turf/open/floor/wood/large, /area/centcom/central_command_areas/arcade) -"CA" = ( +"aCA" = ( /obj/machinery/light/floor/has_bulb, /obj/effect/turf_decal/trimline/green, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/botany) -"CB" = ( +"aCB" = ( /obj/structure/railing/corner{ dir = 4 }, /turf/open/misc/asteroid/snow/icemoon, /area/centcom/syndicate_mothership/control) -"CC" = ( +"aCC" = ( /obj/structure/flora/tree/pine/style_random, /obj/structure/flora/grass/both/style_random, /turf/open/misc/asteroid/snow/icemoon, /area/centcom/syndicate_mothership/control) -"CD" = ( +"aCD" = ( /obj/structure/table/reinforced, /obj/item/megaphone/sec, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/firing_range_checkpoint_control) -"CF" = ( +"aCE" = ( +/obj/structure/flora/bush/fullgrass/style_2, +/obj/structure/flora/bush/large/style_3, +/turf/open/floor/grass, +/area/centcom/central_command_areas/retirement_yard) +"aCF" = ( /obj/machinery/suit_storage_unit/industrial, /obj/structure/window/reinforced/survival_pod/spawner/directional/east, /turf/open/floor/iron/smooth_large, /area/centcom/central_command_areas/evacuation/ship) -"CG" = ( +"aCG" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 1 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/borbop) -"CH" = ( +"aCH" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 8 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/white/textured, /area/centcom/central_command_areas/evacuation/ship) -"CI" = ( +"aCI" = ( /obj/structure/flora/rock/pile/style_random, /turf/open/misc/asteroid/snow/icemoon, /area/centcom/syndicate_mothership/control) -"CJ" = ( +"aCJ" = ( /obj/structure/barricade/sandbags, /turf/open/misc/asteroid/snow/airless, /area/centcom/syndicate_mothership) -"CK" = ( +"aCK" = ( /obj/effect/turf_decal/stripes/full, /turf/open/floor/mineral/titanium/yellow, /area/centcom/syndicate_mothership/control) -"CL" = ( +"aCL" = ( /obj/docking_port/stationary{ area_type = /area/centcom/syndicate_mothership; dheight = 1; @@ -10713,7 +11137,7 @@ }, /turf/open/misc/asteroid/snow/airless, /area/centcom/syndicate_mothership) -"CM" = ( +"aCM" = ( /obj/effect/turf_decal/siding/wood{ dir = 9 }, @@ -10723,31 +11147,35 @@ /obj/structure/hedge, /turf/open/floor/wood/large, /area/centcom/central_command_areas/medical) -"CN" = ( +"aCN" = ( /obj/machinery/door/airlock/centcom{ name = "Vicky's Office" }, /obj/effect/mapping_helpers/airlock/access/any/admin/captain, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin) -"CO" = ( +"aCO" = ( /obj/structure/fireaxecabinet/directional/north, /turf/open/misc/grass, /area/centcom/central_command_areas/admin) -"CP" = ( +"aCP" = ( /obj/structure/flora/rock/icy/style_random, /turf/open/misc/asteroid/snow/icemoon, /area/centcom/syndicate_mothership/control) -"CQ" = ( +"aCQ" = ( /obj/structure/injured_spawner, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/medical) -"CS" = ( +"aCR" = ( +/obj/structure/flora/bush/fullgrass, +/turf/open/floor/grass, +/area/centcom/central_command_areas/retirement_yard) +"aCS" = ( /obj/machinery/door/airlock/centcom, /obj/effect/mapping_helpers/airlock/access/any/admin/captain, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin) -"CT" = ( +"aCT" = ( /obj/structure/table/reinforced, /obj/structure/railing{ dir = 8; @@ -10771,7 +11199,7 @@ }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/evacuation/ship) -"CU" = ( +"aCU" = ( /obj/structure/table/wood, /obj/machinery/computer/security/wooden_tv, /obj/effect/turf_decal/siding/dark{ @@ -10779,13 +11207,17 @@ }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin) -"CW" = ( +"aCV" = ( +/obj/structure/flora/bush/large/style_3, +/turf/open/floor/grass, +/area/centcom/central_command_areas/retirement_yard) +"aCW" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/medical) -"CX" = ( +"aCX" = ( /obj/structure/chair/stool/directional/south, /obj/structure/sign/map/left{ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; @@ -10795,25 +11227,25 @@ /obj/effect/landmark/start/nukeop, /turf/open/floor/wood/tile, /area/centcom/syndicate_mothership/control) -"CY" = ( +"aCY" = ( /obj/structure/chair/greyscale{ dir = 4 }, /turf/open/floor/mineral/titanium, /area/centcom/syndicate_mothership/control) -"CZ" = ( +"aCZ" = ( /obj/item/clothing/mask/facehugger/dead, /obj/structure/fans/tiny/invisible, /turf/open/floor/plating, /area/centcom/central_command_areas/admin) -"Da" = ( +"aDa" = ( /obj/structure/window/reinforced/spawner/directional/east, /obj/structure/bodycontainer/morgue, /obj/effect/turf_decal/tile/blue/fourcorners, /obj/machinery/light/directional/south, /turf/open/floor/iron/white, /area/centcom/central_command_areas/evacuation/ship) -"Db" = ( +"aDb" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/structure/railing/wood{ dir = 8 @@ -10823,35 +11255,35 @@ }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin_hangout) -"Dc" = ( +"aDc" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 }, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership/expansion_chemicalwarfare) -"Dd" = ( +"aDd" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, /obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/hidden/layer2, /turf/open/floor/catwalk_floor/iron_dark, /area/centcom/syndicate_mothership/control) -"De" = ( +"aDe" = ( /obj/item/cautery/alien, /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/centcom/wizard_station) -"Df" = ( +"aDf" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, /obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/centcom/syndicate_mothership/control) -"Dg" = ( +"aDg" = ( /obj/structure/hedge, /obj/structure/railing/wood, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin_hangout) -"Dh" = ( +"aDh" = ( /obj/structure/bookcase, /obj/item/book/granter/action/spell/random, /obj/item/storage/book/bible, @@ -10861,14 +11293,14 @@ /obj/item/book/random, /turf/open/floor/plating/abductor, /area/centcom/central_command_areas/admin) -"Di" = ( +"aDi" = ( /turf/closed/indestructible/riveted, /area/centcom/ai_multicam_room) -"Dj" = ( +"aDj" = ( /obj/effect/turf_decal/siding/wood/corner, /turf/open/floor/wood/large, /area/centcom/central_command_areas/hall) -"Dk" = ( +"aDk" = ( /obj/structure/chair/sofa/right/brown{ dir = 4 }, @@ -10878,32 +11310,32 @@ /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/centcom/syndicate_mothership/control) -"Dl" = ( +"aDl" = ( /obj/structure/chair/sofa/corp/left{ dir = 8 }, /turf/open/floor/mineral/titanium/white, /area/centcom/central_command_areas/admin) -"Dm" = ( +"aDm" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 1 }, /obj/effect/turf_decal/siding/red/corner, /turf/open/floor/iron/dark/textured_large, /area/centcom/syndicate_mothership/control) -"Dn" = ( +"aDn" = ( /obj/structure/flora/tree/palm, /obj/machinery/light/directional/north, /turf/open/floor/grass, /area/centcom/central_command_areas/evacuation/ship) -"Do" = ( +"aDo" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/structure/railing/wood{ dir = 8 }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin_hangout) -"Dp" = ( +"aDp" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/siding/red{ dir = 4 @@ -10912,13 +11344,18 @@ /obj/item/pen, /turf/open/floor/iron/dark/textured_large, /area/centcom/syndicate_mothership/control) -"Dq" = ( +"aDq" = ( /obj/structure/railing{ dir = 5 }, /turf/open/misc/asteroid/snow/icemoon, /area/centcom/syndicate_mothership/control) -"Ds" = ( +"aDr" = ( +/obj/structure/flora/bush/fullgrass/style_2, +/obj/structure/flora/biolumi/mine, +/turf/open/floor/grass, +/area/centcom/central_command_areas/retirement_yard) +"aDs" = ( /obj/structure/table/wood, /obj/machinery/fax{ name = "Glyphee's Fax Machine"; @@ -10927,14 +11364,14 @@ /obj/structure/fans/tiny/invisible, /turf/open/floor/carpet/green, /area/centcom/central_command_areas/admin) -"Dt" = ( +"aDt" = ( /obj/machinery/modular_computer/preset/id/centcom, /obj/effect/turf_decal/siding/dark{ dir = 5 }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin) -"Du" = ( +"aDu" = ( /obj/item/pizzabox/meat{ pixel_y = 5 }, @@ -10944,13 +11381,13 @@ /obj/structure/table/wood, /turf/open/floor/iron/dark/textured_large, /area/centcom/central_command_areas/arcade) -"Dv" = ( +"aDv" = ( /obj/item/clothing/suit/wizrobe/black, /obj/item/clothing/head/wizard/black, /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/centcom/wizard_station) -"Dw" = ( +"aDw" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 }, @@ -10960,14 +11397,20 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin) -"Dy" = ( +"aDx" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/centcom/central_command_areas/retirement_home) +"aDy" = ( /obj/structure/flora/grass/both/style_random, /obj/structure/railing{ dir = 1 }, /turf/open/misc/asteroid/snow/icemoon, /area/centcom/syndicate_mothership/control) -"Dz" = ( +"aDz" = ( /obj/effect/light_emitter{ set_cap = 1; set_luminosity = 4 @@ -10975,7 +11418,7 @@ /obj/structure/barricade/sandbags, /turf/open/misc/asteroid/snow/airless, /area/centcom/syndicate_mothership) -"DA" = ( +"aDA" = ( /obj/effect/turf_decal/siding/wideplating_new/dark{ dir = 8 }, @@ -10988,23 +11431,28 @@ }, /turf/open/floor/iron/dark/textured_large, /area/centcom/central_command_areas/evacuation/ship) -"DB" = ( +"aDB" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/structure/table/reinforced, /obj/effect/spawner/random/special_lighter, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/borbop) -"DC" = ( +"aDC" = ( /obj/structure/railing/wood{ dir = 8 }, /turf/open/floor/grass, /area/centcom/central_command_areas/hall) -"DE" = ( +"aDD" = ( +/obj/structure/chair/comfy/brown, +/obj/structure/sign/flag/nanotrasen/directional/north, +/turf/open/floor/wood, +/area/centcom/central_command_areas/retirement_home) +"aDE" = ( /obj/machinery/light/floor/has_bulb, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"DF" = ( +"aDF" = ( /obj/structure/railing/wood{ dir = 4 }, @@ -11013,24 +11461,24 @@ }, /turf/open/floor/glass/reinforced, /area/centcom/central_command_areas/admin_hangout) -"DG" = ( +"aDG" = ( /obj/structure/fake_stairs/wood/directional/south, /obj/structure/curtain/cloth/fancy, /turf/open/floor/wood/parquet, /area/centcom/central_command_areas/arcade) -"DH" = ( +"aDH" = ( /obj/machinery/igniter/incinerator_ordmix{ id = "syn_ordmix_igniter" }, /turf/open/floor/engine/vacuum, /area/centcom/syndicate_mothership/expansion_bombthreat) -"DI" = ( +"aDI" = ( /obj/structure/extinguisher_cabinet/directional/south, /turf/open/floor/iron/dark/textured_half{ dir = 8 }, /area/centcom/syndicate_mothership/control) -"DJ" = ( +"aDJ" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 1 }, @@ -11039,25 +11487,25 @@ }, /turf/open/floor/mineral/plastitanium/red, /area/centcom/syndicate_mothership/expansion_bombthreat) -"DK" = ( +"aDK" = ( /obj/structure/sign/poster/contraband/c20r{ pixel_y = -32 }, /obj/structure/cable, /turf/open/floor/iron/smooth, /area/centcom/syndicate_mothership/control) -"DL" = ( +"aDL" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, /turf/open/floor/catwalk_floor, /area/centcom/central_command_areas/evacuation/ship) -"DM" = ( +"aDM" = ( /obj/machinery/door/window{ dir = 8 }, /turf/open/floor/carpet/purple, /area/centcom/central_command_areas/admin) -"DN" = ( +"aDN" = ( /obj/structure/table/glass/plasmaglass, /obj/item/stack/sheet/mineral/plasma{ pixel_y = 15 @@ -11072,7 +11520,7 @@ /obj/item/stack/cable_coil, /turf/open/floor/mineral/titanium/tiled/yellow, /area/centcom/syndicate_mothership/expansion_chemicalwarfare) -"DO" = ( +"aDO" = ( /obj/item/kirbyplants{ icon_state = "plant-22"; pixel_x = -4 @@ -11083,7 +11531,7 @@ /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood/large, /area/centcom/central_command_areas/kitchen) -"DP" = ( +"aDP" = ( /obj/machinery/vending/wardrobe/cargo_wardrobe, /obj/effect/turf_decal/siding/dark/end{ dir = 4 @@ -11092,7 +11540,7 @@ dir = 6 }, /area/centcom/central_command_areas/hall) -"DQ" = ( +"aDQ" = ( /obj/machinery/light/floor/has_bulb, /obj/structure/table/reinforced, /obj/item/lighter{ @@ -11105,25 +11553,25 @@ }, /turf/open/floor/stone, /area/centcom/central_command_areas/admin_hangout) -"DR" = ( +"aDR" = ( /obj/structure/railing/wood{ dir = 1 }, /turf/open/floor/glass/reinforced, /area/centcom/central_command_areas/hall) -"DS" = ( +"aDS" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 1 }, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership/control) -"DT" = ( +"aDT" = ( /obj/structure/fermenting_barrel/gunpowder, /obj/item/reagent_containers/cup/bucket/wooden, /obj/item/flashlight/flare/torch, /turf/open/misc/grass, /area/centcom/central_command_areas/admin) -"DU" = ( +"aDU" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 }, @@ -11132,10 +11580,16 @@ }, /turf/open/floor/wood/parquet, /area/centcom/central_command_areas/borbop) -"DW" = ( +"aDV" = ( +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/turf/open/floor/grass, +/area/centcom/central_command_areas/retirement_yard) +"aDW" = ( /turf/open/indestructible/hive, /area/station/hive/three) -"DX" = ( +"aDX" = ( /obj/machinery/light/directional/north, /obj/effect/turf_decal/siding/dark{ dir = 9 @@ -11143,7 +11597,7 @@ /obj/effect/turf_decal/siding/dark/corner, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/supply) -"DY" = ( +"aDY" = ( /obj/structure/closet/secure_closet/ert_engi, /obj/effect/turf_decal/stripes/line{ dir = 6 @@ -11151,51 +11605,62 @@ /obj/structure/fireaxecabinet/directional/north, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"DZ" = ( +"aDZ" = ( /obj/structure/chair/wood{ dir = 1 }, /turf/open/floor/carpet/black, /area/centcom/central_command_areas/borbop) -"Eb" = ( +"aEa" = ( +/obj/machinery/coffeemaker/impressa{ + pixel_y = 13; + pixel_x = 2 + }, +/obj/structure/table/wood, +/obj/item/reagent_containers/cup/coffeepot{ + pixel_x = 7 + }, +/turf/open/floor/iron/terracotta/small, +/area/centcom/central_command_areas/retirement_home) +"aEb" = ( /obj/structure/table/reinforced/titaniumglass, /obj/item/storage/box/cups, /obj/machinery/light/floor/has_bulb, /turf/open/floor/mineral/titanium/white, /area/centcom/central_command_areas/admin) -"Ec" = ( +"aEc" = ( /obj/machinery/light/directional/north, /obj/effect/turf_decal/siding/wood{ dir = 1 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/hall) -"Ed" = ( +"aEd" = ( /obj/structure/closet/crate/bin{ name = "treat storage" }, /turf/open/floor/iron/grimy, /area/centcom/central_command_areas/admin) -"Ee" = ( +"aEe" = ( /obj/structure/chair/wood/wings{ dir = 8 }, /turf/open/floor/carpet, /area/centcom/wizard_station) -"Ef" = ( +"aEf" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 8 }, /turf/open/floor/wood/parquet, /area/centcom/central_command_areas/arcade) -"Eg" = ( +"aEg" = ( /obj/machinery/door/airlock{ icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; name = "Break Room" }, /turf/open/floor/engine/cult, /area/centcom/wizard_station) -"Eh" = ( +"aEh" = ( /obj/effect/turf_decal/siding/dark{ dir = 4 }, @@ -11204,7 +11669,7 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/borbop) -"Ei" = ( +"aEi" = ( /obj/machinery/door/airlock/titanium{ name = "Restroom" }, @@ -11214,15 +11679,15 @@ /obj/effect/mapping_helpers/airlock/access/all/syndicate/general, /turf/open/floor/catwalk_floor/titanium, /area/centcom/syndicate_mothership/control) -"Ej" = ( +"aEj" = ( /obj/machinery/limbgrower/fullupgrade, /turf/open/floor/mineral/titanium/tiled/white, /area/centcom/central_command_areas/admin) -"Ek" = ( +"aEk" = ( /obj/item/toy/figure/syndie, /turf/open/misc/asteroid/snow/icemoon, /area/centcom/syndicate_mothership/control) -"El" = ( +"aEl" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 }, @@ -11231,7 +11696,7 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin_hangout) -"Em" = ( +"aEm" = ( /obj/structure/chair/comfy/carp{ dir = 8 }, @@ -11240,13 +11705,13 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin_hangout) -"En" = ( +"aEn" = ( /obj/effect/turf_decal/siding/dark{ dir = 8 }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/prison/cells) -"Eo" = ( +"aEo" = ( /obj/structure/railing/wood{ dir = 4 }, @@ -11257,7 +11722,7 @@ }, /turf/open/floor/wood/parquet, /area/centcom/central_command_areas/borbop) -"Ep" = ( +"aEp" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 }, @@ -11266,40 +11731,40 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/kitchen) -"Eq" = ( +"aEq" = ( /obj/structure/chair/stool/bar/directional/east, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/vomit/old, /turf/open/floor/carpet/red, /area/centcom/central_command_areas/evacuation/ship) -"Er" = ( +"aEr" = ( /obj/effect/turf_decal/siding/wood{ dir = 9 }, /obj/machinery/vending/cola/black, /turf/open/floor/wood/large, /area/centcom/central_command_areas/borbop) -"Es" = ( +"aEs" = ( /obj/item/toy/plush/lizard_plushie/green{ name = "Spots-The-Operative" }, /turf/open/floor/iron/dark/textured_large, /area/centcom/syndicate_mothership/control) -"Et" = ( +"aEt" = ( /obj/structure/hive_exit, /turf/closed/indestructible/hive, /area/station/hive/three) -"Eu" = ( +"aEu" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/effect/decal/cleanable/blood/gibs/body, /turf/open/floor/grass, /area/centcom/wizard_station) -"Ev" = ( +"aEv" = ( /obj/structure/chair/sofa/corp/right, /obj/effect/turf_decal/tile/dark/opposingcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/hall) -"Ew" = ( +"aEw" = ( /obj/effect/turf_decal/siding/wideplating_new/dark{ dir = 4 }, @@ -11312,13 +11777,13 @@ /obj/item/kirbyplants, /turf/open/floor/iron/dark/textured_large, /area/centcom/central_command_areas/evacuation/ship) -"Ex" = ( +"aEx" = ( /obj/effect/turf_decal/siding/dark{ dir = 8 }, /turf/open/floor/carpet, /area/centcom/central_command_areas/hall) -"Ey" = ( +"aEy" = ( /obj/structure/railing/wood{ dir = 8 }, @@ -11326,12 +11791,12 @@ /mob/living/basic/cow, /turf/open/floor/grass, /area/centcom/central_command_areas/hall) -"Ez" = ( +"aEz" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/structure/hedge, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/hall) -"EA" = ( +"aEA" = ( /obj/machinery/computer/records/security/laptop, /obj/structure/table/wood, /obj/effect/turf_decal/siding/dark{ @@ -11340,7 +11805,7 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin) -"EB" = ( +"aEB" = ( /obj/structure/table/reinforced, /obj/machinery/fax{ fax_name = "Brad"; @@ -11350,7 +11815,7 @@ dir = 4 }, /area/centcom/central_command_areas/admin) -"EC" = ( +"aEC" = ( /obj/machinery/light/floor/has_bulb, /obj/structure/hedge, /obj/effect/turf_decal/siding/dark{ @@ -11359,13 +11824,13 @@ /obj/effect/turf_decal/siding/dark/corner, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/borbop) -"ED" = ( +"aED" = ( /obj/structure/railing/wood{ dir = 8 }, /turf/open/floor/glass/reinforced, /area/centcom/central_command_areas/admin_hangout) -"EE" = ( +"aEE" = ( /obj/structure/railing{ dir = 8; layer = 4.1 @@ -11378,7 +11843,7 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/supply) -"EF" = ( +"aEF" = ( /obj/effect/turf_decal/siding/wideplating{ dir = 1 }, @@ -11391,13 +11856,13 @@ dir = 4 }, /area/centcom/syndicate_mothership/control) -"EG" = ( +"aEG" = ( /obj/effect/turf_decal/siding/green{ dir = 4 }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/botany) -"EH" = ( +"aEH" = ( /obj/machinery/door/window{ dir = 8 }, @@ -11406,7 +11871,7 @@ }, /turf/open/floor/wood/tile, /area/centcom/central_command_areas/evacuation/ship) -"EI" = ( +"aEI" = ( /obj/effect/turf_decal/tile/dark/diagonal_edge, /obj/machinery/light/neon_lining{ dir = 4; @@ -11414,18 +11879,18 @@ }, /turf/open/floor/iron/white/diagonal, /area/centcom/central_command_areas/hall) -"EJ" = ( +"aEJ" = ( /obj/effect/spawner/random/trash/garbage, /obj/structure/fans/tiny/invisible, /turf/open/floor/plating, /area/centcom/central_command_areas/admin) -"EK" = ( +"aEK" = ( /obj/structure/closet/crate/bin{ name = "treat storage" }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin) -"EL" = ( +"aEL" = ( /obj/effect/turf_decal/siding/wideplating_new/dark{ dir = 4 }, @@ -11439,18 +11904,18 @@ }, /turf/open/floor/iron/dark/textured_large, /area/centcom/central_command_areas/evacuation/ship) -"EM" = ( +"aEM" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 8 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin_hangout) -"EN" = ( +"aEN" = ( /obj/structure/flora/bush/sparsegrass, /obj/machinery/light/directional/south, /turf/open/floor/grass, /area/centcom/central_command_areas/evacuation/ship) -"EO" = ( +"aEO" = ( /obj/effect/turf_decal/bot, /obj/effect/spawner/random/contraband/armory, /obj/structure/closet/crate/secure/gear, @@ -11462,19 +11927,19 @@ /obj/effect/spawner/random/exotic/antag_gear, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"EP" = ( +"aEP" = ( /obj/structure/table/wood/fancy/royalblack, /obj/effect/turf_decal/siding/wood{ dir = 1 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/kitchen) -"EQ" = ( +"aEQ" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/structure/chair/sofa/corp/left, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/hall) -"ER" = ( +"aER" = ( /obj/effect/turf_decal/tile/dark/diagonal_edge, /obj/structure/table/reinforced, /obj/item/knife, @@ -11482,7 +11947,7 @@ /obj/item/kitchen/rollingpin, /turf/open/floor/iron/white/diagonal, /area/centcom/central_command_areas/kitchen) -"ES" = ( +"aES" = ( /obj/effect/turf_decal/siding/green, /obj/effect/turf_decal/siding/green/corner{ dir = 4 @@ -11490,13 +11955,13 @@ /obj/structure/railing/wood, /turf/open/floor/iron/dark/small, /area/centcom/central_command_areas/botany) -"ET" = ( +"aET" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/hall) -"EU" = ( +"aEU" = ( /obj/machinery/light/floor/has_bulb, /obj/structure/hedge, /obj/effect/turf_decal/siding/dark{ @@ -11507,7 +11972,7 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/borbop) -"EV" = ( +"aEV" = ( /obj/structure/table/wood, /obj/machinery/microwave{ pixel_y = 7 @@ -11521,20 +11986,30 @@ }, /turf/open/floor/wood/tile, /area/centcom/central_command_areas/evacuation/ship) -"EY" = ( +"aEW" = ( +/obj/structure/flora/bush/fullgrass/style_2, +/obj/structure/flora/biolumi/flower, +/turf/open/floor/grass, +/area/centcom/central_command_areas/retirement_yard) +"aEX" = ( +/obj/structure/railing/wooden_fence, +/mob/living/basic/pet/dog/bullterrier, +/turf/open/floor/wood, +/area/centcom/central_command_areas/retirement_home) +"aEY" = ( /obj/structure/chair{ dir = 1 }, /obj/machinery/light/directional/south, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/firing_range_checkpoint_control) -"EZ" = ( +"aEZ" = ( /obj/effect/turf_decal/tile/brown/half/contrasted{ dir = 8 }, /turf/open/floor/iron, /area/centcom/central_command_areas/supplypod/loading/three) -"Fa" = ( +"aFa" = ( /obj/structure/railing/wrestling, /obj/structure/railing/wrestling{ dir = 4 @@ -11544,7 +12019,7 @@ icon_state = "boxing" }, /area/centcom/central_command_areas/hall) -"Fb" = ( +"aFb" = ( /obj/effect/turf_decal/tile/dark/diagonal_edge, /obj/structure/table/wood/fancy/royalblue, /obj/effect/spawner/random/decoration/statue{ @@ -11552,7 +12027,7 @@ }, /turf/open/floor/iron/white/diagonal, /area/centcom/central_command_areas/hall) -"Fc" = ( +"aFc" = ( /obj/effect/turf_decal/siding/wideplating{ dir = 6 }, @@ -11561,24 +12036,24 @@ }, /turf/open/floor/plating, /area/centcom/syndicate_mothership/control) -"Fd" = ( +"aFd" = ( /obj/structure/weightmachine/weightlifter, /turf/open/floor/mineral/titanium, /area/centcom/syndicate_mothership/control) -"Fe" = ( +"aFe" = ( /obj/machinery/light/directional/west, /obj/effect/turf_decal/siding/wood{ dir = 10 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/evacuation) -"Ff" = ( +"aFf" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 8 }, /turf/open/floor/carpet/red, /area/centcom/central_command_areas/evacuation/ship) -"Fg" = ( +"aFg" = ( /obj/machinery/light/floor/has_bulb, /obj/machinery/growing/tray, /obj/effect/turf_decal/trimline/green/line{ @@ -11586,7 +12061,7 @@ }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/botany) -"Fh" = ( +"aFh" = ( /obj/structure/chair/sofa/corp{ dir = 4; pixel_x = -4 @@ -11594,17 +12069,32 @@ /obj/effect/turf_decal/tile/dark/opposingcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin_hangout) -"Fi" = ( +"aFi" = ( /obj/effect/landmark/basketball/game_area, /turf/open/space/basic, /area/space) -"Fl" = ( +"aFj" = ( +/obj/structure/fake_stairs/wood/directional/north, +/turf/open/misc/dirt, +/area/centcom/central_command_areas/retirement_yard) +"aFk" = ( +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/machinery/light/street_lamp{ + dir = 2; + pixel_y = 24 + }, +/obj/structure/flora/bush/fullgrass/style_2, +/turf/open/floor/grass, +/area/centcom/central_command_areas/retirement_yard) +"aFl" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, /obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/hidden/layer2, /turf/open/floor/mineral/titanium, /area/centcom/syndicate_mothership/control) -"Fm" = ( +"aFm" = ( /obj/structure/table/reinforced/plastitaniumglass{ name = "Andrea's Desk" }, @@ -11614,15 +12104,15 @@ }, /turf/open/floor/carpet/royalblue, /area/centcom/central_command_areas/admin) -"Fn" = ( +"aFn" = ( /turf/closed/indestructible/riveted, /area/centcom/central_command_areas/firing_range) -"Fo" = ( +"aFo" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/machinery/vending/wardrobe/law_wardrobe, /turf/open/floor/iron/dark, /area/centcom/tdome/observation) -"Fp" = ( +"aFp" = ( /obj/item/stack/ore/bluespace_crystal{ pixel_y = 7; pixel_x = -2 @@ -11638,14 +12128,14 @@ /obj/structure/table/wood, /turf/open/floor/carpet/red, /area/centcom/central_command_areas/admin) -"Fq" = ( +"aFq" = ( /obj/effect/turf_decal/siding/wood{ dir = 10 }, /obj/machinery/light/directional/south, /turf/open/floor/wood/large, /area/centcom/central_command_areas/kitchen) -"Fr" = ( +"aFr" = ( /obj/machinery/camera/autoname/directional/north{ network = list("nukie") }, @@ -11655,18 +12145,25 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, /turf/open/floor/catwalk_floor/iron_smooth, /area/centcom/syndicate_mothership/control) -"Fs" = ( +"aFs" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, /obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, /turf/closed/indestructible/syndicate, /area/centcom/syndicate_mothership/control) -"Ft" = ( +"aFt" = ( /obj/machinery/light/small/directional/north, /turf/open/floor/wood/tile, /area/centcom/syndicate_mothership/control) -"Fv" = ( +"aFu" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/carpet, +/area/centcom/central_command_areas/retirement_home) +"aFv" = ( /obj/effect/turf_decal/tile/dark/diagonal_edge, /obj/structure/table/reinforced, /obj/machinery/processor{ @@ -11675,7 +12172,7 @@ /obj/machinery/light/floor/has_bulb, /turf/open/floor/iron/white/diagonal, /area/centcom/central_command_areas/kitchen) -"Fw" = ( +"aFw" = ( /obj/effect/turf_decal/siding/wideplating{ dir = 1 }, @@ -11685,19 +12182,31 @@ dir = 4 }, /area/centcom/syndicate_mothership/expansion_fridgerummage) -"Fx" = ( +"aFx" = ( /obj/effect/turf_decal/siding/wood, /obj/structure/centcom_teleporter/spawn_area, /turf/open/floor/wood/large, /area/centcom/central_command_areas/hall) -"Fz" = ( +"aFy" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_y = 11; + pixel_x = 6 + }, +/obj/machinery/light_switch/directional/east, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/wood/large, +/area/centcom/central_command_areas/retirement_home) +"aFz" = ( /turf/open/floor/mineral/plastitanium/red, /area/centcom/syndicate_mothership) -"FA" = ( +"aFA" = ( /obj/structure/flora/bush/large/style_3, /turf/open/floor/grass, /area/centcom/central_command_areas/hall) -"FB" = ( +"aFB" = ( /obj/structure/table/reinforced, /obj/item/storage/box/syringes, /obj/item/gun/syringe/rapidsyringe, @@ -11707,19 +12216,19 @@ }, /turf/open/floor/iron, /area/centcom/central_command_areas/armory) -"FC" = ( +"aFC" = ( /obj/effect/turf_decal/stripes/end{ dir = 4 }, /turf/open/floor/mineral/titanium/tiled/yellow, /area/centcom/syndicate_mothership/expansion_bioterrorism) -"FD" = ( +"aFD" = ( /obj/structure/railing/wood{ dir = 1 }, /turf/open/floor/glass/reinforced, /area/centcom/central_command_areas/evacuation) -"FE" = ( +"aFE" = ( /obj/effect/turf_decal/siding/wideplating_new/dark{ dir = 8 }, @@ -11734,7 +12243,7 @@ /obj/machinery/light/directional/east, /turf/open/floor/iron/dark/textured_large, /area/centcom/central_command_areas/evacuation/ship) -"FF" = ( +"aFF" = ( /obj/structure/railing/wood, /obj/structure/table/reinforced, /obj/item/storage/medkit/fire{ @@ -11747,23 +12256,23 @@ }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/medical) -"FG" = ( +"aFG" = ( /obj/structure/closet/crate/bin{ name = "treat storage" }, /turf/open/floor/circuit, /area/centcom/central_command_areas/admin) -"FH" = ( +"aFH" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/evacuation) -"FI" = ( +"aFI" = ( /obj/structure/filingcabinet/filingcabinet, /turf/open/floor/carpet/royalblue, /area/centcom/central_command_areas/admin) -"FJ" = ( +"aFJ" = ( /obj/structure/table/reinforced/plastitaniumglass{ name = "Andrea's Desk" }, @@ -11773,24 +12282,24 @@ }, /turf/open/floor/carpet/royalblue, /area/centcom/central_command_areas/admin) -"FK" = ( +"aFK" = ( /obj/structure/hedge, /obj/effect/turf_decal/siding/wood/corner{ dir = 8 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/hall) -"FL" = ( +"aFL" = ( /obj/structure/railing/wood{ dir = 1 }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/evacuation) -"FM" = ( +"aFM" = ( /obj/structure/railing/wood, /turf/open/floor/glass/reinforced, /area/centcom/central_command_areas/evacuation) -"FN" = ( +"aFN" = ( /obj/effect/turf_decal/siding/wood{ dir = 6 }, @@ -11800,7 +12309,7 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/borbop) -"FO" = ( +"aFO" = ( /obj/structure/table/reinforced, /obj/item/computer_disk/quartermaster, /obj/item/computer_disk/quartermaster, @@ -11811,7 +12320,7 @@ }, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"FP" = ( +"aFP" = ( /obj/structure/hedge, /obj/effect/turf_decal/siding/wood{ dir = 10 @@ -11825,23 +12334,23 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/borbop) -"FQ" = ( +"aFQ" = ( /obj/effect/turf_decal/siding/wood{ dir = 6 }, /turf/open/floor/wood/parquet, /area/centcom/central_command_areas/arcade) -"FR" = ( +"aFR" = ( /turf/closed/indestructible/riveted, /area/centcom/central_command_areas/arcade) -"FS" = ( +"aFS" = ( /obj/machinery/computer/records/medical/laptop{ dir = 4 }, /obj/structure/table/reinforced/plastitaniumglass, /turf/open/floor/circuit, /area/centcom/central_command_areas/admin) -"FT" = ( +"aFT" = ( /obj/structure/table/wood, /obj/effect/spawner/random/bureaucracy/folder, /obj/effect/spawner/random/bureaucracy/folder, @@ -11853,22 +12362,22 @@ /obj/structure/window/plasma/spawner/directional/west, /turf/open/floor/carpet/royalblue, /area/centcom/central_command_areas/admin) -"FU" = ( +"aFU" = ( /turf/open/floor/sepia{ color = "#cc9439" }, /area/centcom/central_command_areas/admin) -"FV" = ( +"aFV" = ( /obj/structure/closet/crate/freezer/blood, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/medical) -"FW" = ( +"aFW" = ( /obj/effect/turf_decal/bot, /obj/effect/spawner/random/entertainment/money_small, /obj/structure/closet/crate/mail/full, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"FX" = ( +"aFX" = ( /obj/machinery/computer/auxiliary_base/directional/north, /obj/structure/table/reinforced, /obj/item/clipboard, @@ -11876,44 +12385,44 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/ferry) -"FY" = ( +"aFY" = ( /obj/effect/turf_decal/siding/green{ dir = 4 }, /obj/machinery/vending/hydronutrients, /turf/open/floor/iron/dark/small, /area/centcom/central_command_areas/botany) -"FZ" = ( +"aFZ" = ( /obj/structure/railing/wood{ dir = 1 }, /turf/open/floor/glass/reinforced, /area/centcom/central_command_areas/admin_hangout) -"Ga" = ( +"aGa" = ( /obj/structure/table/reinforced, /obj/item/book/manual/wiki/security_space_law, /obj/item/taperecorder, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/ferry) -"Gb" = ( +"aGb" = ( /obj/machinery/modular_computer/preset/id/centcom{ dir = 4 }, /turf/open/floor/circuit, /area/centcom/central_command_areas/admin) -"Gc" = ( +"aGc" = ( /obj/structure/sign/poster/contraband/random/directional/south, /obj/structure/chair/pew/left{ dir = 4 }, /turf/open/floor/iron/dark/textured, /area/centcom/central_command_areas/arcade) -"Gd" = ( +"aGd" = ( /obj/structure/centcom_item_spawner/gun_and_ammo_creator, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/firing_range) -"Ge" = ( +"aGe" = ( /obj/effect/turf_decal/siding/wood{ dir = 10 }, @@ -11923,13 +12432,13 @@ /obj/machinery/light/directional/south, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin) -"Gf" = ( +"aGf" = ( /obj/structure/table/wood, /obj/item/stack/medical/bruise_pack, /obj/item/stack/medical/ointment, /turf/open/floor/engine/cult, /area/centcom/wizard_station) -"Gg" = ( +"aGg" = ( /obj/structure/table/wood/poker, /obj/item/flashlight/lamp/green{ pixel_y = 8; @@ -11937,7 +12446,7 @@ }, /turf/open/floor/wood/parquet, /area/centcom/central_command_areas/arcade) -"Gh" = ( +"aGh" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 }, @@ -11946,7 +12455,7 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/borbop) -"Gi" = ( +"aGi" = ( /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/rack, /obj/item/storage/medkit/fire{ @@ -11968,24 +12477,24 @@ /obj/effect/turf_decal/tile/blue/fourcorners, /turf/open/floor/iron/white, /area/centcom/central_command_areas/evacuation/ship) -"Gj" = ( +"aGj" = ( /obj/structure/sink/kitchen/directional/west, /obj/item/reagent_containers/cup/bucket, /turf/open/floor/catwalk_floor/iron_smooth, /area/centcom/syndicate_mothership/control) -"Gk" = ( +"aGk" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 }, /obj/effect/turf_decal/siding/purple, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership/expansion_chemicalwarfare) -"Gl" = ( +"aGl" = ( /obj/structure/flora/grass/both/style_random, /obj/structure/flora/rock/icy/style_random, /turf/open/misc/asteroid/snow/icemoon, /area/centcom/syndicate_mothership/control) -"Gm" = ( +"aGm" = ( /obj/structure/railing/wood{ dir = 1 }, @@ -11998,53 +12507,53 @@ }, /turf/open/floor/carpet/black, /area/centcom/central_command_areas/borbop) -"Gn" = ( +"aGn" = ( /obj/effect/turf_decal/siding/dark, /obj/effect/turf_decal/siding/dark/corner{ dir = 1 }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/admin_hangout) -"Go" = ( +"aGo" = ( /obj/machinery/computer/camera_advanced{ dir = 4 }, /turf/open/floor/wood, /area/centcom/wizard_station) -"Gp" = ( +"aGp" = ( /obj/structure/chair/wood{ dir = 8 }, /turf/open/floor/carpet/black, /area/centcom/central_command_areas/borbop) -"Gq" = ( +"aGq" = ( /obj/structure/fans/tiny/invisible, /turf/open/floor/plating, /area/centcom/central_command_areas/admin) -"Gr" = ( +"aGr" = ( /obj/effect/turf_decal/siding/wideplating{ dir = 4 }, /turf/open/floor/plating, /area/centcom/syndicate_mothership/control) -"Gs" = ( +"aGs" = ( /turf/open/floor/iron/dark, /area/centcom/tdome/observation) -"Gt" = ( +"aGt" = ( /obj/machinery/door/airlock/centcom{ name = "Trapp's Office" }, /obj/effect/mapping_helpers/airlock/access/any/admin/captain, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin) -"Gu" = ( +"aGu" = ( /obj/effect/turf_decal/siding/dark{ dir = 9 }, /obj/effect/turf_decal/siding/dark/corner, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/borbop) -"Gv" = ( +"aGv" = ( /obj/effect/turf_decal/siding/dark{ dir = 6 }, @@ -12055,13 +12564,13 @@ /obj/machinery/light/floor/has_bulb, /turf/open/floor/iron/white/herringbone, /area/centcom/central_command_areas/kitchen) -"Gw" = ( +"aGw" = ( /obj/structure/railing{ dir = 1 }, /turf/open/misc/asteroid/snow/icemoon, /area/centcom/syndicate_mothership/control) -"Gx" = ( +"aGx" = ( /obj/effect/turf_decal/siding/wideplating{ dir = 1 }, @@ -12076,7 +12585,7 @@ dir = 4 }, /area/centcom/syndicate_mothership/control) -"Gy" = ( +"aGy" = ( /obj/item/gun/energy/ionrifle, /obj/structure/rack, /obj/machinery/camera/autoname/directional/west{ @@ -12084,7 +12593,7 @@ }, /turf/open/floor/catwalk_floor/iron_dark, /area/centcom/syndicate_mothership/control) -"Gz" = ( +"aGz" = ( /obj/machinery/computer/auxiliary_base/directional/north, /obj/structure/table/reinforced, /obj/item/clipboard, @@ -12093,10 +12602,10 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/supply) -"GA" = ( +"aGA" = ( /turf/closed/indestructible/fakeglass, /area/centcom/central_command_areas/ferry) -"GB" = ( +"aGB" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 }, @@ -12108,7 +12617,7 @@ }, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership/expansion_bombthreat) -"GC" = ( +"aGC" = ( /obj/effect/turf_decal/siding/dark{ dir = 8 }, @@ -12117,11 +12626,15 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/supply) -"GE" = ( +"aGD" = ( +/obj/structure/flora/biolumi/mine, +/turf/open/floor/grass, +/area/centcom/central_command_areas/retirement_yard) +"aGE" = ( /obj/structure/chair/stool/directional/north, /turf/open/floor/iron/dark/textured_large, /area/centcom/syndicate_mothership/control) -"GF" = ( +"aGF" = ( /obj/structure/table/wood, /obj/item/food/nachos{ pixel_x = 7; @@ -12130,18 +12643,22 @@ /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/centcom/syndicate_mothership/control) -"GG" = ( +"aGG" = ( /turf/closed/indestructible/syndicate, /area/centcom/syndicate_mothership/expansion_fridgerummage) -"GI" = ( +"aGH" = ( +/obj/structure/flora/bush/fullgrass/style_3, +/turf/open/floor/grass, +/area/centcom/central_command_areas/retirement_yard) +"aGI" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/machinery/vending/autodrobe/all_access, /turf/open/floor/iron/dark, /area/centcom/tdome/observation) -"GJ" = ( +"aGJ" = ( /turf/open/floor/stone, /area/centcom/central_command_areas/hall) -"GK" = ( +"aGK" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 }, @@ -12150,7 +12667,7 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/medical) -"GL" = ( +"aGL" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/stripes/line{ dir = 5 @@ -12162,29 +12679,29 @@ /obj/effect/spawner/random/bureaucracy/briefcase, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"GM" = ( +"aGM" = ( /turf/open/floor/iron/dark, /area/centcom/central_command_areas/firing_range_checkpoint_control) -"GN" = ( +"aGN" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 }, /turf/closed/indestructible/riveted, /area/centcom/central_command_areas/kitchen) -"GO" = ( +"aGO" = ( /obj/machinery/computer/records/security{ dir = 1 }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/admin_hangout) -"GP" = ( +"aGP" = ( /obj/structure/table/reinforced, /obj/effect/spawner/random/bureaucracy/stamp, /obj/effect/spawner/random/bureaucracy/stamp, /obj/effect/spawner/random/bureaucracy/stamp, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"GQ" = ( +"aGQ" = ( /obj/structure/table/reinforced/plastitaniumglass, /obj/item/storage/box/donkpockets, /obj/item/storage/box/donkpockets/donkpocketberry, @@ -12200,41 +12717,48 @@ /obj/effect/spawner/random/special_lighter, /turf/open/floor/carpet/executive, /area/centcom/central_command_areas/admin) -"GR" = ( +"aGR" = ( /obj/effect/turf_decal/siding/wood{ dir = 5 }, /obj/machinery/growing/tray, /turf/open/floor/wood/large, /area/centcom/central_command_areas/botany) -"GS" = ( +"aGS" = ( /obj/structure/chair/sofa/corp, /obj/effect/turf_decal/tile/dark/opposingcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/hall) -"GT" = ( +"aGT" = ( /obj/structure/table/reinforced/plastitaniumglass, /obj/machinery/light/directional/west, /obj/item/reagent_containers/cup/glass/shaker, /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/centcom/syndicate_mothership/control) -"GV" = ( +"aGU" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 4 + }, +/obj/structure/flora/bush/fullgrass/style_3, +/turf/open/floor/grass, +/area/centcom/central_command_areas/retirement_yard) +"aGV" = ( /obj/structure/mop_bucket, /obj/item/mop, /turf/open/floor/catwalk_floor/iron_smooth, /area/centcom/syndicate_mothership/control) -"GW" = ( +"aGW" = ( /turf/open/floor/carpet, /area/centcom/central_command_areas/admin_hangout) -"GX" = ( +"aGX" = ( /obj/effect/turf_decal/siding/dark{ dir = 1 }, /obj/effect/turf_decal/siding/dark, /turf/open/floor/iron/white/herringbone, /area/centcom/central_command_areas/kitchen) -"GY" = ( +"aGY" = ( /obj/structure/table/wood/fancy/purple, /obj/machinery/fax{ name = "Trapp's Fax Machine"; @@ -12242,14 +12766,14 @@ }, /turf/open/floor/plating/abductor, /area/centcom/central_command_areas/admin) -"GZ" = ( +"aGZ" = ( /obj/machinery/door/airlock/centcom{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/admin/captain, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin) -"Ha" = ( +"aHa" = ( /obj/machinery/door/airlock/external/ruin, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, @@ -12261,7 +12785,7 @@ /obj/effect/mapping_helpers/airlock/access/all/syndicate/general, /turf/open/floor/plating, /area/centcom/syndicate_mothership/control) -"Hb" = ( +"aHb" = ( /obj/machinery/power/port_gen/pacman, /obj/structure/cable, /obj/effect/decal/cleanable/dirt, @@ -12269,7 +12793,7 @@ /obj/machinery/light/small/directional/east, /turf/open/floor/iron/smooth_edge, /area/centcom/central_command_areas/evacuation/ship) -"Hc" = ( +"aHc" = ( /obj/structure/closet, /obj/item/food/cake/birthday{ name = "70th Cake"; @@ -12279,18 +12803,28 @@ /obj/item/dice/d6, /turf/open/floor/circuit, /area/centcom/central_command_areas/admin) -"Hd" = ( +"aHd" = ( /obj/structure/chair/stool/bar/directional/east, /turf/open/floor/wood/parquet, /area/centcom/central_command_areas/arcade) -"Hf" = ( +"aHe" = ( +/obj/structure/table/wood, +/obj/structure/showcase/machinery/tv{ + pixel_y = 7 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/parquet, +/area/centcom/central_command_areas/retirement_home) +"aHf" = ( /obj/structure/window/reinforced/survival_pod/spawner/directional/east, /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 6 }, /turf/open/floor/mineral/plastitanium/red, /area/centcom/syndicate_mothership/expansion_bioterrorism) -"Hg" = ( +"aHg" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 }, @@ -12298,7 +12832,7 @@ /obj/structure/extinguisher_cabinet/directional/south, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership/expansion_chemicalwarfare) -"Hh" = ( +"aHh" = ( /obj/effect/turf_decal/siding/wideplating/dark{ dir = 8 }, @@ -12311,22 +12845,22 @@ /obj/effect/mapping_helpers/airlock/access/all/syndicate/general, /turf/open/floor/iron/textured_large, /area/centcom/syndicate_mothership/control) -"Hi" = ( +"aHi" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/machinery/light/directional/east, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/hall) -"Hj" = ( +"aHj" = ( /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/arcade) -"Hk" = ( +"aHk" = ( /obj/effect/turf_decal/loading_area{ dir = 4 }, /obj/structure/fake_stairs/wood/directional/east, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"Hl" = ( +"aHl" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 8 }, @@ -12334,7 +12868,7 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/evacuation/ship) -"Hm" = ( +"aHm" = ( /obj/structure/hedge, /obj/machinery/light/floor/has_bulb, /obj/effect/turf_decal/siding/wood/corner{ @@ -12346,11 +12880,11 @@ /obj/structure/sign/warning/yes_smoking/circle/directional/north, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin_hangout) -"Hn" = ( +"aHn" = ( /obj/structure/table/reinforced, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/botany) -"Ho" = ( +"aHo" = ( /obj/effect/turf_decal/siding/dark{ dir = 9 }, @@ -12359,13 +12893,13 @@ icon_state = "boxing" }, /area/centcom/central_command_areas/admin) -"Hp" = ( +"aHp" = ( /obj/machinery/modular_computer/preset/id/centcom{ dir = 4 }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin) -"Hq" = ( +"aHq" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 }, @@ -12373,7 +12907,7 @@ /obj/machinery/light/directional/north, /turf/open/floor/wood/large, /area/centcom/central_command_areas/arcade) -"Hr" = ( +"aHr" = ( /obj/structure/chair/sofa/corp{ dir = 1 }, @@ -12382,33 +12916,33 @@ }, /turf/open/floor/wood/large, /area/centcom/tdome/observation) -"Hs" = ( +"aHs" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 1 }, /turf/open/misc/ice/icemoon, /area/centcom/syndicate_mothership/control) -"Ht" = ( +"aHt" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 }, /turf/open/floor/wood/large, /area/centcom/tdome/observation) -"Hu" = ( +"aHu" = ( /obj/effect/turf_decal/siding/wood{ dir = 6 }, /obj/machinery/smartfridge, /turf/open/floor/wood/large, /area/centcom/central_command_areas/botany) -"Hv" = ( +"aHv" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 }, /obj/machinery/light/directional/west, /turf/open/floor/wood/parquet, /area/centcom/central_command_areas/arcade) -"Hw" = ( +"aHw" = ( /obj/effect/turf_decal/siding/dark{ dir = 10 }, @@ -12417,27 +12951,27 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/admin) -"Hx" = ( +"aHx" = ( /obj/structure/fence/cut/large, /turf/open/misc/asteroid/snow/airless, /area/centcom/syndicate_mothership) -"Hy" = ( +"aHy" = ( /obj/structure/window/plasma/spawner/directional/north, /obj/structure/window/plasma/spawner/directional/east, /turf/open/indestructible/hotelwood, /area/centcom/central_command_areas/admin) -"Hz" = ( +"aHz" = ( /obj/structure/table/wood, /turf/open/floor/engine/cult, /area/centcom/wizard_station) -"HA" = ( +"aHA" = ( /obj/effect/turf_decal/siding/wood{ dir = 5 }, /obj/machinery/light/directional/north, /turf/open/floor/wood/large, /area/centcom/central_command_areas/kitchen) -"HB" = ( +"aHB" = ( /obj/structure/table/wood/fancy/black, /obj/machinery/light/floor/has_bulb, /obj/item/reagent_containers/cup/glass/drinkingglass/shotglass{ @@ -12446,11 +12980,11 @@ }, /turf/open/floor/carpet/black, /area/centcom/central_command_areas/borbop) -"HC" = ( +"aHC" = ( /obj/machinery/chem_master, /turf/open/floor/mineral/titanium/tiled/yellow, /area/centcom/syndicate_mothership/expansion_chemicalwarfare) -"HD" = ( +"aHD" = ( /obj/structure/hedge, /obj/effect/turf_decal/siding/dark{ dir = 10 @@ -12460,27 +12994,27 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/borbop) -"HE" = ( +"aHE" = ( /turf/open/indestructible/hive, /area/station/hive/two) -"HF" = ( +"aHF" = ( /obj/structure/flora/rock/icy/style_random, /turf/open/misc/asteroid/snow/airless, /area/centcom/syndicate_mothership) -"HG" = ( +"aHG" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 8 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/catwalk_floor, /area/centcom/central_command_areas/evacuation/ship) -"HH" = ( +"aHH" = ( /obj/structure/railing/corner{ dir = 1 }, /turf/open/misc/asteroid/snow/icemoon, /area/centcom/syndicate_mothership/control) -"HI" = ( +"aHI" = ( /obj/effect/turf_decal/siding/blue, /obj/effect/turf_decal/siding/blue/corner{ dir = 4 @@ -12488,7 +13022,7 @@ /obj/structure/railing/wood, /turf/open/floor/iron/dark/diagonal, /area/centcom/central_command_areas/medical) -"HJ" = ( +"aHJ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 8 @@ -12496,7 +13030,7 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/stone, /area/centcom/central_command_areas/evacuation/ship) -"HK" = ( +"aHK" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 }, @@ -12505,14 +13039,14 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin_hangout) -"HL" = ( +"aHL" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 8 }, /turf/open/floor/stone, /area/centcom/central_command_areas/evacuation/ship) -"HM" = ( +"aHM" = ( /obj/machinery/light/floor/has_bulb, /obj/structure/flora/bush/large/style_3, /obj/structure/railing/wood, @@ -12521,14 +13055,14 @@ }, /turf/open/floor/grass, /area/centcom/central_command_areas/admin_hangout) -"HN" = ( +"aHN" = ( /obj/structure/railing/wood, /obj/structure/railing/wood{ dir = 4 }, /turf/open/floor/glass/reinforced, /area/centcom/central_command_areas/admin_hangout) -"HO" = ( +"aHO" = ( /obj/structure/lattice/catwalk, /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -12538,43 +13072,43 @@ }, /turf/open/floor/plating/snowed/icemoon, /area/centcom/syndicate_mothership/control) -"HP" = ( +"aHP" = ( /obj/structure/hedge, /obj/structure/railing/wood, /obj/machinery/light/floor/has_bulb, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin_hangout) -"HQ" = ( +"aHQ" = ( /obj/effect/turf_decal/tile/brown/diagonal_centre, /obj/structure/table/reinforced, /obj/machinery/microwave, /turf/open/floor/iron/white/diagonal, /area/centcom/central_command_areas/admin) -"HR" = ( +"aHR" = ( /obj/structure/bed/roller, /obj/machinery/iv_drip, /obj/effect/turf_decal/tile/blue/fourcorners, /obj/machinery/light/directional/west, /turf/open/floor/iron/white, /area/centcom/central_command_areas/evacuation/ship) -"HS" = ( +"aHS" = ( /obj/structure/fake_stairs/wood/directional/south, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/hall) -"HT" = ( +"aHT" = ( /obj/structure/table/reinforced/plastitaniumglass{ name = "Andrea's Desk" }, /turf/open/floor/carpet, /area/centcom/central_command_areas/admin_hangout) -"HU" = ( +"aHU" = ( /obj/effect/turf_decal/siding/wood, /obj/effect/turf_decal/siding/wood/corner{ dir = 1 }, /turf/open/floor/wood/parquet, /area/centcom/central_command_areas/borbop) -"HV" = ( +"aHV" = ( /obj/structure/barricade/sandbags, /obj/effect/light_emitter{ set_cap = 1; @@ -12582,22 +13116,22 @@ }, /turf/open/misc/asteroid/snow/airless, /area/centcom/syndicate_mothership) -"HW" = ( +"aHW" = ( /obj/effect/turf_decal/siding/blue/corner, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/medical) -"HX" = ( +"aHX" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/borbop) -"HY" = ( +"aHY" = ( /obj/structure/table/reinforced, /obj/machinery/computer/security/telescreen, /turf/open/floor/iron/dark, /area/centcom/tdome/observation) -"HZ" = ( +"aHZ" = ( /obj/structure/railing{ dir = 6; layer = 3.1 @@ -12612,20 +13146,20 @@ }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/evacuation/ship) -"Ia" = ( +"aIa" = ( /obj/effect/turf_decal/siding/blue{ dir = 9 }, /obj/machinery/smartfridge/chemistry/preloaded, /turf/open/floor/iron/dark/diagonal, /area/centcom/central_command_areas/medical) -"Ib" = ( +"aIb" = ( /obj/effect/turf_decal/siding/blue{ dir = 5 }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/medical) -"Ic" = ( +"aIc" = ( /obj/effect/turf_decal/siding/dark{ dir = 5 }, @@ -12633,7 +13167,7 @@ /obj/effect/turf_decal/tile/orange/diagonal_edge, /turf/open/floor/iron/white/diagonal, /area/centcom/central_command_areas/hall) -"Id" = ( +"aId" = ( /obj/effect/turf_decal/siding/dark{ dir = 6 }, @@ -12642,7 +13176,14 @@ icon_state = "boxing" }, /area/centcom/central_command_areas/admin) -"If" = ( +"aIe" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/centcom/central_command_areas/retirement_home) +"aIf" = ( /obj/structure/chair/stool/directional/north, /obj/effect/landmark/start/nukeop, /obj/structure/sign/poster/contraband/donk_co{ @@ -12650,15 +13191,38 @@ }, /turf/open/floor/wood/tile, /area/centcom/syndicate_mothership/control) -"Ig" = ( +"aIg" = ( /obj/structure/dresser, /obj/item/storage/backpack/satchel, /turf/open/floor/carpet, /area/centcom/wizard_station) -"Ih" = ( +"aIh" = ( /turf/closed/indestructible/fakeglass, /area/centcom/central_command_areas/supply) -"Ij" = ( +"aIi" = ( +/obj/structure/rack/wooden, +/obj/item/clothing/under/pants/camo{ + pixel_x = -4; + pixel_y = 10 + }, +/obj/item/clothing/under/pants/tactical{ + pixel_x = 5; + pixel_y = 7 + }, +/obj/item/clothing/under/pants/jeans{ + pixel_x = -8; + pixel_y = -3 + }, +/obj/item/clothing/under/pants/slacks{ + pixel_x = 7; + pixel_y = -3 + }, +/obj/item/clothing/under/pants/track{ + pixel_y = -5 + }, +/turf/open/floor/wood/parquet, +/area/centcom/central_command_areas/retirement_home) +"aIj" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/structure/table/glass, /obj/machinery/light/floor/has_bulb, @@ -12672,35 +13236,39 @@ }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/borbop) -"Ik" = ( +"aIk" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/machinery/vending/wardrobe/robo_wardrobe, /turf/open/floor/iron/dark, /area/centcom/tdome/observation) -"Il" = ( +"aIl" = ( /obj/machinery/light/floor/has_bulb, /obj/effect/turf_decal/siding/wood{ dir = 9 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin_hangout) -"Im" = ( +"aIm" = ( /obj/item/coin/antagtoken, /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/centcom/wizard_station) -"In" = ( +"aIn" = ( /obj/structure/table/reinforced/plastitaniumglass, /turf/open/floor/circuit, /area/centcom/central_command_areas/admin) -"Ip" = ( +"aIo" = ( +/obj/machinery/primitive_stove, +/turf/open/floor/iron/terracotta/small, +/area/centcom/central_command_areas/retirement_home) +"aIp" = ( /obj/structure/chair/stool/bar/directional/east, /turf/open/floor/carpet/red, /area/centcom/central_command_areas/evacuation/ship) -"Iq" = ( +"aIq" = ( /turf/closed/indestructible/opsglass, /area/centcom/syndicate_mothership/expansion_chemicalwarfare) -"Ir" = ( +"aIr" = ( /obj/machinery/computer/emergency_shuttle{ dir = 1 }, @@ -12712,19 +13280,19 @@ }, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"Is" = ( +"aIs" = ( /obj/effect/spawner/random_arena_spawner, /turf/open/indestructible/event/plating, /area/centcom/tdome/arena/actual) -"It" = ( +"aIt" = ( /turf/open/indestructible/event/plating, /area/centcom/tdome/arena/actual) -"Iu" = ( +"aIu" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/centcom/syndicate_mothership/control) -"Iv" = ( +"aIv" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 }, @@ -12733,21 +13301,27 @@ }, /turf/open/floor/stone, /area/centcom/central_command_areas/evacuation/ship) -"Iw" = ( +"aIw" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/heat_exchanging/simple, /turf/open/space/basic, /area/space/nearstation) -"Iy" = ( +"aIx" = ( +/obj/structure/railing/wooden_fence{ + dir = 6 + }, +/turf/open/floor/wood, +/area/centcom/central_command_areas/retirement_home) +"aIy" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/structure/table/reinforced, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/borbop) -"Iz" = ( +"aIz" = ( /obj/structure/flora/rock/pile/style_random, /turf/open/misc/asteroid/snow/airless, /area/centcom/syndicate_mothership) -"IA" = ( +"aIA" = ( /obj/effect/turf_decal/siding/wood{ dir = 10 }, @@ -12774,26 +13348,26 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin) -"IB" = ( +"aIB" = ( /obj/structure/closet, /obj/structure/window/plasma/spawner/directional/east, /turf/open/floor/carpet/royalblue, /area/centcom/central_command_areas/admin) -"IC" = ( +"aIC" = ( /turf/open/floor/iron/dark/textured_half{ dir = 8 }, /area/centcom/syndicate_mothership/control) -"ID" = ( +"aID" = ( /turf/open/floor/glass/reinforced, /area/centcom/central_command_areas/admin) -"IE" = ( +"aIE" = ( /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 8 }, /turf/open/indestructible/event/plating, /area/centcom/tdome/arena/actual) -"IF" = ( +"aIF" = ( /obj/effect/turf_decal/siding/wood{ dir = 10 }, @@ -12802,7 +13376,7 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/botany) -"IG" = ( +"aIG" = ( /obj/structure/railing/wrestling, /obj/structure/railing/wrestling{ dir = 8 @@ -12812,7 +13386,7 @@ icon_state = "boxing" }, /area/centcom/central_command_areas/hall) -"IH" = ( +"aIH" = ( /obj/structure/sign{ name = "wall"; icon = 'monkestation/icons/turf/walls/reinforced_wall.dmi'; @@ -12827,18 +13401,18 @@ /obj/item/mod/module/flamethrower, /turf/open/floor/glass/reinforced/plasma, /area/centcom/central_command_areas/admin) -"II" = ( +"aII" = ( /obj/structure/railing/wood, /obj/structure/fake_stairs/wood/directional/east, /turf/open/floor/wood/parquet, /area/centcom/central_command_areas/borbop) -"IJ" = ( +"aIJ" = ( /obj/effect/turf_decal/tile/green/half/contrasted{ dir = 4 }, /turf/open/indestructible/event/plating, /area/centcom/tdome/arena/actual) -"IK" = ( +"aIK" = ( /obj/structure/closet/secure_closet/ert_sec, /obj/effect/turf_decal/stripes/line{ dir = 9 @@ -12846,17 +13420,17 @@ /obj/machinery/status_display/ai/directional/south, /turf/open/floor/iron, /area/centcom/central_command_areas/armory) -"IL" = ( +"aIL" = ( /obj/effect/turf_decal/siding/dark{ dir = 9 }, /turf/open/floor/carpet, /area/centcom/central_command_areas/hall) -"IM" = ( +"aIM" = ( /obj/effect/turf_decal/trimline/green/line, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/botany) -"IN" = ( +"aIN" = ( /obj/structure/chair/wood{ dir = 4 }, @@ -12868,7 +13442,7 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/kitchen) -"IO" = ( +"aIO" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 }, @@ -12877,7 +13451,7 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/kitchen) -"IP" = ( +"aIP" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 }, @@ -12886,7 +13460,7 @@ }, /turf/open/floor/mineral/titanium/tiled/blue, /area/centcom/syndicate_mothership/expansion_bombthreat) -"IQ" = ( +"aIQ" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 8 }, @@ -12895,30 +13469,30 @@ }, /turf/open/floor/mineral/plastitanium/red, /area/centcom/syndicate_mothership/expansion_bombthreat) -"IR" = ( +"aIR" = ( /obj/structure/table/wood/fancy/royalblack, /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood/large, /area/centcom/central_command_areas/kitchen) -"IS" = ( +"aIS" = ( /obj/machinery/door/poddoor/shutters/indestructible/preopen, /turf/closed/indestructible/fakeglass, /area/centcom/central_command_areas/admin) -"IT" = ( +"aIT" = ( /obj/effect/turf_decal/stripes/box, /obj/machinery/portable_atmospherics/pump/lil_pump{ desc = "A betrayer to pump-kind." }, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership/expansion_bombthreat) -"IU" = ( +"aIU" = ( /turf/open/floor/mineral/titanium/white, /area/centcom/central_command_areas/admin) -"IV" = ( +"aIV" = ( /obj/effect/turf_decal/tile/dark/diagonal_edge, /turf/open/floor/iron/white/diagonal, /area/centcom/central_command_areas/kitchen) -"IW" = ( +"aIW" = ( /obj/machinery/door/airlock/centcom{ dir = 4; name = "Borbop's Office" @@ -12926,7 +13500,7 @@ /obj/effect/mapping_helpers/airlock/access/any/admin/captain, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin) -"IX" = ( +"aIX" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 4 }, @@ -12935,31 +13509,31 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/kitchen) -"IY" = ( +"aIY" = ( /obj/effect/baseturf_helper/asteroid/snow, /turf/closed/indestructible/syndicate, /area/centcom/syndicate_mothership/control) -"IZ" = ( +"aIZ" = ( /obj/structure/chair/wood, /turf/open/floor/carpet/black, /area/centcom/central_command_areas/borbop) -"Ja" = ( +"aJa" = ( /obj/structure/chair/wood/wings{ dir = 4 }, /turf/open/floor/carpet, /area/centcom/wizard_station) -"Jb" = ( +"aJb" = ( /turf/closed/indestructible/riveted, /area/centcom/central_command_areas/prison/cells) -"Jc" = ( +"aJc" = ( /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership/control) -"Jd" = ( +"aJd" = ( /obj/structure/fake_stairs/wood/directional/north, /turf/open/floor/iron/dark, /area/centcom/tdome/observation) -"Je" = ( +"aJe" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, @@ -12968,14 +13542,14 @@ }, /turf/open/floor/mineral/titanium/tiled/yellow, /area/centcom/syndicate_mothership/expansion_bombthreat) -"Jf" = ( +"aJf" = ( /obj/structure/sign/poster/contraband/syndiemoth{ pixel_x = 32 }, /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/centcom/syndicate_mothership/control) -"Jg" = ( +"aJg" = ( /obj/effect/turf_decal/tile/dark/diagonal_edge, /obj/structure/table/reinforced, /obj/item/pizzabox, @@ -12990,26 +13564,26 @@ }, /turf/open/floor/iron/white/diagonal, /area/centcom/central_command_areas/kitchen) -"Jh" = ( +"aJh" = ( /obj/effect/turf_decal/loading_area{ dir = 4 }, /turf/open/indestructible/event/plating, /area/centcom/tdome/arena/actual) -"Ji" = ( +"aJi" = ( /turf/open/floor/carpet/neon/simple/white, /area/centcom/central_command_areas/admin) -"Jj" = ( +"aJj" = ( /obj/structure/chair/stool/sandstone, /turf/open/floor/vault/sandstone, /area/centcom/central_command_areas/admin) -"Jk" = ( +"aJk" = ( /obj/effect/turf_decal/loading_area{ dir = 8 }, /turf/open/indestructible/event/plating, /area/centcom/tdome/arena/actual) -"Jl" = ( +"aJl" = ( /obj/machinery/firealarm/directional/south, /obj/structure/closet/crate/bin{ name = "treat storage" @@ -13018,41 +13592,45 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/ferry) -"Jm" = ( +"aJm" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/borbop) -"Jn" = ( +"aJn" = ( /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood/large, /area/centcom/central_command_areas/kitchen) -"Jo" = ( +"aJo" = ( /obj/structure/table/reinforced/titaniumglass, /obj/item/book/manual/wiki/security_space_law, /obj/machinery/light/floor/has_bulb, /turf/open/floor/mineral/titanium/white, /area/centcom/central_command_areas/admin) -"Jp" = ( +"aJp" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 }, /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin) -"Jq" = ( +"aJq" = ( /obj/machinery/camera/motion/thunderdome{ pixel_x = 10 }, /turf/open/indestructible/event/plating, /area/centcom/tdome/arena/actual) -"Js" = ( +"aJr" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/large, +/area/centcom/central_command_areas/retirement_home) +"aJs" = ( /obj/structure/table/reinforced/plastitaniumglass{ name = "Andrea's Desk" }, /obj/machinery/computer/security/wooden_tv, /turf/open/floor/carpet, /area/centcom/central_command_areas/admin_hangout) -"Jt" = ( +"aJt" = ( /obj/effect/turf_decal/siding/thinplating_new/dark, /obj/structure/closet/syndicate/personal, /obj/structure/sign/poster/contraband/lusty_xenomorph{ @@ -13063,7 +13641,7 @@ dir = 8 }, /area/centcom/syndicate_mothership/control) -"Ju" = ( +"aJu" = ( /obj/structure/hedge, /obj/machinery/light/floor/has_bulb, /obj/effect/turf_decal/siding/wood/corner{ @@ -13074,14 +13652,14 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin_hangout) -"Jv" = ( +"aJv" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced/spawner/directional/north, /obj/machinery/cell_charger, /obj/item/stock_parts/cell/infinite, /turf/open/floor/mineral/titanium/purple, /area/centcom/central_command_areas/admin) -"Jw" = ( +"aJw" = ( /obj/effect/turf_decal/siding/wood{ dir = 5 }, @@ -13090,13 +13668,13 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/kitchen) -"Jx" = ( +"aJx" = ( /obj/structure/railing{ dir = 6 }, /turf/open/misc/asteroid/snow/icemoon, /area/centcom/syndicate_mothership/control) -"Jy" = ( +"aJy" = ( /obj/effect/turf_decal/siding/wideplating/dark, /obj/effect/turf_decal/siding/wideplating/dark{ dir = 1 @@ -13107,7 +13685,7 @@ dir = 4 }, /area/centcom/syndicate_mothership/expansion_bioterrorism) -"Jz" = ( +"aJz" = ( /obj/structure/hedge, /obj/machinery/light/floor/has_bulb, /obj/effect/turf_decal/siding/wood/corner, @@ -13117,26 +13695,26 @@ /obj/structure/sign/warning/yes_smoking/circle/directional/north, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin_hangout) -"JA" = ( +"aJA" = ( /obj/effect/turf_decal/siding/blue/end{ dir = 8 }, /obj/structure/railing/wood, /turf/open/floor/iron/dark/diagonal, /area/centcom/central_command_areas/medical) -"JB" = ( +"aJB" = ( /obj/effect/turf_decal/siding/wood{ dir = 5 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/hall) -"JC" = ( +"aJC" = ( /obj/structure/chair/office{ dir = 1 }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin) -"JD" = ( +"aJD" = ( /obj/machinery/door/airlock{ icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; name = "Engine Room" @@ -13144,7 +13722,7 @@ /obj/structure/barricade/wooden, /turf/open/floor/engine/cult, /area/centcom/wizard_station) -"JE" = ( +"aJE" = ( /obj/effect/turf_decal/siding/wideplating_new/dark{ dir = 4 }, @@ -13157,11 +13735,11 @@ /obj/effect/turf_decal/tile/neutral/full, /turf/open/floor/iron/dark/textured_large, /area/centcom/central_command_areas/evacuation/ship) -"JF" = ( +"aJF" = ( /obj/machinery/growing/tray, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/botany) -"JG" = ( +"aJG" = ( /obj/effect/turf_decal/siding/wood{ dir = 5 }, @@ -13170,11 +13748,11 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/borbop) -"JH" = ( +"aJH" = ( /obj/structure/fake_stairs/wood/directional/north, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin_hangout) -"JI" = ( +"aJI" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 1 }, @@ -13183,17 +13761,17 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/kitchen) -"JJ" = ( +"aJJ" = ( /obj/effect/turf_decal/tile/dark/diagonal_edge, /obj/structure/table/wood/fancy/royalblue, /obj/structure/mannequin, /turf/open/floor/iron/white/diagonal, /area/centcom/central_command_areas/hall) -"JK" = ( +"aJK" = ( /obj/structure/fans/tiny/invisible, /turf/open/chasm, /area/centcom/central_command_areas/admin) -"JL" = ( +"aJL" = ( /obj/effect/turf_decal/siding/dark/corner{ dir = 1 }, @@ -13202,17 +13780,17 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/supply) -"JM" = ( +"aJM" = ( /obj/structure/railing/wood{ dir = 1 }, /turf/open/floor/grass, /area/centcom/central_command_areas/borbop) -"JN" = ( +"aJN" = ( /obj/structure/railing/wood, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/evacuation) -"JO" = ( +"aJO" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 8 }, @@ -13229,10 +13807,10 @@ /obj/item/flamethrower/full, /turf/open/floor/mineral/plastitanium/red, /area/centcom/syndicate_mothership/expansion_bombthreat) -"JP" = ( +"aJP" = ( /turf/open/floor/mineral/plastitanium/red, /area/centcom/syndicate_mothership/expansion_chemicalwarfare) -"JQ" = ( +"aJQ" = ( /obj/structure/table/reinforced/titaniumglass, /obj/item/paper_bin, /obj/item/pen/fourcolor, @@ -13241,14 +13819,14 @@ /obj/item/stamp/void, /turf/open/floor/glass/reinforced, /area/centcom/central_command_areas/admin) -"JR" = ( +"aJR" = ( /obj/effect/turf_decal/siding/wood/corner, /obj/effect/turf_decal/siding/wood/corner{ dir = 8 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/kitchen) -"JS" = ( +"aJS" = ( /obj/structure/flora/tree/pine/style_random, /obj/structure/flora/grass/both/style_random, /obj/effect/light_emitter{ @@ -13257,7 +13835,7 @@ }, /turf/open/misc/asteroid/snow/airless, /area/centcom/syndicate_mothership) -"JT" = ( +"aJT" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -13265,31 +13843,31 @@ /obj/machinery/light/directional/south, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/evacuation/ship) -"JU" = ( +"aJU" = ( /obj/structure/flora/bush/grassy/style_random, /obj/structure/flora/bush/flowers_pp/style_random, /turf/open/floor/grass, /area/centcom/central_command_areas/hall) -"JV" = ( +"aJV" = ( /obj/effect/turf_decal/siding/dark{ dir = 6 }, /turf/open/floor/carpet, /area/centcom/central_command_areas/hall) -"JW" = ( +"aJW" = ( /obj/structure/table/reinforced, /obj/item/storage/secure/briefcase, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/briefing) -"JX" = ( +"aJX" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 }, /obj/effect/turf_decal/siding/wood/corner, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin_hangout) -"JY" = ( +"aJY" = ( /obj/structure/table/wood, /obj/structure/chem_separator{ pixel_x = 2 @@ -13306,11 +13884,11 @@ }, /turf/open/floor/iron/grimy, /area/centcom/central_command_areas/admin) -"JZ" = ( +"aJZ" = ( /obj/machinery/smartfridge/chemistry/virology/preloaded, /turf/closed/indestructible/syndicate, /area/centcom/syndicate_mothership/expansion_bioterrorism) -"Ka" = ( +"aKa" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 }, @@ -13323,7 +13901,7 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/borbop) -"Kb" = ( +"aKb" = ( /obj/structure/railing/wood{ dir = 1 }, @@ -13335,10 +13913,10 @@ /obj/structure/flora/bush/flowers_pp/style_random, /turf/open/floor/grass, /area/centcom/central_command_areas/hall) -"Kc" = ( +"aKc" = ( /turf/open/floor/mineral/titanium/purple, /area/centcom/central_command_areas/admin) -"Kd" = ( +"aKd" = ( /obj/effect/turf_decal/trimline/green/corner{ dir = 1 }, @@ -13348,7 +13926,7 @@ }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/botany) -"Ke" = ( +"aKe" = ( /obj/item/clipboard, /obj/item/folder/red, /obj/item/stamp/denied{ @@ -13359,13 +13937,22 @@ /obj/structure/table/reinforced, /turf/open/floor/iron/grimy, /area/centcom/central_command_areas/briefing) -"Kf" = ( +"aKf" = ( /obj/effect/turf_decal/siding/red{ dir = 1 }, /turf/open/floor/iron/dark/textured_large, /area/centcom/syndicate_mothership/control) -"Kh" = ( +"aKg" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/chair/sofa/fancy/left{ + dir = 1 + }, +/turf/open/floor/wood/parquet, +/area/centcom/central_command_areas/retirement_home) +"aKh" = ( /obj/effect/turf_decal/siding/dark{ dir = 10 }, @@ -13378,19 +13965,19 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/hall) -"Ki" = ( +"aKi" = ( /obj/machinery/modular_computer/preset/id/centcom{ dir = 1 }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/admin_hangout) -"Kj" = ( +"aKj" = ( /obj/effect/turf_decal/siding/dark{ dir = 5 }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/admin_hangout) -"Kk" = ( +"aKk" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 4 }, @@ -13403,13 +13990,13 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/borbop) -"Kl" = ( +"aKl" = ( /obj/effect/turf_decal/siding/green/corner{ dir = 4 }, /turf/open/floor/iron/dark/small, /area/centcom/central_command_areas/botany) -"Km" = ( +"aKm" = ( /obj/docking_port/stationary{ dir = 8; dwidth = 10; @@ -13421,14 +14008,14 @@ }, /turf/open/space/basic, /area/space) -"Kn" = ( +"aKn" = ( /obj/structure/chair/stool/directional/south, /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 1 }, /turf/open/floor/iron/dark/textured_large, /area/centcom/syndicate_mothership/control) -"Ko" = ( +"aKo" = ( /obj/effect/turf_decal/siding/dark{ dir = 4 }, @@ -13437,7 +14024,7 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/admin) -"Kp" = ( +"aKp" = ( /obj/effect/turf_decal/siding/dark{ dir = 5 }, @@ -13449,53 +14036,53 @@ /obj/machinery/microwave, /turf/open/floor/iron/white/herringbone, /area/centcom/central_command_areas/kitchen) -"Kq" = ( +"aKq" = ( /obj/effect/turf_decal/siding/blue{ dir = 9 }, /turf/open/floor/iron/dark/diagonal, /area/centcom/central_command_areas/medical) -"Kr" = ( +"aKr" = ( /obj/effect/turf_decal/siding/dark{ dir = 1 }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/admin_hangout) -"Ks" = ( +"aKs" = ( /obj/structure/fluff/iced_abductor, /turf/open/floor/carpet, /area/centcom/central_command_areas/admin_hangout) -"Kt" = ( +"aKt" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/structure/railing/wood{ dir = 1 }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/hall) -"Ku" = ( +"aKu" = ( /obj/effect/turf_decal/trimline/green/line{ dir = 10 }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/botany) -"Kv" = ( +"aKv" = ( /obj/item/clothing/shoes/sneakers/marisa, /obj/item/clothing/suit/wizrobe/marisa, /obj/item/clothing/head/wizard/marisa, /obj/item/staff/broom, /turf/open/floor/engine/cult, /area/centcom/wizard_station) -"Kw" = ( +"aKw" = ( /obj/structure/chair/office{ dir = 1 }, /turf/open/floor/carpet/royalblue, /area/centcom/central_command_areas/admin) -"Kx" = ( +"aKx" = ( /obj/machinery/light/floor/has_bulb, /turf/open/floor/carpet/executive, /area/centcom/central_command_areas/admin) -"Ky" = ( +"aKy" = ( /obj/structure/railing/wood{ dir = 1 }, @@ -13504,19 +14091,19 @@ }, /turf/open/floor/grass, /area/centcom/central_command_areas/hall) -"Kz" = ( +"aKz" = ( /obj/structure/fluff/tram_rail, /obj/structure/fluff/tram_rail{ pixel_y = 17 }, /turf/open/misc/asteroid/snow/icemoon, /area/centcom/syndicate_mothership/control) -"KA" = ( +"aKA" = ( /obj/effect/turf_decal/siding/wood, /obj/structure/table/wood/poker, /turf/open/floor/wood/large, /area/centcom/central_command_areas/arcade) -"KB" = ( +"aKB" = ( /obj/effect/turf_decal/siding/dark{ dir = 4 }, @@ -13525,14 +14112,14 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/admin) -"KC" = ( +"aKC" = ( /obj/structure/table/wood/fancy, /obj/item/skub{ pixel_y = 16 }, /turf/open/floor/iron/white, /area/centcom/wizard_station) -"KD" = ( +"aKD" = ( /obj/structure/lattice/catwalk, /obj/effect/turf_decal/stripes/line, /obj/structure/railing{ @@ -13540,7 +14127,7 @@ }, /turf/open/floor/plating/snowed/icemoon, /area/centcom/syndicate_mothership/control) -"KE" = ( +"aKE" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 9 }, @@ -13569,13 +14156,13 @@ }, /turf/open/floor/mineral/plastitanium/red, /area/centcom/syndicate_mothership/expansion_bioterrorism) -"KF" = ( +"aKF" = ( /obj/effect/turf_decal/tile/brown/half/contrasted{ dir = 8 }, /turf/open/floor/iron, /area/centcom/central_command_areas/supplypod/loading/one) -"KG" = ( +"aKG" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 }, @@ -13584,21 +14171,21 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/kitchen) -"KH" = ( +"aKH" = ( /turf/closed/wall/mineral/titanium, /area/centcom/central_command_areas/evacuation/ship) -"KI" = ( +"aKI" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 }, /turf/open/floor/wood/parquet, /area/centcom/central_command_areas/arcade) -"KJ" = ( +"aKJ" = ( /obj/structure/chair/stool/bar/directional/east, /obj/machinery/light/directional/north, /turf/open/floor/carpet/red, /area/centcom/central_command_areas/evacuation/ship) -"KK" = ( +"aKK" = ( /obj/structure/reagent_dispensers/fueltank, /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -13609,14 +14196,14 @@ /obj/effect/decal/cleanable/blood/old, /turf/open/floor/iron/smooth_large, /area/centcom/central_command_areas/evacuation/ship) -"KL" = ( +"aKL" = ( /obj/effect/turf_decal/stripes/end{ dir = 4 }, /obj/structure/closet/firecloset, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership/control) -"KM" = ( +"aKM" = ( /obj/effect/turf_decal/siding/dark, /obj/effect/turf_decal/siding/dark/corner{ dir = 4 @@ -13626,12 +14213,12 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/admin) -"KN" = ( +"aKN" = ( /obj/structure/chair/sofa/corp/left, /obj/effect/turf_decal/tile/dark/opposingcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/hall) -"KO" = ( +"aKO" = ( /obj/effect/turf_decal/siding/wideplating_new/dark/corner{ dir = 8 }, @@ -13643,7 +14230,7 @@ /obj/machinery/vending/cigarette, /turf/open/floor/iron/dark/textured_large, /area/centcom/central_command_areas/evacuation/ship) -"KP" = ( +"aKP" = ( /obj/effect/turf_decal/siding/wideplating_new/dark/corner, /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -13657,10 +14244,10 @@ }, /turf/open/floor/iron/dark/textured_large, /area/centcom/central_command_areas/evacuation/ship) -"KQ" = ( +"aKQ" = ( /turf/open/floor/plating, /area/centcom/central_command_areas/evacuation/ship) -"KR" = ( +"aKR" = ( /obj/effect/light_emitter{ set_cap = 1; set_luminosity = 4 @@ -13669,7 +14256,7 @@ /obj/structure/flora/grass/both/style_random, /turf/open/misc/asteroid/snow/airless, /area/centcom/syndicate_mothership) -"KS" = ( +"aKS" = ( /obj/docking_port/stationary{ dir = 4; dwidth = 1; @@ -13680,15 +14267,15 @@ }, /turf/open/space/basic, /area/space) -"KT" = ( +"aKT" = ( /obj/structure/closet/secure_closet/brig, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/firing_range_checkpoint_control) -"KU" = ( +"aKU" = ( /obj/effect/turf_decal/siding/wood/corner, /turf/open/floor/wood/large, /area/centcom/central_command_areas/botany) -"KV" = ( +"aKV" = ( /obj/effect/turf_decal/siding/wideplating_new/dark{ dir = 4 }, @@ -13702,7 +14289,7 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark/textured_large, /area/centcom/central_command_areas/evacuation/ship) -"KW" = ( +"aKW" = ( /obj/machinery/camera/autoname/directional/south{ network = list("nukie") }, @@ -13710,7 +14297,7 @@ dir = 8 }, /area/centcom/syndicate_mothership/control) -"KX" = ( +"aKX" = ( /obj/structure/railing{ layer = 3.1 }, @@ -13719,7 +14306,7 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/supply) -"KY" = ( +"aKY" = ( /obj/structure/railing/wood, /obj/structure/railing/wood{ dir = 1 @@ -13730,7 +14317,7 @@ /obj/structure/fluff/arc, /turf/open/floor/glass/reinforced, /area/centcom/central_command_areas/admin_hangout) -"KZ" = ( +"aKZ" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 8 @@ -13739,7 +14326,7 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/evacuation/ship) -"La" = ( +"aLa" = ( /obj/machinery/light/floor/has_bulb, /obj/structure/flora/tree/jungle/small/style_3, /obj/structure/railing/wood{ @@ -13754,7 +14341,7 @@ }, /turf/open/floor/grass, /area/centcom/central_command_areas/borbop) -"Lb" = ( +"aLb" = ( /obj/effect/turf_decal/tile/neutral/opposingcorners, /obj/effect/turf_decal/tile/neutral/opposingcorners, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ @@ -13764,11 +14351,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/centcom/central_command_areas/evacuation/ship) -"Lc" = ( +"aLc" = ( /obj/effect/turf_decal/siding/blue, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/medical) -"Ld" = ( +"aLd" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -13776,7 +14363,7 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/evacuation/ship) -"Le" = ( +"aLe" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/siding/red/corner{ dir = 8 @@ -13785,7 +14372,7 @@ /obj/item/pen/red, /turf/open/floor/iron/dark/textured_large, /area/centcom/syndicate_mothership/control) -"Lf" = ( +"aLf" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 8 }, @@ -13793,7 +14380,7 @@ /obj/structure/marker_beacon/burgundy, /turf/open/floor/catwalk_floor, /area/centcom/central_command_areas/evacuation/ship) -"Lg" = ( +"aLg" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/structure/railing/wood, /obj/structure/railing/wood{ @@ -13801,11 +14388,11 @@ }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin_hangout) -"Lh" = ( +"aLh" = ( /obj/structure/fake_stairs/wood/directional/north, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/borbop) -"Li" = ( +"aLi" = ( /obj/effect/turf_decal/tile/neutral/opposingcorners, /obj/effect/turf_decal/tile/neutral/opposingcorners, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ @@ -13816,20 +14403,20 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/centcom/central_command_areas/evacuation/ship) -"Lj" = ( +"aLj" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/evacuation/ship) -"Lk" = ( +"aLk" = ( /obj/machinery/power/shuttle_engine/heater, /turf/open/floor/catwalk_floor, /area/centcom/central_command_areas/evacuation/ship) -"Ll" = ( +"aLl" = ( /obj/structure/flora/grass/jungle, /turf/open/floor/grass, /area/centcom/central_command_areas/evacuation/ship) -"Lm" = ( +"aLm" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 8 @@ -13837,7 +14424,7 @@ /obj/machinery/door/airlock/titanium/glass, /turf/open/floor/stone, /area/centcom/central_command_areas/evacuation/ship) -"Ln" = ( +"aLn" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/structure/chair/comfy/shuttle/tactical{ dir = 1 @@ -13845,12 +14432,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/evacuation/ship) -"Lo" = ( +"aLo" = ( /obj/structure/window/reinforced/spawner, /obj/structure/lattice, /turf/open/space/basic, /area/space/nearstation) -"Lp" = ( +"aLp" = ( /obj/effect/turf_decal/siding/wideplating_new/dark{ dir = 8 }, @@ -13861,7 +14448,7 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark/textured_large, /area/centcom/central_command_areas/evacuation/ship) -"Lq" = ( +"aLq" = ( /obj/effect/turf_decal/siding/dark{ dir = 6 }, @@ -13869,7 +14456,7 @@ /obj/effect/turf_decal/tile/orange/diagonal_edge, /turf/open/floor/iron/white/diagonal, /area/centcom/central_command_areas/hall) -"Lr" = ( +"aLr" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 6 }, @@ -13879,17 +14466,17 @@ /obj/machinery/chem_dispenser/mutagensaltpeter, /turf/open/floor/mineral/plastitanium/red, /area/centcom/syndicate_mothership/expansion_bioterrorism) -"Ls" = ( +"aLs" = ( /obj/machinery/biogenerator/admin, /obj/effect/turf_decal/siding/wood{ dir = 10 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/botany) -"Lt" = ( +"aLt" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/centcom/central_command_areas/evacuation/ship) -"Lu" = ( +"aLu" = ( /obj/effect/turf_decal/siding/wideplating_new/dark{ dir = 4 }, @@ -13903,28 +14490,28 @@ }, /turf/open/floor/iron/dark/textured_large, /area/centcom/central_command_areas/evacuation/ship) -"Lv" = ( +"aLv" = ( /obj/effect/turf_decal/siding/dark, /obj/effect/turf_decal/siding/dark/corner{ dir = 4 }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/admin_hangout) -"Lw" = ( +"aLw" = ( /obj/effect/spawner/structure/window/reinforced/shuttle, /turf/open/floor/plating, /area/centcom/central_command_areas/evacuation/ship) -"Lx" = ( +"aLx" = ( /obj/effect/turf_decal/siding/green{ dir = 9 }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/botany) -"Ly" = ( +"aLy" = ( /obj/structure/table/wood, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin) -"Lz" = ( +"aLz" = ( /obj/structure/railing{ dir = 10; layer = 3.1 @@ -13939,7 +14526,7 @@ }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/evacuation/ship) -"LA" = ( +"aLA" = ( /obj/effect/turf_decal/siding/wideplating_new/dark{ dir = 8 }, @@ -13950,7 +14537,7 @@ /obj/effect/turf_decal/tile/neutral/full, /turf/open/floor/iron/dark/textured_large, /area/centcom/central_command_areas/evacuation/ship) -"LB" = ( +"aLB" = ( /obj/effect/turf_decal/siding/wideplating_new/dark{ dir = 8 }, @@ -13962,7 +14549,7 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark/textured_large, /area/centcom/central_command_areas/evacuation/ship) -"LC" = ( +"aLC" = ( /obj/effect/turf_decal/tile/neutral/full, /obj/effect/turf_decal/stripes/corner, /obj/effect/turf_decal/stripes/corner{ @@ -13972,7 +14559,7 @@ /obj/structure/fans/tiny, /turf/open/floor/iron/dark/textured_large, /area/centcom/central_command_areas/evacuation/ship) -"LD" = ( +"aLD" = ( /obj/effect/turf_decal/siding/wideplating_new/dark{ dir = 4 }, @@ -13982,47 +14569,47 @@ /obj/effect/turf_decal/tile/neutral/full, /turf/open/floor/iron/dark/textured_large, /area/centcom/central_command_areas/evacuation/ship) -"LE" = ( +"aLE" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 }, /obj/effect/turf_decal/siding/wood/corner, /turf/open/floor/wood/large, /area/centcom/central_command_areas/borbop) -"LF" = ( +"aLF" = ( /obj/structure/flora/grass/jungle/b/style_3, /turf/open/floor/grass, /area/centcom/central_command_areas/evacuation/ship) -"LG" = ( +"aLG" = ( /obj/structure/flora/bush/sparsegrass, /turf/open/floor/grass, /area/centcom/central_command_areas/evacuation/ship) -"LH" = ( +"aLH" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/mineral/titanium/nodiagonal, /area/centcom/central_command_areas/evacuation/ship) -"LI" = ( +"aLI" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 9 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/white/textured, /area/centcom/central_command_areas/evacuation/ship) -"LJ" = ( +"aLJ" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2, /obj/machinery/portable_atmospherics/canister, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/glass, /turf/open/floor/iron/smooth_large, /area/centcom/central_command_areas/evacuation/ship) -"LK" = ( +"aLK" = ( /turf/open/floor/iron/dark, /area/centcom/central_command_areas/botany) -"LL" = ( +"aLL" = ( /obj/machinery/vending/boozeomat, /turf/open/floor/iron/grimy, /area/centcom/central_command_areas/admin) -"LM" = ( +"aLM" = ( /obj/docking_port/stationary{ dir = 8; dwidth = 1; @@ -14033,7 +14620,7 @@ }, /turf/open/space/basic, /area/space) -"LN" = ( +"aLN" = ( /obj/structure/table/optable, /obj/machinery/defibrillator_mount/loaded{ pixel_y = 28 @@ -14043,14 +14630,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/white, /area/centcom/central_command_areas/evacuation/ship) -"LO" = ( +"aLO" = ( /obj/structure/window/reinforced/spawner/directional/east, /obj/machinery/computer/operating, /obj/effect/turf_decal/stripes/line, /obj/machinery/light/directional/north, /turf/open/floor/iron/white, /area/centcom/central_command_areas/evacuation/ship) -"LP" = ( +"aLP" = ( /obj/effect/turf_decal/tile/neutral/full, /obj/effect/turf_decal/stripes/corner{ dir = 1 @@ -14062,7 +14649,7 @@ /obj/structure/fans/tiny, /turf/open/floor/iron/dark/textured_large, /area/centcom/central_command_areas/evacuation/ship) -"LQ" = ( +"aLQ" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -14073,23 +14660,23 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/evacuation/ship) -"LR" = ( +"aLR" = ( /obj/structure/sign/poster/official/tactical_game_cards{ pixel_y = 32 }, /turf/open/floor/carpet/red, /area/centcom/central_command_areas/evacuation/ship) -"LS" = ( +"aLS" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 4 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/borbop) -"LT" = ( +"aLT" = ( /obj/structure/flora/tree/jungle/small/style_5, /turf/open/floor/grass, /area/centcom/central_command_areas/kitchen) -"LU" = ( +"aLU" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/computer/records/medical{ dir = 8 @@ -14097,17 +14684,17 @@ /obj/machinery/light/directional/east, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/evacuation/ship) -"LV" = ( +"aLV" = ( /turf/closed/indestructible/riveted, /area/awaymission/errorroom) -"LW" = ( +"aLW" = ( /turf/closed/mineral/ash_rock, /area/awaymission/errorroom) -"LX" = ( +"aLX" = ( /obj/structure/speaking_tile, /turf/closed/mineral/ash_rock, /area/awaymission/errorroom) -"LY" = ( +"aLY" = ( /obj/effect/turf_decal/siding/wood, /obj/structure/table/wood/fancy/black, /obj/machinery/light/neon_lining{ @@ -14115,7 +14702,7 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/borbop) -"LZ" = ( +"aLZ" = ( /obj/effect/turf_decal/siding/thinplating_new/dark, /obj/structure/closet/syndicate/personal, /obj/structure/sign/poster/contraband/gorlex_recruitment{ @@ -14127,7 +14714,7 @@ dir = 8 }, /area/centcom/syndicate_mothership/control) -"Ma" = ( +"aMa" = ( /obj/structure/hedge, /obj/machinery/light/floor/has_bulb, /obj/effect/turf_decal/siding/wood{ @@ -14135,10 +14722,16 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/botany) -"Mc" = ( +"aMb" = ( +/obj/effect/turf_decal/siding/white, +/obj/structure/flora/bush/fullgrass, +/obj/structure/flora/bush/flowers_br, +/turf/open/floor/grass, +/area/centcom/central_command_areas/retirement_yard) +"aMc" = ( /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin) -"Md" = ( +"aMd" = ( /obj/structure/railing{ layer = 3.1 }, @@ -14147,14 +14740,18 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/supply) -"Mf" = ( +"aMe" = ( +/obj/structure/mineral_door/wood/large_gate, +/turf/open/floor/wood/large, +/area/centcom/central_command_areas/retirement_home) +"aMf" = ( /obj/effect/turf_decal/siding/dark{ dir = 1 }, /obj/effect/turf_decal/siding/dark, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/admin_hangout) -"Mg" = ( +"aMg" = ( /obj/effect/turf_decal/siding/wood{ dir = 10 }, @@ -14163,7 +14760,7 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/kitchen) -"Mh" = ( +"aMh" = ( /obj/structure/chair/comfy/carp{ dir = 1 }, @@ -14172,7 +14769,7 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin_hangout) -"Mi" = ( +"aMi" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 }, @@ -14184,7 +14781,7 @@ /obj/structure/extinguisher_cabinet/directional/east, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership/control) -"Mj" = ( +"aMj" = ( /obj/structure/hedge, /obj/effect/turf_decal/siding/dark{ dir = 5 @@ -14196,22 +14793,22 @@ dir = 5 }, /area/centcom/central_command_areas/hall) -"Mk" = ( +"aMk" = ( /obj/machinery/modular_computer/preset/id/centcom{ dir = 4 }, /turf/open/floor/plating/abductor, /area/centcom/central_command_areas/admin) -"Ml" = ( +"aMl" = ( /obj/structure/hedge, /turf/open/floor/wood/large, /area/centcom/central_command_areas/hall) -"Mm" = ( +"aMm" = ( /obj/structure/flora/bush/large/style_3, /obj/machinery/light/floor/has_bulb, /turf/open/floor/grass, /area/centcom/central_command_areas/hall) -"Mn" = ( +"aMn" = ( /obj/effect/turf_decal/siding/thinplating, /obj/machinery/door/window/survival_pod{ name = "Surgery"; @@ -14219,17 +14816,17 @@ }, /turf/open/floor/mineral/titanium/tiled/blue, /area/centcom/syndicate_mothership/control) -"Mo" = ( +"aMo" = ( /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood/large, /area/centcom/tdome/observation) -"Mp" = ( +"aMp" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 }, /turf/open/floor/wood/large, /area/centcom/tdome/observation) -"Mq" = ( +"aMq" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 }, @@ -14238,7 +14835,7 @@ }, /turf/open/floor/plating/icemoon, /area/centcom/syndicate_mothership/control) -"Mr" = ( +"aMr" = ( /obj/effect/turf_decal/siding/wideplating/dark{ dir = 8 }, @@ -14255,10 +14852,16 @@ /obj/effect/mapping_helpers/airlock/access/all/syndicate/general, /turf/open/floor/iron/textured_large, /area/centcom/syndicate_mothership/control) -"Ms" = ( +"aMs" = ( /turf/closed/indestructible/riveted/uranium, /area/centcom/wizard_station) -"Mu" = ( +"aMt" = ( +/obj/machinery/door/airlock/centcom{ + name = "Admin Retirement Home" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/centcom/central_command_areas/hall) +"aMu" = ( /obj/effect/turf_decal/delivery, /obj/machinery/door/airlock/titanium{ name = "Experiments Wing Decontamination" @@ -14269,13 +14872,13 @@ /obj/effect/mapping_helpers/airlock/access/all/syndicate/general, /turf/open/floor/mineral/titanium, /area/centcom/syndicate_mothership/control) -"Mv" = ( +"aMv" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin_hangout) -"Mw" = ( +"aMw" = ( /obj/effect/turf_decal/trimline/red, /obj/effect/turf_decal/trimline/red, /obj/effect/turf_decal/siding/purple{ @@ -14286,24 +14889,30 @@ }, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership/expansion_chemicalwarfare) -"Mx" = ( +"aMx" = ( /obj/machinery/light/floor/has_bulb, /obj/structure/chair/comfy/carp{ dir = 8 }, /turf/open/floor/stone, /area/centcom/central_command_areas/admin_hangout) -"My" = ( +"aMy" = ( /obj/structure/fake_stairs/wood/directional/north, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/hall) -"Mz" = ( +"aMz" = ( /obj/machinery/microwave, /obj/structure/table/reinforced/plastitaniumglass, /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/centcom/syndicate_mothership/control) -"MB" = ( +"aMA" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/parquet, +/area/centcom/central_command_areas/retirement_home) +"aMB" = ( /obj/structure/hedge, /obj/effect/turf_decal/siding/dark{ dir = 6 @@ -14313,7 +14922,7 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/borbop) -"MC" = ( +"aMC" = ( /obj/structure/flora/grass/jungle/b, /obj/effect/decal/cleanable/garbage{ pixel_x = -15; @@ -14321,32 +14930,32 @@ }, /turf/open/floor/grass, /area/centcom/central_command_areas/evacuation/ship) -"MD" = ( +"aMD" = ( /obj/structure/railing/wood, /obj/effect/turf_decal/siding/wood{ dir = 1 }, /turf/open/floor/wood/parquet, /area/centcom/central_command_areas/borbop) -"ME" = ( +"aME" = ( /obj/structure/chair/comfy/shuttle{ dir = 8 }, /turf/open/floor/circuit, /area/centcom/central_command_areas/admin) -"MF" = ( +"aMF" = ( /obj/structure/curtain/cloth/fancy, /obj/effect/spawner/structure/window/reinforced, /turf/open/indestructible/event/plating, /area/centcom/central_command_areas/kitchen) -"MG" = ( +"aMG" = ( /obj/structure/railing/wood, /obj/structure/railing/wood{ dir = 4 }, /turf/open/floor/grass, /area/centcom/central_command_areas/hall) -"MH" = ( +"aMH" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 8 }, @@ -14355,7 +14964,7 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/evacuation/ship) -"MI" = ( +"aMI" = ( /obj/structure/table/reinforced/plastitaniumglass, /obj/machinery/fax{ fax_name = "Raziel's Desk"; @@ -14363,18 +14972,18 @@ }, /turf/open/floor/glass/reinforced/plasma, /area/centcom/central_command_areas/admin) -"MJ" = ( +"aMJ" = ( /obj/structure/chair/office, /obj/effect/landmark/ert_spawn, /obj/structure/cable, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/briefing) -"MK" = ( +"aMK" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/structure/railing/wood, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/hall) -"ML" = ( +"aML" = ( /obj/structure/closet/crate{ icon_state = "crateopen" }, @@ -14384,16 +14993,16 @@ /obj/item/clothing/shoes/sandal/magic, /turf/open/floor/engine/cult, /area/centcom/wizard_station) -"MM" = ( +"aMM" = ( /obj/machinery/power/shuttle_engine/large, /turf/open/floor/plating, /area/centcom/central_command_areas/evacuation/ship) -"MN" = ( +"aMN" = ( /obj/structure/flora/bush/flowers_pp/style_random, /obj/structure/flora/bush/fullgrass/style_random, /turf/open/floor/grass, /area/centcom/central_command_areas/hall) -"MO" = ( +"aMO" = ( /obj/item/kirbyplants{ icon_state = "plant-22"; pixel_x = -4 @@ -14407,13 +15016,13 @@ /obj/machinery/light/directional/north, /turf/open/floor/wood/large, /area/centcom/central_command_areas/kitchen) -"MP" = ( +"aMP" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/machinery/vending/wardrobe/engi_wardrobe, /obj/machinery/light/floor/has_bulb, /turf/open/floor/iron/dark, /area/centcom/tdome/observation) -"MQ" = ( +"aMQ" = ( /obj/machinery/vending/wardrobe/atmos_wardrobe, /obj/effect/turf_decal/siding/dark{ dir = 10 @@ -14425,7 +15034,7 @@ dir = 10 }, /area/centcom/central_command_areas/hall) -"MR" = ( +"aMR" = ( /obj/structure/table/sandstone{ color = "#efbc1e" }, @@ -14447,24 +15056,24 @@ color = "#cc9439" }, /area/centcom/central_command_areas/admin) -"MS" = ( +"aMS" = ( /obj/machinery/door/airlock{ icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; name = "Observation Deck" }, /turf/open/floor/engine/cult, /area/centcom/wizard_station) -"MT" = ( +"aMT" = ( /obj/structure/noticeboard/directional/east, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership/expansion_bioterrorism) -"MU" = ( +"aMU" = ( /obj/structure/stone_tile{ dir = 8 }, /turf/open/misc/snow/actually_safe, /area/centcom/central_command_areas/admin) -"MV" = ( +"aMV" = ( /obj/effect/turf_decal/siding/thinplating{ dir = 5 }, @@ -14475,60 +15084,60 @@ /obj/item/storage/belt/medical, /turf/open/floor/mineral/titanium/tiled/blue, /area/centcom/syndicate_mothership/control) -"MW" = ( +"aMW" = ( /obj/machinery/status_display/evac/directional/west, /obj/machinery/light/directional/west, /obj/structure/railing/wood, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/evacuation) -"MX" = ( +"aMX" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/smooth_edge, /area/centcom/central_command_areas/evacuation/ship) -"MY" = ( +"aMY" = ( /obj/structure/sign/nanotrasen, /turf/closed/indestructible/riveted, /area/centcom/central_command_areas/briefing) -"MZ" = ( +"aMZ" = ( /obj/structure/hedge, /obj/structure/railing/wood, /obj/machinery/light/floor/has_bulb, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/medical) -"Na" = ( +"aNa" = ( /turf/open/floor/glass/reinforced/plasma, /area/centcom/central_command_areas/admin) -"Nb" = ( +"aNb" = ( /turf/open/floor/iron/dark, /area/centcom/central_command_areas/medical) -"Nc" = ( +"aNc" = ( /obj/structure/chair/office{ dir = 1; name = "gamer chair" }, /turf/open/floor/iron/grimy, /area/centcom/central_command_areas/admin) -"Nd" = ( +"aNd" = ( /obj/effect/turf_decal/siding/green, /obj/structure/hedge, /turf/open/floor/iron/dark/small, /area/centcom/central_command_areas/botany) -"Ne" = ( +"aNe" = ( /obj/item/stack/sheet/mineral/sandbags, /turf/open/floor/catwalk_floor/iron_dark, /area/centcom/syndicate_mothership/control) -"Nf" = ( +"aNf" = ( /obj/machinery/light/floor/has_bulb, /turf/open/floor/wood/large, /area/centcom/tdome/observation) -"Ng" = ( +"aNg" = ( /obj/effect/turf_decal/siding/wood{ dir = 6 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/kitchen) -"Nh" = ( +"aNh" = ( /obj/effect/turf_decal/siding/wideplating{ dir = 1 }, @@ -14541,7 +15150,7 @@ dir = 4 }, /area/centcom/syndicate_mothership/control) -"Ni" = ( +"aNi" = ( /obj/effect/turf_decal/siding/dark/corner{ dir = 1 }, @@ -14550,31 +15159,31 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/supply) -"Nj" = ( +"aNj" = ( /obj/effect/turf_decal/siding/dark{ dir = 4 }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/prison/cells) -"Nk" = ( +"aNk" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ dir = 1 }, /turf/open/floor/mineral/titanium/tiled/yellow, /area/centcom/syndicate_mothership/expansion_bombthreat) -"Nl" = ( +"aNl" = ( /obj/machinery/light/floor/has_bulb, /turf/open/misc/snow/actually_safe, /area/centcom/central_command_areas/admin) -"Nm" = ( +"aNm" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 4 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/white/textured, /area/centcom/central_command_areas/evacuation/ship) -"Nn" = ( +"aNn" = ( /obj/structure/table/reinforced/plastitaniumglass, /obj/item/storage/fancy/cigarettes/cigars/havana, /obj/item/toy/plush/nukeplushie{ @@ -14585,18 +15194,18 @@ /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/centcom/syndicate_mothership/control) -"No" = ( +"aNo" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 }, /obj/machinery/light/directional/east, /turf/open/floor/wood/parquet, /area/centcom/central_command_areas/arcade) -"Np" = ( +"aNp" = ( /obj/structure/chair/office, /turf/open/floor/mineral/titanium/tiled/yellow, /area/centcom/syndicate_mothership/expansion_chemicalwarfare) -"Nq" = ( +"aNq" = ( /obj/effect/turf_decal/siding/wood{ dir = 5 }, @@ -14606,7 +15215,7 @@ /obj/structure/hedge, /turf/open/floor/wood/large, /area/centcom/central_command_areas/medical) -"Nr" = ( +"aNr" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 }, @@ -14622,11 +15231,11 @@ }, /turf/open/floor/carpet/red, /area/centcom/central_command_areas/admin) -"Ns" = ( +"aNs" = ( /obj/structure/dresser, /turf/open/floor/iron/grimy, /area/centcom/central_command_areas/admin) -"Nt" = ( +"aNt" = ( /obj/item/kirbyplants{ icon_state = "plant-22"; pixel_x = -4 @@ -14635,7 +15244,7 @@ /obj/machinery/light/directional/south, /turf/open/floor/wood/large, /area/centcom/central_command_areas/kitchen) -"Nu" = ( +"aNu" = ( /obj/structure/rack, /obj/item/stack/sheet/iron/fifty, /obj/item/stack/ducts/fifty, @@ -14645,7 +15254,7 @@ }, /turf/open/floor/mineral/titanium/tiled/yellow, /area/centcom/syndicate_mothership/expansion_chemicalwarfare) -"Nv" = ( +"aNv" = ( /obj/effect/light_emitter{ set_cap = 1; set_luminosity = 4 @@ -14654,10 +15263,10 @@ /obj/structure/flora/grass/both/style_random, /turf/open/misc/asteroid/snow/airless, /area/centcom/syndicate_mothership) -"Nw" = ( +"aNw" = ( /turf/closed/indestructible/syndicate, /area/centcom/syndicate_mothership/expansion_bombthreat) -"Nx" = ( +"aNx" = ( /obj/effect/turf_decal/siding/dark{ dir = 4 }, @@ -14668,18 +15277,18 @@ /obj/machinery/reagentgrinder, /turf/open/floor/iron/white/herringbone, /area/centcom/central_command_areas/kitchen) -"Ny" = ( +"aNy" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/briefing) -"Nz" = ( +"aNz" = ( /obj/effect/turf_decal/siding/wood{ dir = 6 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin_hangout) -"NA" = ( +"aNA" = ( /obj/structure/lattice/catwalk, /obj/effect/turf_decal/stripes/line, /obj/structure/railing{ @@ -14687,7 +15296,7 @@ }, /turf/open/lava/plasma/ice_moon, /area/centcom/syndicate_mothership/control) -"NB" = ( +"aNB" = ( /obj/effect/turf_decal/tile/dark/diagonal_edge, /obj/structure/table/wood/fancy/royalblue, /obj/machinery/light/neon_lining{ @@ -14696,28 +15305,28 @@ }, /turf/open/floor/iron/white/diagonal, /area/centcom/central_command_areas/hall) -"NC" = ( +"aNC" = ( /obj/structure/cable, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/briefing) -"ND" = ( +"aND" = ( /obj/machinery/vending/snack, /turf/open/floor/engine/cult, /area/centcom/wizard_station) -"NE" = ( +"aNE" = ( /turf/open/floor/iron, /area/centcom/central_command_areas/supplypod/pod_storage) -"NF" = ( +"aNF" = ( /obj/structure/fake_stairs/wood/directional/south, /turf/open/floor/wood/large, /area/centcom/central_command_areas/botany) -"NG" = ( +"aNG" = ( /obj/structure/chair/wood/wings{ dir = 1 }, /turf/open/floor/engine/cult, /area/centcom/wizard_station) -"NH" = ( +"aNH" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/structure/railing/wood{ dir = 8 @@ -14725,25 +15334,25 @@ /obj/structure/railing/wood, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin_hangout) -"NI" = ( +"aNI" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 }, /turf/open/floor/stone, /area/centcom/central_command_areas/evacuation/ship) -"NJ" = ( +"aNJ" = ( /obj/machinery/growing/tray, /obj/effect/turf_decal/trimline/green/line{ dir = 6 }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/botany) -"NK" = ( +"aNK" = ( /obj/structure/table/wood, /obj/machinery/computer/security/wooden_tv, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin) -"NL" = ( +"aNL" = ( /obj/item/kirbyplants{ icon_state = "plant-22" }, @@ -14752,7 +15361,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/briefing) -"NM" = ( +"aNM" = ( /obj/structure/fence/cut/large, /obj/effect/light_emitter{ set_cap = 1; @@ -14760,37 +15369,37 @@ }, /turf/open/misc/asteroid/snow/airless, /area/centcom/syndicate_mothership) -"NN" = ( +"aNN" = ( /obj/machinery/light/floor/has_bulb, /obj/effect/turf_decal/trimline/green, /obj/effect/turf_decal/siding/green/end, /obj/effect/turf_decal/tile/dark_blue/diagonal_centre, /turf/open/floor/iron/dark/diagonal, /area/centcom/central_command_areas/botany) -"NO" = ( +"aNO" = ( /obj/machinery/door/airlock/centcom, /turf/open/floor/wood/large, /area/centcom/central_command_areas/evacuation) -"NP" = ( +"aNP" = ( /turf/closed/indestructible/hive, /area/station/hive/one) -"NQ" = ( +"aNQ" = ( /obj/structure/bookcase/random, /obj/machinery/light/directional/north, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/ferry) -"NR" = ( +"aNR" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 1 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/medical) -"NS" = ( +"aNS" = ( /obj/machinery/rnd/production/techfab/department/medical, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/medical) -"NT" = ( +"aNT" = ( /obj/structure/disposalpipe/loafer{ dir = 4 }, @@ -14800,7 +15409,7 @@ }, /turf/open/floor/plating, /area/centcom/central_command_areas/admin) -"NU" = ( +"aNU" = ( /obj/effect/turf_decal/siding/wideplating/dark, /obj/structure/chair/sofa/bench, /obj/machinery/light/cold/directional/north, @@ -14809,17 +15418,24 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, /turf/open/floor/stone, /area/centcom/syndicate_mothership/control) -"NV" = ( +"aNV" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 8 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/hall) -"NX" = ( +"aNW" = ( +/obj/structure/decorative/shelf/soda_milk, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/centcom/central_command_areas/retirement_home) +"aNX" = ( /obj/structure/hive_exit, /turf/closed/indestructible/hive, /area/station/hive/four) -"NY" = ( +"aNY" = ( /obj/effect/turf_decal/siding/wideplating/dark, /obj/effect/turf_decal/siding/wideplating/dark{ dir = 1 @@ -14830,7 +15446,7 @@ dir = 4 }, /area/centcom/syndicate_mothership/expansion_bombthreat) -"NZ" = ( +"aNZ" = ( /obj/structure/chair/stool/bar/directional/west, /obj/effect/turf_decal/siding/thinplating/dark{ dir = 4 @@ -14838,12 +15454,12 @@ /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/centcom/syndicate_mothership/control) -"Oa" = ( +"aOa" = ( /obj/structure/curtain/cloth/fancy, /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/centcom/central_command_areas/arcade) -"Ob" = ( +"aOb" = ( /obj/structure/fireplace{ pixel_x = 0 }, @@ -14857,7 +15473,7 @@ }, /turf/open/floor/carpet, /area/centcom/central_command_areas/admin) -"Oc" = ( +"aOc" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/siding/red{ dir = 1 @@ -14866,42 +15482,42 @@ /obj/item/pen/red, /turf/open/floor/iron/dark/textured_large, /area/centcom/syndicate_mothership/control) -"Od" = ( +"aOd" = ( /obj/effect/turf_decal/siding/purple, /obj/effect/turf_decal/siding/thinplating_new/light{ dir = 8 }, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership/expansion_chemicalwarfare) -"Oe" = ( +"aOe" = ( /turf/open/misc/ice/icemoon, /area/centcom/syndicate_mothership/control) -"Of" = ( +"aOf" = ( /obj/structure/curtain/cloth/fancy, /obj/effect/spawner/structure/window/reinforced, /turf/open/indestructible/event/plating, /area/centcom/central_command_areas/borbop) -"Og" = ( +"aOg" = ( /obj/structure/railing/wood{ dir = 8 }, /obj/structure/flora/bush/large/style_3, /turf/open/floor/grass, /area/centcom/central_command_areas/hall) -"Oh" = ( +"aOh" = ( /obj/structure/chair/sofa/corp/left{ dir = 1 }, /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood/large, /area/centcom/tdome/observation) -"Oi" = ( +"aOi" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 }, /turf/open/floor/mineral/plastitanium/red, /area/centcom/syndicate_mothership/expansion_chemicalwarfare) -"Oj" = ( +"aOj" = ( /obj/structure/hedge, /obj/machinery/light/floor/has_bulb, /obj/effect/turf_decal/siding/wood, @@ -14910,17 +15526,17 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/kitchen) -"Ok" = ( +"aOk" = ( /obj/structure/window/reinforced/spawner/directional/north, /turf/open/floor/mineral/titanium/purple, /area/centcom/central_command_areas/admin) -"Ol" = ( +"aOl" = ( /obj/effect/turf_decal/siding/wood{ dir = 10 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/kitchen) -"Om" = ( +"aOm" = ( /obj/structure/table/reinforced, /obj/item/clipboard, /obj/item/folder/white, @@ -14928,10 +15544,13 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/briefing) -"On" = ( +"aOn" = ( /turf/closed/indestructible/riveted, /area/centcom/central_command_areas/admin) -"Op" = ( +"aOo" = ( +/turf/open/floor/wood/large, +/area/centcom/central_command_areas/retirement_home) +"aOp" = ( /obj/structure/railing/wood, /obj/structure/table/reinforced, /obj/item/toy/sword, @@ -14959,11 +15578,17 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/hall) -"Oq" = ( +"aOq" = ( /obj/effect/turf_decal/tile/brown/anticorner/contrasted, /turf/open/floor/iron, /area/centcom/central_command_areas/supplypod/loading/two) -"Os" = ( +"aOr" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/centcom/central_command_areas/retirement_home) +"aOs" = ( /obj/effect/turf_decal/siding/dark{ dir = 10 }, @@ -14975,24 +15600,54 @@ dir = 10 }, /area/centcom/central_command_areas/hall) -"Ot" = ( +"aOt" = ( /obj/structure/railing, /turf/open/misc/asteroid/snow/icemoon, /area/centcom/syndicate_mothership/control) -"Ov" = ( +"aOu" = ( +/obj/structure/rack/wooden, +/obj/item/dyespray{ + pixel_x = -6; + pixel_y = 11 + }, +/obj/item/dyespray{ + pixel_x = 5; + pixel_y = 11 + }, +/obj/item/reagent_containers/spray/quantum_hair_dye{ + pixel_x = 11 + }, +/obj/item/reagent_containers/spray/barbers_aid{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/item/reagent_containers/spray/baldium{ + pixel_x = -10; + pixel_y = -2 + }, +/obj/item/reagent_containers/spray/super_barbers_aid{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/carpet/orange, +/area/centcom/central_command_areas/retirement_home) +"aOv" = ( /obj/structure/chair/wood/wings, /turf/open/floor/engine/cult, /area/centcom/wizard_station) -"Ow" = ( +"aOw" = ( /obj/machinery/light/floor/has_bulb, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/firing_range) -"Ox" = ( +"aOx" = ( /obj/effect/turf_decal/tile/dark/diagonal_edge, /obj/machinery/griddle, /turf/open/floor/iron/white/diagonal, /area/centcom/central_command_areas/kitchen) -"Oy" = ( +"aOy" = ( /obj/machinery/button/door/directional/east{ id = "FBBZ1"; name = "Security Shutters" @@ -15000,7 +15655,7 @@ /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/centcom/syndicate_mothership/control) -"Oz" = ( +"aOz" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 6 }, @@ -15010,7 +15665,7 @@ }, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership/control) -"OA" = ( +"aOA" = ( /obj/effect/turf_decal/siding/dark, /obj/effect/turf_decal/siding/dark{ dir = 1 @@ -15018,27 +15673,30 @@ /obj/machinery/vending/wardrobe/robo_wardrobe, /turf/open/floor/iron/dark/side, /area/centcom/central_command_areas/hall) -"OB" = ( +"aOB" = ( /obj/structure/railing/wood{ dir = 8 }, /turf/open/floor/glass/reinforced, /area/centcom/central_command_areas/hall) -"OC" = ( +"aOC" = ( /obj/structure/table/reinforced, /obj/item/toy/plush/space_lizard_plushie{ name = "Escapes-on-Pods" }, /turf/open/floor/iron/smooth_large, /area/centcom/central_command_areas/evacuation/ship) -"OD" = ( +"aOD" = ( /obj/machinery/clonepod{ name = "First Success"; desc = "A little known fact is that clones requires souls, the men and woman who worked on the first success of what would come to be known as the Iden Project did not know that." }, /turf/open/floor/circuit, /area/centcom/central_command_areas/admin) -"OF" = ( +"aOE" = ( +/turf/closed/indestructible/fakeglass, +/area/centcom/central_command_areas/retirement_yard) +"aOF" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/structure/table/wood, /obj/item/toy/cards/deck{ @@ -15056,7 +15714,7 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/evacuation/ship) -"OG" = ( +"aOG" = ( /obj/machinery/light/directional/east, /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -15064,7 +15722,7 @@ /obj/structure/closet/emcloset, /turf/open/floor/iron/dark/smooth_large, /area/centcom/central_command_areas/evacuation/ship) -"OH" = ( +"aOH" = ( /obj/effect/turf_decal/siding/thinplating_new/dark, /obj/structure/sign/poster/contraband/cybersun_six_hundred{ pixel_x = 32 @@ -15072,48 +15730,48 @@ /obj/item/kirbyplants/random, /turf/open/floor/mineral/titanium, /area/centcom/syndicate_mothership/control) -"OI" = ( +"aOI" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/siding/red/corner{ dir = 1 }, /turf/open/floor/iron/dark/textured_large, /area/centcom/syndicate_mothership/control) -"OJ" = ( +"aOJ" = ( /obj/effect/turf_decal/siding/blue{ dir = 5 }, /turf/open/floor/iron/dark/diagonal, /area/centcom/central_command_areas/medical) -"OK" = ( +"aOK" = ( /obj/structure/railing/wood{ dir = 4 }, /obj/effect/turf_decal/tile/dark/opposingcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/hall) -"OL" = ( +"aOL" = ( /turf/closed/indestructible/rock/snow, /area/centcom/syndicate_mothership/control) -"OM" = ( +"aOM" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/supply) -"ON" = ( +"aON" = ( /obj/machinery/vending/magivend, /turf/open/floor/engine/cult, /area/centcom/wizard_station) -"OO" = ( +"aOO" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/machinery/light/directional/west, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/hall) -"OP" = ( +"aOP" = ( /obj/effect/turf_decal/delivery, /turf/open/floor/iron, /area/centcom/central_command_areas/supplypod/loading/one) -"OQ" = ( +"aOQ" = ( /obj/machinery/door/airlock/centcom{ name = "Briefing Room" }, @@ -15122,18 +15780,18 @@ /obj/effect/mapping_helpers/airlock/access/any/admin/general, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"OR" = ( +"aOR" = ( /obj/effect/turf_decal/tile/brown/diagonal_centre, /obj/structure/table/reinforced, /obj/machinery/coffeemaker/impressa, /turf/open/floor/iron/white/diagonal, /area/centcom/central_command_areas/admin) -"OS" = ( +"aOS" = ( /obj/effect/decal/remains/human, /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/grass, /area/centcom/wizard_station) -"OT" = ( +"aOT" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, @@ -15142,11 +15800,11 @@ }, /turf/open/floor/mineral/titanium/tiled/yellow, /area/centcom/syndicate_mothership/expansion_bombthreat) -"OU" = ( +"aOU" = ( /obj/machinery/light/directional/south, /turf/open/floor/engine/cult, /area/centcom/wizard_station) -"OV" = ( +"aOV" = ( /obj/effect/turf_decal/siding/dark{ dir = 1 }, @@ -15156,14 +15814,14 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/hall) -"OW" = ( +"aOW" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 5 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/white/textured, /area/centcom/central_command_areas/evacuation/ship) -"OX" = ( +"aOX" = ( /obj/structure/chair/office{ dir = 1 }, @@ -15171,14 +15829,14 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/briefing) -"OY" = ( +"aOY" = ( /obj/structure/chair/office/light{ dir = 1 }, /obj/machinery/light/cold/directional/east, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership/expansion_bioterrorism) -"OZ" = ( +"aOZ" = ( /obj/structure/rack{ color = "#efbc1e" }, @@ -15195,13 +15853,13 @@ color = "#cc9439" }, /area/centcom/central_command_areas/admin) -"Pa" = ( +"aPa" = ( /obj/effect/turf_decal/siding/wood{ dir = 6 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/evacuation) -"Pb" = ( +"aPb" = ( /obj/machinery/vending/wardrobe/chap_wardrobe, /obj/effect/turf_decal/siding/dark/end{ dir = 4 @@ -15210,7 +15868,7 @@ dir = 5 }, /area/centcom/central_command_areas/hall) -"Pc" = ( +"aPc" = ( /obj/machinery/light/floor/has_bulb, /obj/effect/turf_decal/siding/wood, /obj/effect/turf_decal/siding/wood{ @@ -15218,7 +15876,7 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin_hangout) -"Pd" = ( +"aPd" = ( /obj/effect/turf_decal/siding/wideplating{ dir = 1 }, @@ -15227,7 +15885,7 @@ dir = 4 }, /area/centcom/syndicate_mothership/control) -"Pe" = ( +"aPe" = ( /obj/structure/railing/wood{ dir = 8 }, @@ -15235,7 +15893,7 @@ /obj/structure/flora/bush/flowers_pp/style_random, /turf/open/floor/grass, /area/centcom/central_command_areas/hall) -"Pf" = ( +"aPf" = ( /obj/effect/turf_decal/siding/dark, /obj/effect/turf_decal/siding/dark{ dir = 1 @@ -15245,54 +15903,54 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/admin) -"Pg" = ( +"aPg" = ( /obj/structure/fake_stairs/wood/directional/north, /turf/open/indestructible/hotelwood, /area/centcom/central_command_areas/borbop) -"Ph" = ( +"aPh" = ( /obj/machinery/door/airlock/hatch{ name = "Closet" }, /obj/effect/mapping_helpers/airlock/access/all/syndicate/general, /turf/open/floor/iron/smooth_edge, /area/centcom/syndicate_mothership/control) -"Pi" = ( +"aPi" = ( /obj/structure/window/reinforced/tinted, /obj/item/chair/wood, /turf/open/floor/iron/grimy, /area/centcom/central_command_areas/admin) -"Pj" = ( +"aPj" = ( /obj/machinery/light/floor/has_bulb, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin_hangout) -"Pk" = ( +"aPk" = ( /obj/effect/turf_decal/siding/thinplating_new/dark, /obj/item/kirbyplants/random, /turf/open/floor/mineral/titanium, /area/centcom/syndicate_mothership/control) -"Pl" = ( +"aPl" = ( /obj/structure/table/reinforced/plastitaniumglass, /obj/item/dice/d10, /turf/open/floor/circuit, /area/centcom/central_command_areas/admin) -"Pm" = ( +"aPm" = ( /obj/effect/turf_decal/delivery, /turf/open/floor/iron, /area/centcom/central_command_areas/supplypod/loading/four) -"Pn" = ( +"aPn" = ( /obj/structure/chair/pew/left{ dir = 8 }, /turf/open/floor/iron/dark/textured, /area/centcom/central_command_areas/arcade) -"Po" = ( +"aPo" = ( /obj/machinery/vending/boozeomat, /obj/effect/turf_decal/siding/wood{ dir = 6 }, /turf/open/floor/wood/tile, /area/centcom/central_command_areas/evacuation/ship) -"Pp" = ( +"aPp" = ( /obj/structure/table/reinforced/plastitaniumglass{ name = "Andrea's Desk" }, @@ -15300,17 +15958,17 @@ /obj/item/clipboard, /turf/open/floor/carpet/royalblue, /area/centcom/central_command_areas/admin) -"Pq" = ( +"aPq" = ( /turf/open/floor/wood/parquet, /area/centcom/central_command_areas/arcade) -"Pr" = ( +"aPr" = ( /obj/machinery/light/floor/has_bulb, /obj/effect/turf_decal/siding/wood{ dir = 8 }, /turf/open/floor/wood/large, /area/centcom/tdome/observation) -"Ps" = ( +"aPs" = ( /obj/structure/flora/tree/pine/style_random, /obj/effect/light_emitter{ set_cap = 1; @@ -15318,7 +15976,7 @@ }, /turf/open/misc/asteroid/snow/airless, /area/centcom/syndicate_mothership) -"Pt" = ( +"aPt" = ( /obj/structure/table/reinforced, /obj/item/storage/toolbox/mechanical, /obj/item/tank/internals/emergency_oxygen/engi, @@ -15327,19 +15985,19 @@ }, /turf/open/floor/iron, /area/centcom/central_command_areas/armory) -"Pu" = ( +"aPu" = ( /obj/effect/turf_decal/stripes/end{ dir = 8 }, /turf/open/floor/mineral/titanium/tiled/yellow, /area/centcom/syndicate_mothership/expansion_bioterrorism) -"Pv" = ( +"aPv" = ( /obj/effect/turf_decal/tile/brown/half/contrasted{ dir = 8 }, /turf/open/floor/iron, /area/centcom/central_command_areas/supplypod/loading/four) -"Pw" = ( +"aPw" = ( /obj/docking_port/stationary{ dir = 8; dwidth = 1; @@ -15350,32 +16008,32 @@ }, /turf/open/space/basic, /area/space) -"Px" = ( +"aPx" = ( /obj/effect/turf_decal/siding/wood{ dir = 5 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/borbop) -"Py" = ( +"aPy" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 }, /turf/open/floor/mineral/plastitanium/red, /area/centcom/syndicate_mothership/expansion_chemicalwarfare) -"Pz" = ( +"aPz" = ( /obj/machinery/computer/shuttle/syndicate/recall{ dir = 8 }, /turf/open/floor/carpet, /area/centcom/syndicate_mothership/control) -"PA" = ( +"aPA" = ( /turf/open/floor/carpet, /area/centcom/syndicate_mothership/control) -"PB" = ( +"aPB" = ( /obj/machinery/light/small/directional/north, /turf/open/misc/asteroid/snow/icemoon, /area/centcom/syndicate_mothership/control) -"PC" = ( +"aPC" = ( /obj/machinery/button/door/indestructible{ id = "XCCQMLoaddoor"; layer = 4; @@ -15401,22 +16059,22 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/supply) -"PD" = ( +"aPD" = ( /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/centcom/wizard_station) -"PE" = ( +"aPE" = ( /obj/machinery/newscaster{ pixel_x = 32 }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/armory) -"PF" = ( +"aPF" = ( /obj/item/kirbyplants/random, /turf/open/floor/catwalk_floor/iron_smooth, /area/centcom/syndicate_mothership/control) -"PG" = ( +"aPG" = ( /obj/effect/turf_decal/siding/dark{ dir = 4 }, @@ -15425,7 +16083,18 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/supply) -"PJ" = ( +"aPH" = ( +/obj/structure/railing/wooden_fencing{ + pixel_y = 16 + }, +/turf/open/floor/grass, +/area/centcom/central_command_areas/retirement_yard) +"aPI" = ( +/obj/structure/flora/bush/fullgrass/style_3, +/obj/structure/flora/biolumi/flower, +/turf/open/floor/grass, +/area/centcom/central_command_areas/retirement_yard) +"aPJ" = ( /obj/structure/closet/crate/freezer/blood, /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 8 @@ -15433,41 +16102,41 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/white/textured, /area/centcom/central_command_areas/evacuation/ship) -"PK" = ( +"aPK" = ( /obj/effect/turf_decal/tile/brown/half/contrasted, /turf/open/floor/iron, /area/centcom/central_command_areas/supplypod/loading/one) -"PL" = ( +"aPL" = ( /turf/closed/indestructible/syndicate, /area/centcom/syndicate_mothership/expansion_bioterrorism) -"PM" = ( +"aPM" = ( /obj/structure/chair/office, /obj/effect/landmark/ert_spawn, /obj/structure/cable, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/briefing) -"PN" = ( +"aPN" = ( /obj/structure/sign/poster/contraband/gorlex_recruitment{ pixel_x = -32 }, /turf/open/floor/mineral/titanium, /area/centcom/syndicate_mothership/control) -"PO" = ( +"aPO" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood/large, /area/centcom/central_command_areas/botany) -"PP" = ( +"aPP" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, /obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, /turf/open/floor/catwalk_floor/iron, /area/centcom/syndicate_mothership/control) -"PQ" = ( +"aPQ" = ( /obj/machinery/light/cold/directional/north, /turf/open/floor/mineral/titanium, /area/centcom/syndicate_mothership/control) -"PR" = ( +"aPR" = ( /obj/structure/sign{ name = "wall"; icon = 'monkestation/icons/turf/walls/reinforced_wall.dmi'; @@ -15477,7 +16146,7 @@ }, /turf/open/space/basic, /area/space) -"PS" = ( +"aPS" = ( /obj/machinery/computer/camera_advanced{ dir = 8; networks = list("nukie") @@ -15485,25 +16154,25 @@ /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/centcom/syndicate_mothership/control) -"PT" = ( +"aPT" = ( /obj/structure/fake_stairs/wood/directional/east, /obj/structure/railing/wood, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin_hangout) -"PU" = ( +"aPU" = ( /turf/open/floor/circuit/red, /area/centcom/syndicate_mothership/control) -"PV" = ( +"aPV" = ( /obj/machinery/door/airlock{ icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; name = "Personal Quarters" }, /turf/open/floor/engine/cult, /area/centcom/wizard_station) -"PW" = ( +"aPW" = ( /turf/open/floor/iron, /area/centcom/central_command_areas/supplypod/loading/three) -"PX" = ( +"aPX" = ( /obj/structure/table/reinforced, /obj/item/folder/red{ pixel_x = -2; @@ -15516,27 +16185,27 @@ /obj/item/lighter, /turf/open/floor/iron/grimy, /area/centcom/central_command_areas/briefing) -"PY" = ( +"aPY" = ( /obj/effect/turf_decal/siding/wood, /obj/effect/turf_decal/siding/wood{ dir = 1 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin_hangout) -"PZ" = ( +"aPZ" = ( /obj/structure/table/wood, /obj/item/paper_bin, /obj/item/pen/fourcolor, /obj/machinery/pollution_scrubber, /turf/open/floor/carpet, /area/centcom/central_command_areas/admin) -"Qa" = ( +"aQa" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin_hangout) -"Qb" = ( +"aQb" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 }, @@ -15546,12 +16215,12 @@ /obj/machinery/portable_atmospherics/canister/plasma, /turf/open/floor/plating, /area/centcom/syndicate_mothership/expansion_bombthreat) -"Qc" = ( +"aQc" = ( /obj/effect/turf_decal/siding/wideplating, /obj/machinery/light/small/directional/south, /turf/open/floor/plating, /area/centcom/syndicate_mothership/control) -"Qd" = ( +"aQd" = ( /obj/structure/table/wood, /obj/item/reagent_containers/cup/glass/drinkingglass{ pixel_y = 9; @@ -15566,14 +16235,14 @@ }, /turf/open/floor/wood/tile, /area/centcom/central_command_areas/evacuation/ship) -"Qe" = ( +"aQe" = ( /turf/open/ai_visible, /area/centcom/ai_multicam_room) -"Qf" = ( +"aQf" = ( /obj/machinery/vending/games, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/arcade) -"Qg" = ( +"aQg" = ( /obj/item/knife/kitchen{ pixel_y = 1; pixel_x = -8 @@ -15582,7 +16251,7 @@ /obj/structure/table/wood, /turf/open/floor/iron/dark/textured_large, /area/centcom/central_command_areas/arcade) -"Qh" = ( +"aQh" = ( /obj/structure/hedge, /obj/structure/stone_tile/slab, /obj/structure/sign{ @@ -15601,7 +16270,7 @@ }, /turf/open/misc/snow/actually_safe, /area/centcom/central_command_areas/admin) -"Qi" = ( +"aQi" = ( /obj/structure/railing/wood{ dir = 8 }, @@ -15615,38 +16284,38 @@ /obj/machinery/light/floor/has_bulb, /turf/open/floor/grass, /area/centcom/central_command_areas/admin_hangout) -"Qj" = ( +"aQj" = ( /obj/machinery/light/floor/has_bulb, /turf/open/floor/wood/large, /area/centcom/central_command_areas/evacuation) -"Qk" = ( +"aQk" = ( /obj/structure/cable, /turf/closed/indestructible/syndicate, /area/centcom/syndicate_mothership/control) -"Ql" = ( +"aQl" = ( /obj/effect/turf_decal/siding/wood{ dir = 10 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/hall) -"Qm" = ( +"aQm" = ( /obj/machinery/light/floor/has_bulb, /obj/effect/turf_decal/siding/wood{ dir = 1 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/medical) -"Qn" = ( +"aQn" = ( /obj/structure/hedge, /turf/open/floor/wood/large, /area/centcom/central_command_areas/botany) -"Qo" = ( +"aQo" = ( /obj/structure/railing/wood{ dir = 1 }, /turf/open/floor/grass, /area/centcom/central_command_areas/hall) -"Qp" = ( +"aQp" = ( /obj/effect/turf_decal/siding/dark{ dir = 1 }, @@ -15655,27 +16324,27 @@ dir = 1 }, /area/centcom/central_command_areas/hall) -"Qq" = ( +"aQq" = ( /obj/structure/chair/wood{ dir = 4 }, /turf/open/floor/carpet/black, /area/centcom/central_command_areas/borbop) -"Qr" = ( +"aQr" = ( /obj/machinery/light/cold/directional/north, /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 1 }, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership/control) -"Qs" = ( +"aQs" = ( /obj/effect/turf_decal/siding/blue/end{ dir = 4 }, /obj/structure/railing/wood, /turf/open/floor/iron/dark/diagonal, /area/centcom/central_command_areas/medical) -"Qt" = ( +"aQt" = ( /obj/structure/table/reinforced, /obj/item/storage/toolbox/electrical{ pixel_y = 8; @@ -15684,14 +16353,21 @@ /obj/item/storage/toolbox/mechanical, /turf/open/floor/iron/smooth_large, /area/centcom/central_command_areas/evacuation/ship) -"Qv" = ( +"aQu" = ( +/obj/structure/railing/wooden_fence{ + dir = 4 + }, +/obj/structure/bed/dogbed/lia, +/turf/open/floor/wood, +/area/centcom/central_command_areas/retirement_home) +"aQv" = ( /obj/machinery/light/floor/has_bulb, /obj/effect/turf_decal/siding/wood{ dir = 1 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin_hangout) -"Qw" = ( +"aQw" = ( /obj/structure/table/wood, /obj/machinery/chem_dispenser/drinks{ dir = 1 @@ -15702,12 +16378,12 @@ /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/centcom/syndicate_mothership/control) -"Qx" = ( +"aQx" = ( /turf/closed/indestructible/fakedoor{ name = "Sub-Laboratory Elevator" }, /area/centcom/syndicate_mothership/control) -"Qy" = ( +"aQy" = ( /obj/effect/turf_decal/siding/purple{ dir = 1 }, @@ -15716,7 +16392,7 @@ }, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership/expansion_chemicalwarfare) -"Qz" = ( +"aQz" = ( /obj/machinery/door/airlock/hatch{ name = "Gangway" }, @@ -15724,7 +16400,7 @@ /obj/effect/mapping_helpers/airlock/access/all/syndicate/general, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership/control) -"QA" = ( +"aQA" = ( /obj/effect/turf_decal/tile/dark/diagonal_edge, /obj/structure/table/wood/fancy/royalblue, /obj/machinery/light/neon_lining{ @@ -15733,7 +16409,7 @@ }, /turf/open/floor/iron/white/diagonal, /area/centcom/central_command_areas/hall) -"QB" = ( +"aQB" = ( /obj/structure/table/reinforced, /obj/structure/railing{ dir = 4; @@ -15756,21 +16432,21 @@ }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/evacuation/ship) -"QC" = ( +"aQC" = ( /turf/closed/indestructible/riveted, /area/centcom/tdome/observation) -"QD" = ( +"aQD" = ( /obj/item/kirbyplants{ icon_state = "plant-21" }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/evacuation/ship) -"QE" = ( +"aQE" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/ferry) -"QF" = ( +"aQF" = ( /obj/effect/turf_decal/siding/wideplating{ dir = 1 }, @@ -15782,7 +16458,10 @@ dir = 4 }, /area/centcom/syndicate_mothership/control) -"QH" = ( +"aQG" = ( +/turf/closed/indestructible/wood, +/area/centcom/central_command_areas/retirement_home) +"aQH" = ( /obj/effect/turf_decal/siding/wideplating_new/dark, /obj/effect/turf_decal/tile/neutral/full, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ @@ -15791,13 +16470,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/textured_large, /area/centcom/central_command_areas/evacuation/ship) -"QI" = ( +"aQI" = ( /obj/effect/turf_decal/siding/green{ dir = 8 }, /turf/open/floor/iron/dark/small, /area/centcom/central_command_areas/botany) -"QJ" = ( +"aQJ" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/structure/railing/wood{ dir = 4 @@ -15805,7 +16484,7 @@ /obj/structure/railing/wood, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin_hangout) -"QK" = ( +"aQK" = ( /obj/machinery/firealarm/directional/south, /obj/structure/closet/crate/bin{ name = "treat storage" @@ -15814,21 +16493,21 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/supply) -"QL" = ( +"aQL" = ( /obj/structure/chair/office/tactical, /turf/open/floor/carpet/royalblue, /area/centcom/central_command_areas/admin) -"QM" = ( +"aQM" = ( /obj/effect/turf_decal/tile/brown/anticorner/contrasted{ dir = 8 }, /turf/open/floor/iron, /area/centcom/central_command_areas/supplypod/loading/three) -"QN" = ( +"aQN" = ( /obj/machinery/rnd/production/techfab/department/service, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/botany) -"QO" = ( +"aQO" = ( /obj/effect/turf_decal/siding/wideplating/dark{ dir = 8 }, @@ -15842,23 +16521,23 @@ /obj/effect/mapping_helpers/airlock/access/all/syndicate/general, /turf/open/floor/iron/textured_large, /area/centcom/syndicate_mothership/control) -"QP" = ( +"aQP" = ( /obj/effect/heretic_rune/big, /obj/structure/chair/musical, /turf/open/floor/plating/abductor, /area/centcom/central_command_areas/admin) -"QQ" = ( +"aQQ" = ( /obj/structure/chair/wood/wings{ dir = 1 }, /turf/open/floor/carpet, /area/centcom/wizard_station) -"QR" = ( +"aQR" = ( /obj/machinery/shower/directional/east, /obj/effect/turf_decal/stripes/box, /turf/open/floor/mineral/titanium/tiled, /area/centcom/syndicate_mothership/expansion_chemicalwarfare) -"QS" = ( +"aQS" = ( /obj/effect/turf_decal/siding/dark/corner{ dir = 8 }, @@ -15867,7 +16546,7 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/admin_hangout) -"QT" = ( +"aQT" = ( /obj/structure/table/wood, /obj/item/trash/tray, /obj/item/trash/energybar, @@ -15877,7 +16556,7 @@ /obj/structure/window/reinforced/tinted, /turf/open/floor/iron/grimy, /area/centcom/central_command_areas/admin) -"QU" = ( +"aQU" = ( /obj/structure/flora/tree/pine/style_random, /obj/structure/flora/grass/both/style_random, /obj/effect/light_emitter{ @@ -15886,28 +16565,28 @@ }, /turf/open/misc/asteroid/snow/icemoon, /area/centcom/syndicate_mothership/control) -"QV" = ( +"aQV" = ( /turf/open/floor/iron/grimy, /area/centcom/central_command_areas/admin) -"QW" = ( +"aQW" = ( /obj/machinery/light/directional/east, /turf/open/floor/glass/reinforced, /area/centcom/central_command_areas/admin) -"QX" = ( +"aQX" = ( /obj/machinery/light/directional/west, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/evacuation) -"QY" = ( +"aQY" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 }, /obj/machinery/light/directional/west, /turf/open/floor/wood/large, /area/centcom/central_command_areas/hall) -"QZ" = ( +"aQZ" = ( /turf/open/floor/engine/cult, /area/centcom/wizard_station) -"Ra" = ( +"aRa" = ( /obj/machinery/button/door/indestructible{ id = "CC_firing_range_checkpoint"; name = "Checkpoint Shutters" @@ -15915,22 +16594,22 @@ /obj/structure/table/reinforced, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/firing_range_checkpoint_control) -"Rb" = ( +"aRb" = ( /obj/machinery/chem_heater/withbuffer, /turf/open/floor/mineral/titanium/tiled/yellow, /area/centcom/syndicate_mothership/expansion_chemicalwarfare) -"Rc" = ( +"aRc" = ( /obj/machinery/chem_master/condimaster, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/botany) -"Rd" = ( +"aRd" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 }, /obj/machinery/computer/rdconsole, /turf/open/floor/carpet/purple, /area/centcom/central_command_areas/admin) -"Re" = ( +"aRe" = ( /obj/machinery/light/floor/has_bulb, /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -15938,18 +16617,22 @@ /obj/machinery/chem_heater/debug, /turf/open/floor/wood/large, /area/centcom/central_command_areas/medical) -"Rf" = ( +"aRf" = ( /obj/structure/chair/sofa/corp/right{ dir = 1 }, /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood/large, /area/centcom/tdome/observation) -"Rg" = ( +"aRg" = ( /obj/item/food/meat/slab/human/mutant/slime, /turf/open/floor/grass, /area/centcom/wizard_station) -"Ri" = ( +"aRh" = ( +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron/terracotta/small, +/area/centcom/central_command_areas/retirement_home) +"aRi" = ( /obj/effect/turf_decal/siding/dark{ dir = 5 }, @@ -15958,24 +16641,24 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/supply) -"Rj" = ( +"aRj" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 }, /obj/structure/centcom_teleporter/arena, /turf/open/floor/wood/large, /area/centcom/tdome/observation) -"Rk" = ( +"aRk" = ( /obj/structure/cable, /obj/structure/marker_beacon/burgundy, /turf/open/floor/catwalk_floor, /area/centcom/central_command_areas/evacuation/ship) -"Rl" = ( +"aRl" = ( /obj/structure/table/reinforced, /obj/machinery/recharger, /turf/open/floor/carpet, /area/centcom/syndicate_mothership/control) -"Rm" = ( +"aRm" = ( /obj/effect/turf_decal/siding/dark{ dir = 9 }, @@ -15984,7 +16667,7 @@ /obj/machinery/light/floor/has_bulb, /turf/open/floor/iron/white/herringbone, /area/centcom/central_command_areas/kitchen) -"Rn" = ( +"aRn" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 1 }, @@ -15993,45 +16676,45 @@ }, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership/control) -"Ro" = ( +"aRo" = ( /obj/effect/turf_decal/siding/wood{ dir = 6 }, /turf/open/floor/wood/large, /area/centcom/tdome/observation) -"Rp" = ( +"aRp" = ( /obj/machinery/computer/communications, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/evacuation/ship) -"Rq" = ( +"aRq" = ( /obj/machinery/chem_dispenser/fullupgrade, /obj/effect/turf_decal/siding/wood{ dir = 10 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/medical) -"Rr" = ( +"aRr" = ( /obj/machinery/light/floor/has_bulb, /turf/open/floor/carpet, /area/centcom/central_command_areas/admin_hangout) -"Rs" = ( +"aRs" = ( /obj/machinery/light/directional/west, /turf/open/floor/engine/cult, /area/centcom/wizard_station) -"Rt" = ( +"aRt" = ( /obj/structure/table/reinforced, /obj/item/paper_bin, /obj/item/pen/fourcolor, /turf/open/floor/carpet/purple, /area/centcom/central_command_areas/admin) -"Ru" = ( +"aRu" = ( /obj/item/statuebust{ pixel_y = 12 }, /obj/structure/table/wood/fancy, /turf/open/floor/wood, /area/centcom/wizard_station) -"Rv" = ( +"aRv" = ( /obj/machinery/vending/boozeomat, /obj/item/reagent_containers/cup/glass/modglass/small{ pixel_y = 23; @@ -16050,7 +16733,7 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/borbop) -"Rw" = ( +"aRw" = ( /obj/structure/flora/rock/pile/style_random, /obj/effect/light_emitter{ set_cap = 1; @@ -16058,7 +16741,7 @@ }, /turf/open/misc/asteroid/snow/airless, /area/centcom/syndicate_mothership) -"Rx" = ( +"aRx" = ( /obj/structure/railing/wrestling{ dir = 8 }, @@ -16067,11 +16750,11 @@ icon_state = "boxing" }, /area/centcom/central_command_areas/hall) -"Ry" = ( +"aRy" = ( /obj/structure/table/reinforced, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/firing_range) -"Rz" = ( +"aRz" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 1 }, @@ -16090,7 +16773,7 @@ }, /turf/open/floor/wood/parquet, /area/centcom/central_command_areas/borbop) -"RA" = ( +"aRA" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 }, @@ -16099,7 +16782,7 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/hall) -"RB" = ( +"aRB" = ( /obj/effect/turf_decal/siding/thinplating_new/dark, /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 1 @@ -16115,11 +16798,11 @@ dir = 4 }, /area/centcom/syndicate_mothership/control) -"RC" = ( +"aRC" = ( /obj/machinery/light/small/directional/east, /turf/open/floor/iron/white, /area/centcom/wizard_station) -"RD" = ( +"aRD" = ( /obj/effect/turf_decal/siding/dark{ dir = 10 }, @@ -16128,12 +16811,12 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/supply) -"RE" = ( +"aRE" = ( /obj/machinery/light/floor/has_bulb, /obj/structure/flora/bush/large/style_3, /turf/open/floor/grass, /area/centcom/central_command_areas/hall) -"RF" = ( +"aRF" = ( /obj/structure/table/reinforced, /obj/item/crowbar/red, /obj/item/tank/internals/emergency_oxygen/engi, @@ -16141,7 +16824,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/briefing) -"RG" = ( +"aRG" = ( /obj/effect/turf_decal/tile/dark/diagonal_edge, /obj/machinery/light/neon_lining{ dir = 8; @@ -16153,11 +16836,11 @@ }, /turf/open/floor/iron/white/diagonal, /area/centcom/central_command_areas/hall) -"RH" = ( +"aRH" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/briefing) -"RI" = ( +"aRI" = ( /obj/machinery/oven/range, /obj/structure/sign/poster/contraband/eat{ pixel_x = -32 @@ -16165,18 +16848,18 @@ /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/centcom/syndicate_mothership/control) -"RJ" = ( +"aRJ" = ( /obj/effect/decal/cleanable/fuel_pool, /turf/open/floor/grass, /area/centcom/central_command_areas/evacuation/ship) -"RK" = ( +"aRK" = ( /obj/machinery/modular_computer/preset/id/centcom{ dir = 1; desc = "A specialized console to connect to gaming computers to be able to broadcast live. Seriously, where does Ook find this stuff?" }, /turf/open/misc/grass, /area/centcom/central_command_areas/admin) -"RL" = ( +"aRL" = ( /obj/effect/turf_decal/tile/dark/diagonal_edge, /obj/machinery/light/neon_lining{ dir = 8; @@ -16184,13 +16867,13 @@ }, /turf/open/floor/iron/white/diagonal, /area/centcom/central_command_areas/hall) -"RM" = ( +"aRM" = ( /obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/armory) -"RN" = ( +"aRN" = ( /obj/effect/turf_decal/siding/dark{ dir = 4 }, @@ -16200,15 +16883,15 @@ /obj/machinery/vending/wardrobe/chef_wardrobe, /turf/open/floor/iron/white/herringbone, /area/centcom/central_command_areas/kitchen) -"RO" = ( +"aRO" = ( /obj/structure/hedge, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/hall) -"RP" = ( +"aRP" = ( /obj/structure/flora/tree/dead/style_random, /turf/open/misc/asteroid/snow/icemoon, /area/centcom/syndicate_mothership/control) -"RQ" = ( +"aRQ" = ( /obj/structure/rack, /obj/item/katana/cursed{ desc = "A gift from your benefactors."; @@ -16216,7 +16899,7 @@ }, /turf/open/floor/catwalk_floor/iron_dark, /area/centcom/syndicate_mothership/control) -"RR" = ( +"aRR" = ( /obj/structure/lattice/catwalk, /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -16226,11 +16909,22 @@ }, /turf/open/lava/plasma/ice_moon, /area/centcom/syndicate_mothership/control) -"RT" = ( +"aRS" = ( +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/machinery/light/street_lamp{ + dir = 2; + pixel_y = 24 + }, +/obj/structure/flora/biolumi/mine, +/turf/open/floor/grass, +/area/centcom/central_command_areas/retirement_yard) +"aRT" = ( /obj/machinery/light/directional/south, /turf/open/floor/grass, /area/centcom/central_command_areas/evacuation/ship) -"RU" = ( +"aRU" = ( /obj/structure/table/reinforced, /obj/item/storage/medkit/fire{ pixel_y = 5; @@ -16242,7 +16936,7 @@ }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/medical) -"RV" = ( +"aRV" = ( /obj/structure/table/reinforced, /obj/item/restraints/handcuffs, /obj/item/radio, @@ -16251,7 +16945,7 @@ }, /turf/open/floor/iron, /area/centcom/central_command_areas/armory) -"RW" = ( +"aRW" = ( /obj/machinery/computer/mech_bay_power_console{ dir = 1 }, @@ -16260,17 +16954,17 @@ }, /turf/open/floor/mineral/titanium, /area/centcom/syndicate_mothership/control) -"RX" = ( +"aRX" = ( /obj/structure/railing/wood, /obj/effect/turf_decal/trimline/green/line, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/botany) -"RY" = ( +"aRY" = ( /obj/structure/table/reinforced, /obj/structure/sign/poster/official/moth_meth/directional/west, /turf/open/floor/iron/white/corner, /area/centcom/central_command_areas/admin) -"RZ" = ( +"aRZ" = ( /obj/structure/chair/bronze{ name = "gamer chair mk2" }, @@ -16279,11 +16973,19 @@ }, /turf/open/floor/carpet/neon/simple/white, /area/centcom/central_command_areas/admin) -"Sa" = ( +"aSa" = ( /obj/structure/flora/tree/jungle/style_3, /turf/open/floor/grass, /area/centcom/central_command_areas/evacuation) -"Sc" = ( +"aSb" = ( +/obj/structure/rack/gunrack, +/obj/effect/spawner/armory_spawn/shotguns, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/wood/large, +/area/centcom/central_command_areas/retirement_home) +"aSc" = ( /obj/structure/table/reinforced/plastitaniumglass, /obj/machinery/door/window/brigdoor/security, /obj/effect/mapping_helpers/airlock/access/any/admin/captain, @@ -16293,16 +16995,16 @@ }, /turf/open/floor/glass/reinforced, /area/centcom/central_command_areas/admin) -"Sd" = ( +"aSd" = ( /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/lattice, /turf/open/space/basic, /area/space/nearstation) -"Se" = ( +"aSe" = ( /obj/effect/turf_decal/delivery, /turf/open/floor/iron, /area/centcom/central_command_areas/supplypod/loading/two) -"Sf" = ( +"aSf" = ( /obj/effect/turf_decal/siding/dark{ dir = 4 }, @@ -16314,7 +17016,7 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/hall) -"Sg" = ( +"aSg" = ( /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 1 @@ -16326,35 +17028,35 @@ /obj/structure/fans/tiny, /turf/open/floor/mineral/titanium, /area/centcom/syndicate_mothership/control) -"Sh" = ( +"aSh" = ( /obj/effect/spawner/random/trash/garbage, /obj/effect/spawner/random/maintenance/two, /obj/machinery/recycler/deathtrap, /obj/structure/fans/tiny/invisible, /turf/open/floor/plating, /area/centcom/central_command_areas/admin) -"Si" = ( +"aSi" = ( /turf/open/floor/iron, /area/centcom/central_command_areas/supplypod/loading/two) -"Sj" = ( +"aSj" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 1 }, /obj/effect/turf_decal/siding/red, /turf/open/floor/iron/dark/textured_large, /area/centcom/syndicate_mothership/control) -"Sk" = ( +"aSk" = ( /obj/structure/table/reinforced, /obj/item/storage/medkit/regular, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/briefing) -"Sl" = ( +"aSl" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/structure/chair/sofa/corp, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/hall) -"Sm" = ( +"aSm" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 }, @@ -16373,18 +17075,18 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin) -"Sn" = ( +"aSn" = ( /obj/machinery/light/cold/directional/west, /turf/open/floor/mineral/titanium, /area/centcom/syndicate_mothership/control) -"So" = ( +"aSo" = ( /obj/structure/closet/crate/coffin/sandstonesarcophagus{ color = "#efbc1e"; name = "Tomb of Amun Set Hep" }, /turf/open/floor/vault/sandstone, /area/centcom/central_command_areas/admin) -"Sp" = ( +"aSp" = ( /obj/structure/closet/crate/freezer{ name = "meat freezer" }, @@ -16410,7 +17112,7 @@ /obj/item/food/grown/tomato, /turf/open/floor/plastic, /area/centcom/syndicate_mothership/expansion_fridgerummage) -"Sq" = ( +"aSq" = ( /obj/structure/table/reinforced, /obj/item/clipboard, /obj/item/folder/yellow, @@ -16419,28 +17121,39 @@ }, /turf/open/floor/iron, /area/centcom/central_command_areas/armory) -"Sr" = ( +"aSr" = ( /obj/effect/turf_decal/siding/thinplating_new/dark, /obj/machinery/camera/autoname/directional/south{ network = list("nukie") }, /turf/open/floor/iron/dark/textured_large, /area/centcom/syndicate_mothership/control) -"Ss" = ( +"aSs" = ( /obj/effect/turf_decal/siding/dark{ dir = 4 }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin) -"St" = ( +"aSt" = ( /obj/structure/fake_stairs/wood/directional/south, /turf/open/floor/iron/dark, /area/centcom/tdome/observation) -"Sv" = ( +"aSu" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/easel, +/obj/item/canvas/twentyfour_twentyfour{ + pixel_y = 6; + pixel_x = 2 + }, +/turf/open/floor/wood/parquet, +/area/centcom/central_command_areas/retirement_home) +"aSv" = ( /obj/effect/turf_decal/trimline/blue, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/botany) -"Sw" = ( +"aSw" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 9 }, @@ -16451,7 +17164,7 @@ /obj/item/storage/medkit/regular, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership/control) -"Sx" = ( +"aSx" = ( /obj/structure/table/glass/plasmaglass, /obj/item/reagent_containers/cup/beaker/large{ pixel_x = -5; @@ -16465,29 +17178,33 @@ /obj/item/gun/syringe/syndicate, /turf/open/floor/mineral/titanium/tiled/yellow, /area/centcom/syndicate_mothership/expansion_chemicalwarfare) -"Sz" = ( +"aSy" = ( +/obj/structure/railing/wooden_fence, +/turf/open/floor/wood, +/area/centcom/central_command_areas/retirement_home) +"aSz" = ( /obj/structure/hedge, /obj/machinery/light/floor/has_bulb, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin_hangout) -"SA" = ( +"aSA" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 1 }, /turf/open/floor/mineral/titanium, /area/centcom/syndicate_mothership/control) -"SB" = ( +"aSB" = ( /obj/machinery/atmospherics/components/binary/valve{ dir = 8 }, /turf/open/floor/mineral/titanium/tiled/yellow, /area/centcom/syndicate_mothership/expansion_bombthreat) -"SC" = ( +"aSC" = ( /obj/structure/tank_dispenser/oxygen, /obj/structure/window/reinforced/survival_pod/spawner/directional/west, /turf/open/floor/iron/smooth_large, /area/centcom/central_command_areas/evacuation/ship) -"SD" = ( +"aSD" = ( /obj/machinery/blackbox_recorder{ name = "Ook's Backups"; desc = "Huh, who would've thought Ook used tape drives to keep his data backed up safe and sound!" @@ -16495,14 +17212,14 @@ /obj/machinery/light/floor/has_bulb, /turf/open/misc/grass, /area/centcom/central_command_areas/admin) -"SE" = ( +"aSE" = ( /obj/structure/fake_stairs/stone{ dir = 1 }, /obj/structure/fans/tiny/forcefield, /turf/open/floor/stone, /area/centcom/central_command_areas/admin_hangout) -"SF" = ( +"aSF" = ( /obj/effect/turf_decal/tile/green{ dir = 4 }, @@ -16532,13 +17249,13 @@ }, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"SG" = ( +"aSG" = ( /obj/effect/turf_decal/siding/red/corner{ dir = 4 }, /turf/open/floor/iron/dark/textured_large, /area/centcom/syndicate_mothership/control) -"SH" = ( +"aSH" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/monitored{ chamber_id = "nukiebase"; desc = "Has a valve and pump attached to it. Slightly more menacing than Nanotrasen's standard."; @@ -16547,16 +17264,16 @@ }, /turf/open/floor/engine/vacuum, /area/centcom/syndicate_mothership/expansion_bombthreat) -"SI" = ( +"aSI" = ( /obj/structure/closet, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin) -"SJ" = ( +"aSJ" = ( /obj/machinery/light/directional/east, /obj/structure/flora/tree/jungle/style_3, /turf/open/floor/grass, /area/centcom/central_command_areas/hall) -"SK" = ( +"aSK" = ( /obj/structure/chair/wood{ dir = 8 }, @@ -16565,7 +17282,7 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/kitchen) -"SL" = ( +"aSL" = ( /obj/machinery/light/floor/has_bulb, /obj/structure/table/reinforced, /obj/item/storage/box/coffeepack/robusta, @@ -16587,20 +17304,20 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin_hangout) -"SM" = ( +"aSM" = ( /obj/effect/turf_decal/siding/green{ dir = 4 }, /turf/open/floor/iron/dark/small, /area/centcom/central_command_areas/botany) -"SN" = ( +"aSN" = ( /obj/structure/chair/sofa/bench/right{ dir = 4 }, /obj/effect/turf_decal/siding/thinplating_new/dark, /turf/open/floor/mineral/titanium, /area/centcom/syndicate_mothership/control) -"SO" = ( +"aSO" = ( /obj/effect/turf_decal/tile/dark/diagonal_edge, /obj/machinery/light/neon_lining{ dir = 4; @@ -16612,7 +17329,7 @@ }, /turf/open/floor/iron/white/diagonal, /area/centcom/central_command_areas/hall) -"SP" = ( +"aSP" = ( /obj/effect/turf_decal/siding/wideplating/dark, /obj/effect/turf_decal/siding/wideplating/dark{ dir = 1 @@ -16625,40 +17342,40 @@ dir = 4 }, /area/centcom/syndicate_mothership/control) -"SQ" = ( +"aSQ" = ( /obj/item/reagent_containers/syringe/contraband/fentanyl{ pixel_x = 2; pixel_y = 6 }, /turf/closed/indestructible/riveted, /area/centcom/central_command_areas/admin) -"SR" = ( +"aSR" = ( /turf/open/floor/circuit/green, /area/centcom/central_command_areas/briefing) -"SS" = ( +"aSS" = ( /obj/effect/turf_decal/tile/brown/anticorner/contrasted{ dir = 8 }, /turf/open/floor/iron, /area/centcom/central_command_areas/supplypod/loading/one) -"ST" = ( +"aST" = ( /obj/machinery/door/poddoor/ert, /obj/effect/turf_decal/delivery, /turf/open/floor/iron, /area/centcom/central_command_areas/armory) -"SU" = ( +"aSU" = ( /obj/structure/table/wood, /obj/machinery/computer/security/wooden_tv, /turf/open/floor/carpet/purple, /area/centcom/central_command_areas/admin) -"SV" = ( +"aSV" = ( /obj/structure/chair/comfy/lime{ dir = 8 }, /obj/structure/fans/tiny/invisible, /turf/open/floor/carpet/green, /area/centcom/central_command_areas/admin) -"SW" = ( +"aSW" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 1 }, @@ -16671,17 +17388,17 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/borbop) -"SX" = ( +"aSX" = ( /obj/machinery/computer/shuttle, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/evacuation/ship) -"SY" = ( +"aSY" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/structure/table/reinforced, /obj/machinery/chem_dispenser/drinks/beer, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/borbop) -"SZ" = ( +"aSZ" = ( /obj/structure/table/reinforced/plastitaniumglass, /obj/structure/window/reinforced/spawner/directional, /obj/item/clothing/glasses/sunglasses/chemical{ @@ -16692,24 +17409,24 @@ }, /turf/open/floor/glass/reinforced/plasma, /area/centcom/central_command_areas/admin) -"Ta" = ( +"aTa" = ( /turf/open/floor/iron/white, /area/centcom/wizard_station) -"Tb" = ( +"aTb" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/evacuation/ship) -"Tc" = ( +"aTc" = ( /obj/effect/turf_decal/tile/brown/half/contrasted, /turf/open/floor/iron, /area/centcom/central_command_areas/supplypod/loading/two) -"Td" = ( +"aTd" = ( /turf/open/floor/iron, /area/centcom/central_command_areas/supplypod/supplypod_temp_holding) -"Te" = ( +"aTe" = ( /obj/structure/closet/crate/engineering, /obj/item/stack/sheet/mineral/plasma{ amount = 10 @@ -16720,41 +17437,41 @@ /obj/item/stack/sheet/mineral/plasma/five, /turf/open/floor/iron/smooth_edge, /area/centcom/central_command_areas/evacuation/ship) -"Tf" = ( +"aTf" = ( /obj/structure/chair/bronze{ dir = 1 }, /turf/open/floor/glass/reinforced, /area/centcom/central_command_areas/admin) -"Tg" = ( +"aTg" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/evacuation) -"Th" = ( +"aTh" = ( /obj/machinery/vending/snack, /obj/effect/turf_decal/siding/wood{ dir = 5 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/kitchen) -"Ti" = ( +"aTi" = ( /obj/structure/fake_stairs/wood/directional/east, /turf/open/floor/wood/large, /area/centcom/central_command_areas/hall) -"Tj" = ( +"aTj" = ( /obj/structure/table/wood, /obj/machinery/computer/records/medical/laptop, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/ferry) -"Tk" = ( +"aTk" = ( /obj/structure/table/reinforced, /obj/effect/spawner/random/bureaucracy/paper, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"Tl" = ( +"aTl" = ( /obj/effect/turf_decal/siding/blue{ dir = 5 }, @@ -16762,11 +17479,11 @@ /obj/machinery/chem_heater/debug, /turf/open/floor/iron/dark/diagonal, /area/centcom/central_command_areas/medical) -"Tm" = ( +"aTm" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet/red, /area/centcom/central_command_areas/evacuation/ship) -"Tn" = ( +"aTn" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 1 }, @@ -16775,37 +17492,82 @@ }, /turf/open/floor/mineral/titanium, /area/centcom/syndicate_mothership/control) -"Tp" = ( +"aTo" = ( +/obj/structure/rack/wooden, +/obj/item/perfume/amber{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/item/perfume/cologne{ + pixel_x = -4; + pixel_y = 10 + }, +/obj/item/perfume/wood{ + pixel_y = 10 + }, +/obj/item/perfume/mint{ + pixel_x = 4; + pixel_y = 10 + }, +/obj/item/perfume/cherry{ + pixel_x = -8; + pixel_y = -5 + }, +/obj/item/perfume/jasmine{ + pixel_x = -4; + pixel_y = -5 + }, +/obj/item/perfume/pear{ + pixel_y = -5 + }, +/obj/item/perfume/rose{ + pixel_x = 4; + pixel_y = -5 + }, +/obj/item/perfume/vanilla{ + pixel_x = 8; + pixel_y = 10 + }, +/obj/item/perfume/strawberry{ + pixel_x = 8; + pixel_y = -5 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/carpet/orange, +/area/centcom/central_command_areas/retirement_home) +"aTp" = ( /obj/machinery/light/floor/has_bulb, /obj/effect/turf_decal/siding/wood{ dir = 5 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin_hangout) -"Tq" = ( +"aTq" = ( /obj/structure/filingcabinet/filingcabinet, /obj/machinery/status_display/evac/directional/south, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/supply) -"Tr" = ( +"aTr" = ( /obj/structure/hedge, /obj/effect/turf_decal/siding/wood/corner{ dir = 4 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/hall) -"Ts" = ( +"aTs" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ dir = 4 }, /turf/open/floor/plating/snowed/icemoon, /area/centcom/syndicate_mothership/control) -"Tt" = ( +"aTt" = ( /turf/open/floor/mineral/titanium/tiled/yellow, /area/centcom/syndicate_mothership/control) -"Tu" = ( +"aTu" = ( /obj/effect/turf_decal/siding/wideplating_new/dark{ dir = 4 }, @@ -16817,7 +17579,7 @@ /obj/machinery/light/directional/west, /turf/open/floor/iron/dark/textured_large, /area/centcom/central_command_areas/evacuation/ship) -"Tv" = ( +"aTv" = ( /obj/structure/table/wood, /obj/structure/window/spawner/directional/south, /obj/item/storage/fancy/donut_box, @@ -16827,7 +17589,7 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood/tile, /area/centcom/central_command_areas/evacuation/ship) -"Tw" = ( +"aTw" = ( /obj/effect/turf_decal/siding/dark{ dir = 4 }, @@ -16836,11 +17598,11 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/hall) -"Tx" = ( +"aTx" = ( /obj/machinery/modular_computer/preset/id/centcom, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin) -"Ty" = ( +"aTy" = ( /obj/item/storage/dice{ pixel_y = 14; pixel_x = 6 @@ -16866,38 +17628,47 @@ /obj/structure/table, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/arcade) -"Tz" = ( +"aTz" = ( /obj/effect/turf_decal/tile/brown/half/contrasted{ dir = 4 }, /turf/open/floor/iron, /area/centcom/central_command_areas/supplypod/loading/three) -"TA" = ( +"aTA" = ( /obj/structure/hedge, /obj/structure/stone_tile/slab, /turf/open/misc/snow/actually_safe, /area/centcom/central_command_areas/admin) -"TB" = ( +"aTB" = ( /obj/structure/table/wood, /obj/item/storage/box/donkpockets, /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/centcom/syndicate_mothership/control) -"TC" = ( +"aTC" = ( /obj/structure/curtain/bounty, /turf/closed/indestructible/fakeglass, /area/centcom/central_command_areas/hall) -"TE" = ( +"aTD" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 8 + }, +/obj/structure/railing/wooden_fencing{ + pixel_y = 16 + }, +/turf/open/floor/grass, +/area/centcom/central_command_areas/retirement_yard) +"aTE" = ( /obj/structure/chair/comfy/brown{ color = "#596479"; dir = 4 }, /turf/open/floor/iron/grimy, /area/centcom/central_command_areas/briefing) -"TF" = ( +"aTF" = ( /turf/open/floor/wood/large, /area/centcom/central_command_areas/hall) -"TG" = ( +"aTG" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 }, @@ -16910,37 +17681,37 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/borbop) -"TH" = ( +"aTH" = ( /obj/effect/turf_decal/siding/purple{ dir = 1 }, /obj/machinery/light/cold/directional/north, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership/expansion_chemicalwarfare) -"TI" = ( +"aTI" = ( /obj/structure/table/reinforced, /obj/item/paper_bin, /obj/item/pen, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/briefing) -"TJ" = ( +"aTJ" = ( /obj/effect/turf_decal/siding/dark{ dir = 9 }, /obj/effect/turf_decal/siding/dark/corner, /turf/open/floor/iron/dark/corner, /area/centcom/central_command_areas/hall) -"TK" = ( +"aTK" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"TL" = ( +"aTL" = ( /obj/machinery/growing/soil, /turf/open/misc/snow/actually_safe, /area/centcom/central_command_areas/admin) -"TM" = ( +"aTM" = ( /obj/effect/turf_decal/siding/wideplating_new/dark{ dir = 4 }, @@ -16954,12 +17725,12 @@ /obj/machinery/light/directional/west, /turf/open/floor/iron/dark/textured_large, /area/centcom/central_command_areas/evacuation/ship) -"TN" = ( +"aTN" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/machinery/vending/wardrobe/gene_wardrobe, /turf/open/floor/iron/dark, /area/centcom/tdome/observation) -"TO" = ( +"aTO" = ( /obj/machinery/keycard_auth/directional/south, /obj/structure/table/reinforced, /obj/item/stack/package_wrap, @@ -16968,17 +17739,17 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/supply) -"TP" = ( +"aTP" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 8 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/borbop) -"TQ" = ( +"aTQ" = ( /obj/structure/window/plasma/spawner/directional/north, /turf/open/floor/carpet/royalblue, /area/centcom/central_command_areas/admin) -"TR" = ( +"aTR" = ( /obj/machinery/light/floor/has_bulb, /obj/structure/hedge, /obj/effect/turf_decal/siding/dark{ @@ -16989,38 +17760,38 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/borbop) -"TS" = ( +"aTS" = ( /obj/effect/turf_decal/siding/wood{ dir = 10 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/evacuation) -"TT" = ( +"aTT" = ( /obj/structure/bed, /obj/item/bedsheet/wiz, /turf/open/floor/carpet, /area/centcom/wizard_station) -"TU" = ( +"aTU" = ( /obj/effect/turf_decal/siding/wood{ dir = 6 }, /obj/machinery/vending/imported/mothic, /turf/open/floor/wood/large, /area/centcom/central_command_areas/borbop) -"TV" = ( +"aTV" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 }, /turf/open/floor/wood/large, /area/centcom/tdome/observation) -"TW" = ( +"aTW" = ( /obj/structure/hedge, /obj/effect/turf_decal/siding/wood/corner{ dir = 1 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/hall) -"TX" = ( +"aTX" = ( /obj/effect/turf_decal/bot, /obj/effect/spawner/random/contraband/armory, /obj/structure/closet/crate/secure/gear, @@ -17032,16 +17803,16 @@ /obj/effect/spawner/random/exotic/antag_gear, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"TY" = ( +"aTY" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/closed/indestructible/riveted, /area/centcom/central_command_areas/ferry) -"TZ" = ( +"aTZ" = ( /obj/structure/chair/office, /obj/structure/window/plasma/spawner/directional/north, /turf/open/indestructible/hotelwood, /area/centcom/central_command_areas/admin) -"Ua" = ( +"aUa" = ( /obj/structure/table/reinforced/titaniumglass, /obj/structure/window/reinforced/survival_pod/spawner/directional{ dir = 1 @@ -17069,28 +17840,28 @@ }, /turf/open/floor/carpet/green, /area/centcom/central_command_areas/admin) -"Ub" = ( +"aUb" = ( /obj/machinery/vending/tool, /turf/open/floor/mineral/titanium/yellow, /area/centcom/syndicate_mothership/control) -"Uc" = ( +"aUc" = ( /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin_hangout) -"Ud" = ( +"aUd" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/heat_exchanging/simple{ dir = 9 }, /turf/open/space/basic, /area/space/nearstation) -"Ue" = ( +"aUe" = ( /obj/structure/chair/office/light{ dir = 4 }, /turf/open/floor/mineral/plastitanium/red, /area/centcom/syndicate_mothership/expansion_bioterrorism) -"Uf" = ( +"aUf" = ( /obj/effect/turf_decal/siding/dark{ dir = 8 }, @@ -17098,25 +17869,25 @@ /obj/machinery/light/directional/west, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/hall) -"Ug" = ( +"aUg" = ( /obj/structure/closet/crate/bin{ name = "treat storage" }, /turf/open/floor/mineral/titanium/white, /area/centcom/central_command_areas/admin) -"Uh" = ( +"aUh" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin_hangout) -"Ui" = ( +"aUi" = ( /obj/machinery/light/small/directional/east, /turf/open/floor/carpet, /area/centcom/wizard_station) -"Uj" = ( +"aUj" = ( /obj/structure/chair/sofa/corp/right, /turf/open/floor/carpet, /area/centcom/central_command_areas/kitchen) -"Uk" = ( +"aUk" = ( /obj/effect/turf_decal/siding/dark{ dir = 4 }, @@ -17125,47 +17896,47 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/admin_hangout) -"Ul" = ( +"aUl" = ( /obj/structure/table/wood/fancy, /obj/item/radio/headset, /turf/open/floor/wood, /area/centcom/wizard_station) -"Um" = ( +"aUm" = ( /obj/structure/curtain/cloth/fancy, /turf/open/floor/iron/dark/textured_half, /area/centcom/central_command_areas/arcade) -"Un" = ( +"aUn" = ( /obj/structure/chair/pew/right{ dir = 4 }, /turf/open/floor/iron/dark/textured, /area/centcom/central_command_areas/arcade) -"Uo" = ( +"aUo" = ( /obj/structure/flora/grass/brown/style_random, /turf/open/misc/snow/actually_safe, /area/centcom/central_command_areas/admin) -"Up" = ( +"aUp" = ( /obj/effect/turf_decal/siding/wood, /obj/machinery/light/neon_lining{ icon_state = "pink2_1" }, /turf/open/floor/wood/parquet, /area/centcom/central_command_areas/borbop) -"Uq" = ( +"aUq" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/status_display/ai/directional/south, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/supply) -"Ur" = ( +"aUr" = ( /obj/machinery/light/small/directional/west, /turf/open/floor/carpet, /area/centcom/wizard_station) -"Us" = ( +"aUs" = ( /obj/effect/turf_decal/stripes/box, /obj/structure/closet/emcloset, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership) -"Ut" = ( +"aUt" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 8 }, @@ -17181,14 +17952,14 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/borbop) -"Uu" = ( +"aUu" = ( /obj/item/storage/box/coffeepack/robusta, /obj/item/storage/box/coffeepack/robusta, /obj/item/reagent_containers/cup/coffeepot/bluespace, /obj/item/reagent_containers/cup/coffeepot/bluespace, /turf/open/floor/carpet/royalblue, /area/centcom/central_command_areas/admin) -"Uv" = ( +"aUv" = ( /obj/structure/sign{ name = "wall"; icon = 'monkestation/icons/turf/walls/reinforced_wall.dmi'; @@ -17198,62 +17969,66 @@ }, /turf/open/space/basic, /area/space) -"Uw" = ( +"aUw" = ( /obj/machinery/light/cold/directional/west, /turf/open/floor/iron/dark/textured_large, /area/centcom/syndicate_mothership/control) -"Ux" = ( +"aUx" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 1 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/ghost_spawn) -"Uz" = ( +"aUy" = ( +/obj/structure/flora/biolumi/flower, +/turf/open/floor/grass, +/area/centcom/central_command_areas/retirement_yard) +"aUz" = ( /turf/closed/indestructible/fakeglass, /area/centcom/central_command_areas/hall) -"UA" = ( +"aUA" = ( /obj/effect/landmark/navigate_destination/centcom/medical, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/medical) -"UB" = ( +"aUB" = ( /obj/structure/flora/bush/flowers_yw/style_random, /turf/open/floor/grass, /area/centcom/central_command_areas/hall) -"UC" = ( +"aUC" = ( /obj/structure/chair/sofa/corp{ dir = 1 }, /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood/large, /area/centcom/tdome/observation) -"UD" = ( +"aUD" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/siding/red/corner, /obj/item/folder/red, /obj/item/pen/red, /turf/open/floor/iron/dark/textured_large, /area/centcom/syndicate_mothership/control) -"UE" = ( +"aUE" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, /obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, /turf/closed/indestructible/syndicate, /area/centcom/syndicate_mothership/control) -"UF" = ( +"aUF" = ( /obj/machinery/growing/tray, /obj/effect/turf_decal/trimline/green/line{ dir = 9 }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/botany) -"UG" = ( +"aUG" = ( /obj/structure/chair/sofa/corp/left{ dir = 8 }, /obj/effect/turf_decal/tile/dark/opposingcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin_hangout) -"UH" = ( +"aUH" = ( /obj/structure/table/reinforced, /obj/item/stamp/centcom{ pixel_x = -7; @@ -17271,7 +18046,7 @@ dir = 1 }, /area/centcom/central_command_areas/admin) -"UI" = ( +"aUI" = ( /obj/effect/turf_decal/siding/green{ dir = 4 }, @@ -17281,25 +18056,25 @@ /obj/effect/turf_decal/tile/dark_green/diagonal_centre, /turf/open/floor/iron/dark/diagonal, /area/centcom/central_command_areas/botany) -"UJ" = ( +"aUJ" = ( /obj/structure/closet/cardboard, /obj/item/banhammer, /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, /area/centcom/wizard_station) -"UK" = ( +"aUK" = ( /obj/machinery/computer/operating{ dir = 4 }, /obj/machinery/light/floor/has_bulb, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/medical) -"UL" = ( +"aUL" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/machinery/vending/wardrobe/medi_wardrobe, /turf/open/floor/iron/dark, /area/centcom/tdome/observation) -"UM" = ( +"aUM" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 10 }, @@ -17310,12 +18085,12 @@ }, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership/control) -"UN" = ( +"aUN" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/machinery/door/airlock/centcom, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/kitchen) -"UO" = ( +"aUO" = ( /obj/structure/table/wood, /obj/item/clothing/head/wizard/tape, /obj/item/clothing/suit/wizrobe/tape, @@ -17323,7 +18098,7 @@ /obj/item/stack/sticky_tape/super, /turf/open/floor/engine/cult, /area/centcom/wizard_station) -"UP" = ( +"aUP" = ( /obj/effect/turf_decal/siding/wideplating, /obj/effect/turf_decal/siding/wideplating{ dir = 1 @@ -17337,21 +18112,21 @@ /obj/effect/mapping_helpers/airlock/access/all/syndicate/general, /turf/open/floor/iron/dark/textured_half, /area/centcom/syndicate_mothership/control) -"UQ" = ( +"aUQ" = ( /obj/structure/sign/poster/contraband/moffuchis_pizza{ pixel_x = -32 }, /turf/open/floor/mineral/titanium, /area/centcom/syndicate_mothership/control) -"UR" = ( +"aUR" = ( /obj/structure/training_machine, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/firing_range) -"US" = ( +"aUS" = ( /obj/structure/window/plasma/spawner/directional/north, /turf/open/indestructible/hotelwood, /area/centcom/central_command_areas/admin) -"UT" = ( +"aUT" = ( /obj/effect/turf_decal/bot, /obj/effect/spawner/random/contraband/armory, /obj/effect/spawner/random/contraband/armory, @@ -17364,12 +18139,12 @@ /obj/effect/spawner/random/exotic/antag_gear, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"UU" = ( +"aUU" = ( /obj/structure/table/reinforced, /obj/item/paper_bin/carbon, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/firing_range_checkpoint_control) -"UV" = ( +"aUV" = ( /obj/structure/table/sandstone{ color = "#efbc1e" }, @@ -17377,7 +18152,15 @@ color = "#cc9439" }, /area/centcom/central_command_areas/admin) -"UX" = ( +"aUW" = ( +/obj/structure/bed/double, +/obj/item/bedsheet/centcom/double, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/centcom/central_command_areas/retirement_home) +"aUX" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 }, @@ -17387,10 +18170,10 @@ /obj/machinery/light/cold/directional/east, /turf/open/floor/mineral/titanium/tiled/yellow, /area/centcom/syndicate_mothership/expansion_bombthreat) -"UY" = ( +"aUY" = ( /turf/open/floor/iron/dark/diagonal, /area/centcom/central_command_areas/medical) -"UZ" = ( +"aUZ" = ( /obj/structure/table/reinforced, /obj/machinery/recharger{ pixel_y = 4 @@ -17398,42 +18181,42 @@ /obj/machinery/light/directional/south, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/firing_range) -"Va" = ( +"aVa" = ( /obj/machinery/fishing_portal_generator, /turf/open/floor/carpet/neon/simple/cyan, /area/centcom/central_command_areas/admin) -"Vb" = ( +"aVb" = ( /obj/structure/closet/crate/bin{ name = "treat storage" }, /obj/structure/light_prism, /turf/open/floor/plating/abductor, /area/centcom/central_command_areas/admin) -"Vc" = ( +"aVc" = ( /obj/structure/table/reinforced, /obj/item/flashlight/lamp, /obj/item/reagent_containers/cup/glass/mug/nanotrasen, /turf/open/floor/carpet/purple, /area/centcom/central_command_areas/admin) -"Vd" = ( +"aVd" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 1 }, /turf/open/floor/mineral/plastitanium/red, /area/centcom/syndicate_mothership/expansion_bioterrorism) -"Ve" = ( +"aVe" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 5 }, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership/control) -"Vf" = ( +"aVf" = ( /obj/effect/turf_decal/siding/dark{ dir = 9 }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/admin_hangout) -"Vg" = ( +"aVg" = ( /obj/structure/rack, /obj/machinery/light/cold/directional/west, /obj/effect/turf_decal/siding/thinplating_new/dark{ @@ -17461,7 +18244,7 @@ /obj/item/melee/powerfist, /turf/open/floor/mineral/plastitanium/red, /area/centcom/syndicate_mothership/expansion_bombthreat) -"Vh" = ( +"aVh" = ( /obj/structure/table/reinforced, /obj/item/storage/backpack/duffelbag/med/surgery{ pixel_y = 10; @@ -17474,7 +18257,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron/white, /area/centcom/central_command_areas/evacuation/ship) -"Vi" = ( +"aVi" = ( /obj/structure/table/reinforced/plasmarglass, /obj/item/paper_bin{ pixel_x = -2; @@ -17482,18 +18265,18 @@ }, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership) -"Vj" = ( +"aVj" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/machinery/vending/clothing, /turf/open/floor/iron/dark, /area/centcom/tdome/observation) -"Vk" = ( +"aVk" = ( /obj/effect/turf_decal/tile/brown/half/contrasted{ dir = 4 }, /turf/open/floor/iron, /area/centcom/central_command_areas/supplypod/loading/two) -"Vl" = ( +"aVl" = ( /obj/effect/turf_decal/siding/dark{ dir = 5 }, @@ -17505,17 +18288,20 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/hall) -"Vm" = ( +"aVm" = ( /obj/structure/table/reinforced, /obj/item/papercutter, /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/centcom/syndicate_mothership/control) -"Vn" = ( +"aVn" = ( /obj/effect/turf_decal/delivery, /turf/open/floor/iron, /area/centcom/central_command_areas/supplypod/loading/three) -"Vp" = ( +"aVo" = ( +/turf/open/floor/wood/parquet, +/area/centcom/central_command_areas/retirement_home) +"aVp" = ( /obj/effect/turf_decal/tile/dark/diagonal_edge, /obj/structure/table/wood/fancy/royalblue, /obj/machinery/light/neon_lining{ @@ -17529,18 +18315,18 @@ /obj/structure/mannequin, /turf/open/floor/iron/white/diagonal, /area/centcom/central_command_areas/hall) -"Vq" = ( +"aVq" = ( /obj/structure/fence/cut/medium{ dir = 4 }, /turf/open/misc/asteroid/snow/airless, /area/centcom/syndicate_mothership) -"Vr" = ( +"aVr" = ( /obj/structure/table/reinforced, /obj/item/storage/box/material, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/medical) -"Vs" = ( +"aVs" = ( /obj/effect/turf_decal/tile/dark/diagonal_edge, /obj/structure/table/wood/fancy/royalblue, /obj/effect/spawner/random/decoration/statue{ @@ -17556,7 +18342,7 @@ }, /turf/open/floor/iron/white/diagonal, /area/centcom/central_command_areas/hall) -"Vt" = ( +"aVt" = ( /obj/machinery/light/cold/directional/east, /obj/machinery/vending/snack/teal, /obj/structure/cable, @@ -17565,7 +18351,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, /turf/open/floor/catwalk_floor/titanium, /area/centcom/syndicate_mothership/control) -"Vu" = ( +"aVu" = ( /obj/structure/closet/secure_closet/ert_med, /obj/machinery/vending/wallmed/directional/south{ use_power = 0 @@ -17575,7 +18361,7 @@ }, /turf/open/floor/iron, /area/centcom/central_command_areas/armory) -"Vv" = ( +"aVv" = ( /obj/effect/turf_decal/siding/wideplating_new/dark{ dir = 4 }, @@ -17592,14 +18378,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark/textured_large, /area/centcom/central_command_areas/evacuation/ship) -"Vw" = ( +"aVw" = ( /obj/machinery/light/directional/south, /obj/structure/filingcabinet/chestdrawer, /obj/machinery/status_display/evac/directional/south, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/supply) -"Vx" = ( +"aVx" = ( /obj/effect/turf_decal/siding/dark{ dir = 1 }, @@ -17607,13 +18393,13 @@ /obj/machinery/light/directional/south, /turf/open/floor/iron/white/herringbone, /area/centcom/central_command_areas/kitchen) -"Vy" = ( +"aVy" = ( /obj/effect/turf_decal/siding/green{ dir = 6 }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/botany) -"Vz" = ( +"aVz" = ( /obj/effect/turf_decal/siding/dark{ dir = 4 }, @@ -17623,14 +18409,14 @@ /obj/machinery/vending/dinnerware, /turf/open/floor/iron/white/herringbone, /area/centcom/central_command_areas/kitchen) -"VA" = ( +"aVA" = ( /obj/machinery/door/airlock/centcom{ name = "Brad Lods 'Office'" }, /obj/effect/mapping_helpers/airlock/access/any/admin/captain, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin) -"VB" = ( +"aVB" = ( /obj/structure/chair/sofa/bench/right{ dir = 4 }, @@ -17640,12 +18426,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, /turf/open/floor/catwalk_floor/titanium, /area/centcom/syndicate_mothership/control) -"VC" = ( +"aVC" = ( /turf/open/floor/iron/dark/textured_half{ dir = 4 }, /area/centcom/syndicate_mothership/control) -"VD" = ( +"aVD" = ( /obj/structure/sign/poster/official/no_erp/directional/east, /obj/machinery/door/window{ dir = 1 @@ -17653,7 +18439,7 @@ /obj/effect/mapping_helpers/airlock/access/any/admin/captain, /turf/open/floor/iron/grimy, /area/centcom/central_command_areas/admin) -"VE" = ( +"aVE" = ( /obj/structure/table/reinforced, /obj/item/gun/ballistic/automatic/wt550, /obj/item/flashlight/seclite, @@ -17661,16 +18447,16 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"VF" = ( +"aVF" = ( /obj/effect/turf_decal/siding/wood{ dir = 6 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/borbop) -"VG" = ( +"aVG" = ( /turf/closed/indestructible/hive, /area/station/hive/four) -"VH" = ( +"aVH" = ( /obj/effect/turf_decal/siding/wood{ dir = 5 }, @@ -17680,25 +18466,25 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/borbop) -"VI" = ( +"aVI" = ( /obj/machinery/light/floor/has_bulb, /turf/open/floor/mineral/titanium/purple, /area/centcom/central_command_areas/admin) -"VJ" = ( +"aVJ" = ( /obj/structure/window/plasma/spawner/directional/east, /obj/machinery/photocopier/gratis, /turf/open/floor/carpet/royalblue, /area/centcom/central_command_areas/admin) -"VK" = ( +"aVK" = ( /turf/open/floor/mineral/titanium, /area/centcom/syndicate_mothership/control) -"VL" = ( +"aVL" = ( /obj/machinery/modular_computer/preset/id/centcom{ dir = 1 }, /turf/open/floor/iron/grimy, /area/centcom/central_command_areas/briefing) -"VM" = ( +"aVM" = ( /obj/structure/closet/secure_closet/ert_sec, /obj/structure/sign/directions/security{ dir = 1; @@ -17710,32 +18496,32 @@ /obj/machinery/status_display/evac/directional/east, /turf/open/floor/iron, /area/centcom/central_command_areas/armory) -"VN" = ( +"aVN" = ( /obj/structure/fence/corner{ dir = 6 }, /turf/open/misc/asteroid/snow/airless, /area/centcom/syndicate_mothership) -"VO" = ( +"aVO" = ( /obj/machinery/door/poddoor/ert, /obj/effect/turf_decal/delivery, /obj/structure/cable, /turf/open/floor/iron, /area/centcom/central_command_areas/armory) -"VP" = ( +"aVP" = ( /obj/effect/turf_decal/tile/brown/anticorner/contrasted, /turf/open/floor/iron, /area/centcom/central_command_areas/supplypod/loading/four) -"VQ" = ( +"aVQ" = ( /obj/structure/flora/tree/pine/style_random, /turf/open/misc/snow/actually_safe, /area/centcom/central_command_areas/admin) -"VR" = ( +"aVR" = ( /obj/machinery/light/directional/west, /obj/structure/hedge, /turf/open/floor/carpet, /area/centcom/central_command_areas/admin) -"VS" = ( +"aVS" = ( /obj/structure/railing/wood, /obj/structure/railing/wood{ dir = 4 @@ -17743,16 +18529,16 @@ /obj/structure/flora/bush/flowers_br/style_random, /turf/open/floor/grass, /area/centcom/central_command_areas/borbop) -"VT" = ( +"aVT" = ( /obj/structure/chair/stool/directional/north, /obj/structure/extinguisher_cabinet/directional/south, /turf/open/floor/wood/tile, /area/centcom/syndicate_mothership/control) -"VU" = ( +"aVU" = ( /obj/structure/chair/comfy/carp, /turf/open/floor/glass/reinforced, /area/centcom/central_command_areas/admin) -"VV" = ( +"aVV" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 }, @@ -17761,7 +18547,11 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin_hangout) -"VX" = ( +"aVW" = ( +/obj/effect/turf_decal/siding/white, +/turf/open/misc/dirt, +/area/centcom/central_command_areas/retirement_yard) +"aVX" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 8 }, @@ -17779,7 +18569,7 @@ }, /turf/open/floor/wood/parquet, /area/centcom/central_command_areas/borbop) -"VY" = ( +"aVY" = ( /obj/item/nullrod/egyptian{ name = "Staff of Anubis" }, @@ -17790,7 +18580,7 @@ color = "#cc9439" }, /area/centcom/central_command_areas/admin) -"VZ" = ( +"aVZ" = ( /obj/structure/closet/secure_closet/ert_med, /obj/structure/sign/directions/medical{ dir = 1; @@ -17801,16 +18591,16 @@ }, /turf/open/floor/iron, /area/centcom/central_command_areas/armory) -"Wa" = ( +"aWa" = ( /obj/machinery/sleeper/self_control{ dir = 4 }, /turf/open/floor/mineral/titanium/tiled/white, /area/centcom/central_command_areas/admin) -"Wb" = ( +"aWb" = ( /turf/open/floor/wood/large, /area/centcom/tdome/observation) -"Wc" = ( +"aWc" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 4 }, @@ -17819,14 +18609,14 @@ }, /turf/open/floor/mineral/plastitanium/red, /area/centcom/syndicate_mothership/expansion_bombthreat) -"Wd" = ( +"aWd" = ( /obj/effect/light_emitter{ set_cap = 1; set_luminosity = 4 }, /turf/closed/indestructible/rock/snow, /area/centcom/syndicate_mothership) -"We" = ( +"aWe" = ( /obj/structure/railing{ dir = 4 }, @@ -17834,7 +18624,7 @@ initial_gas_mix = "TEMP=2.7" }, /area/centcom/syndicate_mothership) -"Wf" = ( +"aWf" = ( /obj/structure/railing/wood{ dir = 8 }, @@ -17843,42 +18633,49 @@ /mob/living/basic/cow, /turf/open/floor/grass, /area/centcom/central_command_areas/hall) -"Wg" = ( +"aWg" = ( /obj/effect/turf_decal/delivery, /turf/open/indestructible/event/plating, /area/centcom/tdome/arena/actual) -"Wh" = ( +"aWh" = ( /obj/effect/turf_decal/delivery, /obj/structure/fake_stairs/wood/directional/east, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"Wi" = ( +"aWi" = ( /obj/structure/hedge, /obj/effect/turf_decal/siding/wood{ dir = 1 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/botany) -"Wj" = ( +"aWj" = ( /obj/structure/fake_stairs/wood/directional/east, /obj/structure/railing/wood, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/hall) -"Wk" = ( +"aWk" = ( /obj/structure/table/reinforced/plastitaniumglass, /obj/machinery/chem_dispenser/drinks/fullupgrade{ dir = 8 }, /turf/open/floor/carpet/executive, /area/centcom/central_command_areas/admin) -"Wm" = ( +"aWl" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 9 + }, +/obj/effect/turf_decal/siding/white, +/turf/open/floor/grass, +/area/centcom/central_command_areas/retirement_yard) +"aWm" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 4 }, /obj/structure/chair/office/light, /turf/open/floor/mineral/plastitanium/red, /area/centcom/syndicate_mothership/expansion_bombthreat) -"Wn" = ( +"aWn" = ( /obj/effect/turf_decal/siding/purple{ dir = 1 }, @@ -17890,7 +18687,7 @@ }, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership/expansion_chemicalwarfare) -"Wo" = ( +"aWo" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/mapping_helpers/airlock/access/any/supply/general, /obj/effect/mapping_helpers/airlock/access/any/admin/general, @@ -17899,7 +18696,7 @@ }, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"Wp" = ( +"aWp" = ( /obj/structure/table/wood/poker, /obj/machinery/light/warm/directional/north, /obj/item/reagent_containers/cup/glass/bottle/whiskey{ @@ -17925,7 +18722,10 @@ /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/centcom/syndicate_mothership/control) -"Wr" = ( +"aWq" = ( +/turf/open/floor/wood, +/area/centcom/central_command_areas/retirement_home) +"aWr" = ( /obj/effect/turf_decal/siding/wood{ dir = 6 }, @@ -17934,22 +18734,22 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/kitchen) -"Ws" = ( +"aWs" = ( /obj/effect/turf_decal/siding/dark{ dir = 8 }, /obj/structure/sink/kitchen/directional/east, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/hall) -"Wt" = ( +"aWt" = ( /obj/effect/turf_decal/tile/brown/half/contrasted, /turf/open/floor/iron, /area/centcom/central_command_areas/supplypod/loading/four) -"Wu" = ( +"aWu" = ( /obj/machinery/light/floor/has_bulb, /turf/open/floor/carpet/neon/simple/cyan, /area/centcom/central_command_areas/admin) -"Wv" = ( +"aWv" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 }, @@ -17964,22 +18764,22 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/medical) -"Ww" = ( +"aWw" = ( /mob/living/basic/slime, /turf/open/floor/circuit/red/off, /area/centcom/syndicate_mothership/expansion_bioterrorism) -"Wx" = ( +"aWx" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/botany) -"Wy" = ( +"aWy" = ( /obj/structure/chair/office, /obj/effect/landmark/ert_spawn, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/briefing) -"Wz" = ( +"aWz" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 5 }, @@ -17989,24 +18789,24 @@ /obj/machinery/biogenerator, /turf/open/floor/mineral/plastitanium/red, /area/centcom/syndicate_mothership/expansion_bioterrorism) -"WA" = ( +"aWA" = ( /obj/structure/flora/grass/both/style_random, /turf/open/misc/asteroid/snow/icemoon, /area/centcom/syndicate_mothership/control) -"WB" = ( +"aWB" = ( /turf/open/floor/iron/dark/small, /area/centcom/central_command_areas/botany) -"WC" = ( +"aWC" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 1 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/botany) -"WD" = ( +"aWD" = ( /obj/structure/destructible/cult/item_dispenser/archives/library, /turf/open/floor/engine/cult, /area/centcom/wizard_station) -"WE" = ( +"aWE" = ( /obj/effect/turf_decal/tile/neutral/opposingcorners, /obj/effect/turf_decal/tile/neutral/opposingcorners, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ @@ -18015,48 +18815,51 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/centcom/central_command_areas/evacuation/ship) -"WG" = ( +"aWF" = ( +/turf/open/floor/iron/terracotta/small, +/area/centcom/central_command_areas/retirement_home) +"aWG" = ( /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/botany) -"WH" = ( +"aWH" = ( /obj/machinery/door/window/brigdoor/security{ dir = 1 }, /turf/open/floor/circuit, /area/centcom/central_command_areas/admin) -"WI" = ( +"aWI" = ( /obj/effect/turf_decal/siding/dark/end{ dir = 1 }, /turf/closed/indestructible/riveted, /area/centcom/central_command_areas/admin) -"WJ" = ( +"aWJ" = ( /obj/effect/turf_decal/siding/wood{ dir = 9 }, /obj/machinery/growing/tray, /turf/open/floor/wood/large, /area/centcom/central_command_areas/botany) -"WK" = ( +"aWK" = ( /obj/structure/chair/bronze{ dir = 8 }, /turf/open/floor/carpet, /area/centcom/syndicate_mothership/control) -"WL" = ( +"aWL" = ( /obj/effect/turf_decal/siding/wideplating/dark{ dir = 8 }, /obj/structure/chair/stool/directional/east, /turf/open/floor/wood/tile, /area/centcom/syndicate_mothership/control) -"WM" = ( +"aWM" = ( /obj/machinery/atmospherics/components/unary/passive_vent{ dir = 4 }, /turf/open/misc/asteroid/snow/airless, /area/centcom/syndicate_mothership/expansion_bombthreat) -"WN" = ( +"aWN" = ( /obj/structure/table/wood, /obj/item/storage/box/drinkingglasses, /obj/item/reagent_containers/cup/glass/bottle/whiskey{ @@ -18065,7 +18868,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/briefing) -"WO" = ( +"aWO" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/button/ignition/incinerator/ordmix{ id = "syn_ordmix_igniter"; @@ -18082,7 +18885,7 @@ }, /turf/open/floor/mineral/titanium/tiled/yellow, /area/centcom/syndicate_mothership/expansion_bombthreat) -"WP" = ( +"aWP" = ( /obj/effect/turf_decal/siding/wood{ dir = 6 }, @@ -18095,7 +18898,7 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/borbop) -"WQ" = ( +"aWQ" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/centcom{ name = "CentCom Security" @@ -18109,10 +18912,10 @@ /obj/effect/mapping_helpers/airlock/access/any/admin/general, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"WR" = ( +"aWR" = ( /turf/open/floor/iron/dark, /area/centcom/central_command_areas/briefing) -"WS" = ( +"aWS" = ( /obj/machinery/button/door/indestructible{ id = "XCCsec3"; name = "XCC Shutter 3 Control"; @@ -18122,18 +18925,23 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/supply) -"WT" = ( +"aWT" = ( /turf/open/floor/carpet/executive, /area/centcom/central_command_areas/admin) -"WV" = ( +"aWU" = ( +/obj/structure/flora/bush/fullgrass, +/obj/structure/flora/biolumi/flower, +/turf/open/floor/grass, +/area/centcom/central_command_areas/retirement_yard) +"aWV" = ( /obj/effect/turf_decal/siding/dark, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/hall) -"WW" = ( +"aWW" = ( /obj/structure/hedge, /turf/open/floor/wood/large, /area/centcom/central_command_areas/medical) -"WX" = ( +"aWX" = ( /obj/effect/turf_decal/siding/wood{ dir = 6 }, @@ -18160,7 +18968,7 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin) -"WY" = ( +"aWY" = ( /obj/machinery/light/directional/north, /obj/structure/table/reinforced, /obj/item/crowbar/red, @@ -18170,14 +18978,14 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/ferry) -"WZ" = ( +"aWZ" = ( /obj/effect/turf_decal/siding/dark, /obj/effect/turf_decal/siding/dark{ dir = 1 }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/admin) -"Xa" = ( +"aXa" = ( /obj/structure/lattice/catwalk, /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -18190,24 +18998,24 @@ }, /turf/open/floor/plating/snowed/icemoon, /area/centcom/syndicate_mothership/control) -"Xb" = ( +"aXb" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/hall) -"Xc" = ( +"aXc" = ( /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood/large, /area/centcom/central_command_areas/ghost_spawn) -"Xd" = ( +"aXd" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, /obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/centcom/syndicate_mothership/control) -"Xe" = ( +"aXe" = ( /obj/structure/table/reinforced, /obj/item/grenade/c4{ pixel_x = 6 @@ -18219,27 +19027,27 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"Xf" = ( +"aXf" = ( /turf/open/floor/plating, /area/centcom/syndicate_mothership/control) -"Xg" = ( +"aXg" = ( /obj/effect/turf_decal/siding/wood, /obj/effect/turf_decal/siding/wood/corner{ dir = 1 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/kitchen) -"Xh" = ( +"aXh" = ( /turf/open/floor/iron, /area/centcom/central_command_areas/supplypod/loading/four) -"Xi" = ( +"aXi" = ( /obj/structure/stone_tile/surrounding_tile/cracked{ dir = 8 }, /obj/structure/flora/tree/pine/style_random, /turf/open/misc/snow/actually_safe, /area/centcom/central_command_areas/admin) -"Xj" = ( +"aXj" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 8 @@ -18247,7 +19055,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/evacuation/ship) -"Xk" = ( +"aXk" = ( /obj/machinery/vending/wardrobe/viro_wardrobe, /obj/effect/turf_decal/siding/dark{ dir = 4 @@ -18260,13 +19068,13 @@ dir = 8 }, /area/centcom/central_command_areas/hall) -"Xl" = ( +"aXl" = ( /obj/structure/table/wood, /obj/item/storage/bag/tray, /obj/item/food/burger/spell, /turf/open/floor/carpet, /area/centcom/wizard_station) -"Xm" = ( +"aXm" = ( /obj/structure/lattice/catwalk, /obj/effect/turf_decal/stripes/line, /obj/structure/railing{ @@ -18274,7 +19082,7 @@ }, /turf/open/lava/plasma/ice_moon, /area/centcom/syndicate_mothership/control) -"Xn" = ( +"aXn" = ( /obj/structure/chair/office{ dir = 4 }, @@ -18289,7 +19097,7 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin) -"Xo" = ( +"aXo" = ( /obj/structure/table/wood, /obj/item/toy/plush/lizard_plushie, /obj/machinery/fax{ @@ -18298,12 +19106,35 @@ }, /turf/open/floor/iron/grimy, /area/centcom/central_command_areas/admin) -"Xp" = ( +"aXp" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/computer/monitor, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/evacuation/ship) -"Xr" = ( +"aXq" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/item/kirbyplants/synthetic/plant27{ + pixel_y = 22; + pixel_x = 6 + }, +/obj/item/kirbyplants/synthetic/plant28{ + pixel_y = 13; + pixel_x = -3 + }, +/obj/item/kirbyplants/synthetic/plant29{ + pixel_y = 3; + pixel_x = 5 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/item/paint_palette, +/turf/open/floor/wood/parquet, +/area/centcom/central_command_areas/retirement_home) +"aXr" = ( /obj/machinery/keycard_auth/directional/south, /obj/structure/table/reinforced, /obj/machinery/recharger, @@ -18315,18 +19146,18 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/ferry) -"Xs" = ( +"aXs" = ( /obj/effect/turf_decal/tile/brown/anticorner/contrasted, /turf/open/floor/iron, /area/centcom/central_command_areas/supplypod/loading/one) -"Xt" = ( +"aXt" = ( /obj/effect/turf_decal/stripes/end{ dir = 4 }, /obj/machinery/mech_bay_recharge_port, /turf/open/floor/mineral/titanium, /area/centcom/syndicate_mothership/control) -"Xu" = ( +"aXu" = ( /obj/docking_port/stationary{ dwidth = 25; height = 50; @@ -18336,22 +19167,22 @@ }, /turf/open/misc/asteroid/snow/airless, /area/centcom/syndicate_mothership) -"Xv" = ( +"aXv" = ( /obj/machinery/camera/autoname/directional/west{ network = list("nukie") }, /turf/open/floor/plating, /area/centcom/syndicate_mothership/control) -"Xw" = ( +"aXw" = ( /turf/closed/indestructible/fakeglass, /area/centcom/central_command_areas/admin_hangout) -"Xx" = ( +"aXx" = ( /obj/effect/turf_decal/siding/wood{ dir = 5 }, /turf/open/floor/wood/large, /area/centcom/tdome/observation) -"Xy" = ( +"aXy" = ( /obj/machinery/door/airlock/external/ruin{ name = "Ferry Airlock" }, @@ -18363,22 +19194,22 @@ }, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"Xz" = ( +"aXz" = ( /obj/structure/flora/bush/grassy/style_random, /turf/open/floor/grass, /area/centcom/central_command_areas/hall) -"XA" = ( +"aXA" = ( /obj/structure/filingcabinet/filingcabinet, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/supply) -"XB" = ( +"aXB" = ( /obj/effect/turf_decal/siding/dark{ dir = 9 }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/prison/cells) -"XC" = ( +"aXC" = ( /obj/effect/turf_decal/siding/dark{ dir = 1 }, @@ -18386,16 +19217,16 @@ /obj/structure/food_machine, /turf/open/floor/iron/white/herringbone, /area/centcom/central_command_areas/kitchen) -"XD" = ( +"aXD" = ( /obj/effect/turf_decal/tile/brown/half/contrasted{ dir = 4 }, /turf/open/floor/iron, /area/centcom/central_command_areas/supplypod/loading/one) -"XE" = ( +"aXE" = ( /turf/open/floor/wood/large, /area/centcom/central_command_areas/botany) -"XF" = ( +"aXF" = ( /obj/machinery/light/directional/east, /obj/effect/turf_decal/siding/dark{ dir = 6 @@ -18405,7 +19236,12 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/supply) -"XH" = ( +"aXG" = ( +/obj/structure/mineral_door/wood/large_gate, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/parquet, +/area/centcom/central_command_areas/retirement_home) +"aXH" = ( /obj/effect/turf_decal/stripes/end{ dir = 8 }, @@ -18417,29 +19253,47 @@ }, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership/control) -"XI" = ( +"aXI" = ( /obj/structure/table/abductor, /turf/open/floor/glass/reinforced, /area/centcom/central_command_areas/admin) -"XJ" = ( +"aXJ" = ( /turf/open/floor/iron/smooth_edge{ dir = 8 }, /area/centcom/syndicate_mothership/control) -"XM" = ( +"aXK" = ( +/obj/effect/turf_decal/siding/white, +/obj/structure/flora/bush/fullgrass, +/obj/machinery/light/street_lamp, +/turf/open/floor/grass, +/area/centcom/central_command_areas/retirement_yard) +"aXL" = ( +/obj/structure/table/wood, +/obj/item/kirbyplants/synthetic/plant28{ + pixel_y = 7; + pixel_x = -8 + }, +/obj/item/reagent_containers/cup/glass/coffee/no_lid{ + pixel_y = 5; + pixel_x = 6 + }, +/turf/open/floor/iron/terracotta/small, +/area/centcom/central_command_areas/retirement_home) +"aXM" = ( /turf/open/floor/plating/elevatorshaft, /area/centcom/syndicate_mothership/control) -"XN" = ( +"aXN" = ( /obj/structure/chair/office, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin) -"XO" = ( +"aXO" = ( /obj/machinery/light/floor/has_bulb, /turf/open/floor/iron/dark/textured_half{ dir = 4 }, /area/centcom/syndicate_mothership/control) -"XP" = ( +"aXP" = ( /obj/effect/turf_decal/siding/dark{ dir = 9 }, @@ -18447,24 +19301,24 @@ /obj/effect/turf_decal/tile/orange/diagonal_edge, /turf/open/floor/iron/white/diagonal, /area/centcom/central_command_areas/hall) -"XQ" = ( +"aXQ" = ( /obj/structure/chair/greyscale{ dir = 4 }, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership) -"XR" = ( +"aXR" = ( /obj/structure/table/wood, /obj/machinery/light/small/directional/west, /obj/item/toy/plush/lizard_plushie, /turf/open/floor/iron/grimy, /area/centcom/central_command_areas/admin) -"XS" = ( +"aXS" = ( /obj/structure/flora/tree/dead/style_random, /obj/structure/flora/grass/both/style_random, /turf/open/misc/asteroid/snow/airless, /area/centcom/syndicate_mothership) -"XT" = ( +"aXT" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 1 }, @@ -18475,7 +19329,7 @@ /obj/item/reagent_containers/cup/bucket, /turf/open/floor/mineral/plastitanium/red, /area/centcom/syndicate_mothership/expansion_bioterrorism) -"XU" = ( +"aXU" = ( /obj/effect/turf_decal/siding/dark{ dir = 6 }, @@ -18484,24 +19338,24 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/admin) -"XV" = ( +"aXV" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 }, /turf/open/floor/glass/reinforced, /area/centcom/central_command_areas/hall) -"XW" = ( +"aXW" = ( /obj/machinery/light/floor/has_bulb, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/medical) -"XX" = ( +"aXX" = ( /obj/effect/turf_decal/siding/dark{ dir = 9 }, /obj/effect/turf_decal/siding/dark/corner, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/admin) -"XY" = ( +"aXY" = ( /obj/structure/railing/wood, /obj/structure/railing/wood{ dir = 1 @@ -18515,7 +19369,7 @@ }, /turf/open/floor/glass/reinforced, /area/centcom/central_command_areas/admin_hangout) -"XZ" = ( +"aXZ" = ( /obj/effect/turf_decal/siding/green{ dir = 9 }, @@ -18524,10 +19378,10 @@ }, /turf/open/floor/iron/dark/small, /area/centcom/central_command_areas/botany) -"Ya" = ( +"aYa" = ( /turf/closed/indestructible/riveted, /area/centcom/central_command_areas/armory) -"Yb" = ( +"aYb" = ( /obj/structure/table/wood/fancy/green{ name = "Intern Desk" }, @@ -18535,7 +19389,7 @@ /obj/structure/window/plasma/spawner/directional/west, /turf/open/indestructible/hotelwood, /area/centcom/central_command_areas/admin) -"Yc" = ( +"aYc" = ( /obj/effect/turf_decal/siding/dark{ dir = 6 }, @@ -18547,18 +19401,21 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/admin) -"Yd" = ( +"aYd" = ( /obj/structure/closet/crate/science, /obj/item/clothing/head/beret/science/rd, /turf/open/floor/carpet/purple, /area/centcom/central_command_areas/admin) -"Yf" = ( +"aYe" = ( +/turf/open/misc/dirt, +/area/centcom/central_command_areas/retirement_yard) +"aYf" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 }, /turf/open/floor/wood/parquet, /area/centcom/central_command_areas/arcade) -"Yg" = ( +"aYg" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/structure/table/reinforced, /obj/item/reagent_containers/cup/glass/bottle/vodka/badminka{ @@ -18592,36 +19449,42 @@ }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/borbop) -"Yh" = ( +"aYh" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, /obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, /turf/closed/indestructible/opsglass, /area/centcom/syndicate_mothership/control) -"Yi" = ( +"aYi" = ( /obj/machinery/computer/camera_advanced, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/evacuation/ship) -"Yj" = ( +"aYj" = ( /obj/machinery/modular_computer/preset/id/centcom{ dir = 4 }, /turf/open/floor/mineral/titanium/white, /area/centcom/central_command_areas/admin) -"Yk" = ( +"aYk" = ( /obj/effect/turf_decal/bot, /obj/effect/spawner/random/structure/crate, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"Ym" = ( +"aYl" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/parquet, +/area/centcom/central_command_areas/retirement_home) +"aYm" = ( /obj/structure/table/optable, /turf/open/floor/mineral/titanium/tiled/white, /area/centcom/central_command_areas/admin) -"Yn" = ( +"aYn" = ( /turf/closed/indestructible/riveted, /area/centcom/central_command_areas/supplypod) -"Yo" = ( +"aYo" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 }, @@ -18637,41 +19500,44 @@ }, /turf/open/floor/carpet/purple, /area/centcom/central_command_areas/admin) -"Yp" = ( +"aYp" = ( /obj/machinery/light/small/maintenance/directional/east, /obj/structure/filingcabinet/employment, /turf/open/floor/iron/grimy, /area/centcom/central_command_areas/admin) -"Yq" = ( +"aYq" = ( /obj/machinery/door/airlock{ icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; name = "Bathroom" }, /turf/open/floor/engine/cult, /area/centcom/wizard_station) -"Ys" = ( +"aYr" = ( +/turf/open/floor/iron/dark/smooth_large, +/area/centcom/central_command_areas/retirement_yard) +"aYs" = ( /obj/structure/chair/comfy/black{ dir = 8 }, /turf/open/floor/carpet/purple, /area/centcom/central_command_areas/admin) -"Yt" = ( +"aYt" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/structure/fake_stairs/wood/directional/east, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"Yu" = ( +"aYu" = ( /obj/machinery/vending/cigarette/syndicate, /turf/open/floor/catwalk_floor/titanium, /area/centcom/syndicate_mothership/control) -"Yv" = ( +"aYv" = ( /obj/structure/mirror/magic{ pixel_y = 28 }, /obj/structure/sink/directional/south, /turf/open/floor/iron/white, /area/centcom/wizard_station) -"Yw" = ( +"aYw" = ( /obj/machinery/light/directional/east, /obj/structure/table/reinforced/titaniumglass, /obj/item/cautery/advanced{ @@ -18689,10 +19555,10 @@ }, /turf/open/floor/mineral/titanium/tiled/white, /area/centcom/central_command_areas/admin) -"Yx" = ( +"aYx" = ( /turf/open/floor/iron/white/herringbone, /area/centcom/central_command_areas/evacuation/ship) -"Yy" = ( +"aYy" = ( /obj/structure/table/reinforced, /obj/item/clipboard, /obj/item/folder/yellow, @@ -18700,7 +19566,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/briefing) -"Yz" = ( +"aYz" = ( /obj/structure/table/wood, /obj/machinery/fax{ fax_name = "Waffles"; @@ -18708,33 +19574,40 @@ }, /turf/open/floor/carpet, /area/centcom/central_command_areas/admin) -"YA" = ( +"aYA" = ( /obj/machinery/light/directional/south, /turf/open/floor/wood, /area/centcom/wizard_station) -"YC" = ( +"aYB" = ( +/obj/structure/flora/bush/fullgrass/style_2, +/turf/open/floor/grass, +/area/centcom/central_command_areas/retirement_yard) +"aYC" = ( /obj/structure/hedge, /obj/structure/railing/wood, /obj/effect/turf_decal/tile/dark/opposingcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/kitchen) -"YD" = ( +"aYD" = ( /obj/machinery/light/floor/has_bulb, /obj/effect/turf_decal/siding/wood{ dir = 1 }, /turf/open/floor/wood/large, /area/centcom/tdome/observation) -"YE" = ( +"aYE" = ( /obj/structure/fake_stairs/wood/directional/north, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/botany) -"YF" = ( +"aYF" = ( /obj/structure/flora/tree/jungle/style_3, /obj/machinery/light/floor/has_bulb, /turf/open/floor/grass, /area/centcom/central_command_areas/hall) -"YH" = ( +"aYG" = ( +/turf/open/floor/carpet/orange, +/area/centcom/central_command_areas/retirement_home) +"aYH" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 8 @@ -18744,53 +19617,53 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/evacuation/ship) -"YI" = ( +"aYI" = ( /obj/structure/closet/crate/bin{ name = "treat storage" }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/briefing) -"YJ" = ( +"aYJ" = ( /obj/effect/turf_decal/siding/dark{ dir = 10 }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/prison/cells) -"YK" = ( +"aYK" = ( /obj/effect/turf_decal/siding/dark{ dir = 5 }, /turf/open/floor/carpet, /area/centcom/central_command_areas/hall) -"YL" = ( +"aYL" = ( /obj/structure/railing/wood, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/medical) -"YM" = ( +"aYM" = ( /obj/structure/closet/cardboard, /turf/open/floor/plating, /area/centcom/syndicate_mothership/control) -"YN" = ( +"aYN" = ( /obj/effect/turf_decal/siding/dark{ dir = 1 }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/hall) -"YO" = ( +"aYO" = ( /obj/structure/table/reinforced/plastitaniumglass, /obj/machinery/fax{ fax_name = "Raziel's Desk" }, /turf/open/floor/circuit, /area/centcom/central_command_areas/admin) -"YP" = ( +"aYP" = ( /obj/effect/spawner/random/trash/garbage, /obj/effect/spawner/random/structure/closet_maintenance, /obj/structure/fans/tiny/invisible, /turf/open/floor/iron, /area/centcom/central_command_areas/admin) -"YQ" = ( +"aYQ" = ( /obj/structure/showcase/machinery/cloning_pod{ name = "Brad Pod"; desc = "Out of everything in this room, this is the only thing that is free from grime." @@ -18799,7 +19672,7 @@ dir = 8 }, /area/centcom/central_command_areas/admin) -"YR" = ( +"aYR" = ( /obj/effect/turf_decal/siding/dark{ dir = 8 }, @@ -18808,17 +19681,17 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/admin_hangout) -"YS" = ( +"aYS" = ( /obj/effect/turf_decal/siding/wood/corner, /turf/open/floor/wood/large, /area/centcom/central_command_areas/borbop) -"YT" = ( +"aYT" = ( /turf/open/floor/iron/smooth_large{ icon = 'goon/icons/turf/floors.dmi'; icon_state = "boxing" }, /area/centcom/central_command_areas/hall) -"YU" = ( +"aYU" = ( /obj/structure/lattice/catwalk, /obj/effect/turf_decal/stripes/line, /obj/structure/railing{ @@ -18826,25 +19699,25 @@ }, /turf/open/floor/plating/snowed/icemoon, /area/centcom/syndicate_mothership/control) -"YV" = ( +"aYV" = ( /obj/structure/bed, /obj/item/bedsheet/syndie, /turf/open/floor/iron/smooth_half, /area/centcom/syndicate_mothership/control) -"YW" = ( +"aYW" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 8 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/evacuation/ship) -"YX" = ( +"aYX" = ( /obj/effect/turf_decal/siding/wood{ dir = 6 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/hall) -"YY" = ( +"aYY" = ( /obj/machinery/computer/atmos_control/noreconnect{ atmos_chambers = list("nukiebase"="Burn Chamber"); desc = "Used to monitor the Syndicate Ordnance Laboratory's burn chamber."; @@ -18857,14 +19730,14 @@ }, /turf/open/floor/mineral/titanium/tiled/yellow, /area/centcom/syndicate_mothership/expansion_bombthreat) -"YZ" = ( +"aYZ" = ( /obj/effect/turf_decal/siding/green{ dir = 1 }, /obj/structure/railing/wood, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/botany) -"Za" = ( +"aZa" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 }, @@ -18883,7 +19756,7 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin) -"Zb" = ( +"aZb" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/door/airlock/centcom{ name = "CentCom Security" @@ -18894,16 +19767,16 @@ }, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) -"Zc" = ( +"aZc" = ( /turf/open/floor/iron/dark/small, /area/centcom/central_command_areas/admin) -"Zd" = ( +"aZd" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple{ dir = 10 }, /turf/open/floor/engine, /area/centcom/syndicate_mothership/expansion_bioterrorism) -"Ze" = ( +"aZe" = ( /obj/effect/turf_decal/siding/dark{ dir = 5 }, @@ -18919,10 +19792,10 @@ /obj/item/paint_palette, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/admin) -"Zf" = ( +"aZf" = ( /turf/closed/indestructible/fakeglass, /area/centcom/central_command_areas/admin) -"Zg" = ( +"aZg" = ( /obj/effect/turf_decal/siding/wood{ dir = 10 }, @@ -18932,7 +19805,7 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/arcade) -"Zh" = ( +"aZh" = ( /obj/structure/window/reinforced/survival_pod/spawner/directional/south{ name = "Tinted Window"; opacity = 1 @@ -18943,16 +19816,21 @@ /obj/machinery/portable_atmospherics/canister/oxygen, /turf/open/floor/plating, /area/centcom/syndicate_mothership/expansion_bombthreat) -"Zj" = ( +"aZi" = ( +/obj/effect/turf_decal/siding/white, +/obj/structure/flora/biolumi/mine, +/turf/open/floor/grass, +/area/centcom/central_command_areas/retirement_yard) +"aZj" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/effect/landmark/navigate_destination/centcom/kitchen, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/kitchen) -"Zk" = ( +"aZk" = ( /obj/machinery/light/cold/directional/east, /turf/open/floor/plating, /area/centcom/syndicate_mothership/control) -"Zl" = ( +"aZl" = ( /obj/structure/table/reinforced, /obj/item/clipboard, /obj/item/folder/red, @@ -18960,61 +19838,61 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/briefing) -"Zm" = ( +"aZm" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/botany) -"Zn" = ( +"aZn" = ( /obj/structure/window/plasma/spawner/directional/west, /turf/open/floor/carpet/royalblue, /area/centcom/central_command_areas/admin) -"Zo" = ( +"aZo" = ( /obj/structure/sign/warning/vacuum/external, /turf/closed/indestructible/fakeglass, /area/centcom/central_command_areas/supply) -"Zp" = ( +"aZp" = ( /obj/machinery/light/floor/has_bulb, /turf/open/floor/wood/large, /area/centcom/central_command_areas/botany) -"Zq" = ( +"aZq" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/white/herringbone, /area/centcom/central_command_areas/evacuation/ship) -"Zr" = ( +"aZr" = ( /obj/structure/chair/sofa/left{ dir = 4 }, /turf/open/floor/carpet/purple, /area/centcom/central_command_areas/admin) -"Zs" = ( +"aZs" = ( /obj/machinery/shuttle_manipulator, /turf/open/floor/circuit/green, /area/centcom/central_command_areas/briefing) -"Zt" = ( +"aZt" = ( /obj/structure/flora/rock/pile/style_random, /obj/structure/flora/grass/both/style_random, /turf/open/misc/asteroid/snow/airless, /area/centcom/syndicate_mothership) -"Zu" = ( +"aZu" = ( /obj/structure/fake_stairs/wood/directional/west, /obj/machinery/light/floor/has_bulb, /turf/open/floor/wood/large, /area/centcom/central_command_areas/hall) -"Zv" = ( +"aZv" = ( /obj/machinery/light/directional/west, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/armory) -"Zw" = ( +"aZw" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/heat_exchanging/simple{ dir = 5 }, /turf/open/space/basic, /area/space/nearstation) -"Zx" = ( +"aZx" = ( /obj/effect/turf_decal/siding/dark{ dir = 5 }, @@ -19024,16 +19902,16 @@ icon_state = "boxing" }, /area/centcom/central_command_areas/admin) -"Zy" = ( +"aZy" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/heat_exchanging/manifold, /turf/open/space/basic, /area/space/nearstation) -"Zz" = ( +"aZz" = ( /obj/structure/closet/crate/freezer/surplus_limbs, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/medical) -"ZA" = ( +"aZA" = ( /obj/effect/turf_decal/siding/wideplating_new/dark{ dir = 8 }, @@ -19045,7 +19923,7 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark/textured_large, /area/centcom/central_command_areas/evacuation/ship) -"ZB" = ( +"aZB" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/structure/railing/wood{ dir = 1 @@ -19055,7 +19933,7 @@ }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/hall) -"ZC" = ( +"aZC" = ( /obj/structure/table/wood/poker, /obj/item/toy/cards/deck/wizoff{ pixel_x = -6; @@ -19067,19 +19945,19 @@ }, /turf/open/floor/carpet, /area/centcom/wizard_station) -"ZD" = ( +"aZD" = ( /obj/structure/chair/sofa/corp/corner, /obj/machinery/light/floor/has_bulb, /turf/open/floor/mineral/titanium/white, /area/centcom/central_command_areas/admin) -"ZE" = ( +"aZE" = ( /obj/effect/landmark/error, /turf/open/misc/ashplanet/wateryrock{ initial_gas_mix = "o2=22;n2=82;TEMP=293.15"; planetary_atmos = 0 }, /area/awaymission/errorroom) -"ZF" = ( +"aZF" = ( /obj/item/reagent_containers/cocainebrick{ pixel_y = 8; pixel_x = 5 @@ -19087,7 +19965,7 @@ /obj/structure/table/wood, /turf/open/floor/iron/dark/textured_large, /area/centcom/central_command_areas/arcade) -"ZG" = ( +"aZG" = ( /obj/structure/table/wood, /obj/item/newspaper{ pixel_x = -4 @@ -19109,12 +19987,12 @@ /obj/machinery/barsign/all_access/directional/north, /turf/open/floor/wood/tile, /area/centcom/central_command_areas/evacuation/ship) -"ZH" = ( +"aZH" = ( /obj/effect/turf_decal/siding/green, /obj/structure/railing/wood, /turf/open/floor/iron/dark/small, /area/centcom/central_command_areas/botany) -"ZI" = ( +"aZI" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 1 }, @@ -19124,7 +20002,7 @@ /obj/structure/extinguisher_cabinet/directional/west, /turf/open/floor/mineral/titanium, /area/centcom/syndicate_mothership/control) -"ZJ" = ( +"aZJ" = ( /obj/structure/flora/rock/icy/style_random{ pixel_x = -7 }, @@ -19134,11 +20012,11 @@ }, /turf/open/misc/asteroid/snow/airless, /area/centcom/syndicate_mothership) -"ZK" = ( +"aZK" = ( /obj/structure/bookcase/random/adult, /turf/open/floor/iron/white, /area/centcom/wizard_station) -"ZL" = ( +"aZL" = ( /obj/effect/turf_decal/siding/dark{ dir = 9 }, @@ -19148,7 +20026,7 @@ dir = 9 }, /area/centcom/central_command_areas/hall) -"ZM" = ( +"aZM" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 }, @@ -19157,7 +20035,7 @@ }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin_hangout) -"ZN" = ( +"aZN" = ( /obj/item/clipboard, /obj/item/folder/red, /obj/item/stamp/denied{ @@ -19169,7 +20047,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/ferry) -"ZO" = ( +"aZO" = ( /obj/structure/chair/sofa/bench/right{ dir = 8 }, @@ -19178,19 +20056,19 @@ }, /turf/open/floor/mineral/titanium, /area/centcom/syndicate_mothership/control) -"ZP" = ( +"aZP" = ( /obj/effect/turf_decal/siding/wood{ dir = 9 }, /turf/open/floor/wood/large, /area/centcom/central_command_areas/hall) -"ZQ" = ( +"aZQ" = ( /obj/effect/turf_decal/tile/brown/anticorner/contrasted{ dir = 8 }, /turf/open/floor/iron, /area/centcom/central_command_areas/supplypod/loading/four) -"ZR" = ( +"aZR" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 }, @@ -19199,7 +20077,7 @@ }, /turf/open/floor/plating/icemoon, /area/centcom/syndicate_mothership/control) -"ZS" = ( +"aZS" = ( /obj/structure/railing/wood{ dir = 4 }, @@ -19207,7 +20085,7 @@ /obj/structure/railing/wood, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/hall) -"ZT" = ( +"aZT" = ( /obj/effect/turf_decal/siding/dark/corner{ dir = 4 }, @@ -19219,18 +20097,18 @@ }, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/admin) -"ZU" = ( +"aZU" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 8 }, /obj/machinery/portable_atmospherics/scrubber, /turf/open/floor/mineral/plastitanium/red, /area/centcom/syndicate_mothership/expansion_bombthreat) -"ZV" = ( +"aZV" = ( /obj/structure/railing/wrestling, /turf/closed/indestructible/riveted, /area/centcom/central_command_areas/hall) -"ZW" = ( +"aZW" = ( /obj/effect/turf_decal/stripes/end{ dir = 4 }, @@ -19241,7 +20119,7 @@ /obj/item/hatchet, /turf/open/floor/mineral/plastitanium, /area/centcom/syndicate_mothership/control) -"ZX" = ( +"aZX" = ( /obj/effect/turf_decal/siding/dark{ dir = 10 }, @@ -19252,65550 +20130,66386 @@ /obj/machinery/light/floor/has_bulb, /turf/open/floor/iron/white/herringbone, /area/centcom/central_command_areas/kitchen) -"ZY" = ( +"aZY" = ( /obj/structure/chair/wood{ dir = 4 }, /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood/large, /area/centcom/central_command_areas/kitchen) -"ZZ" = ( +"aZZ" = ( /obj/structure/flora/tree/jungle/small/style_5, /turf/open/floor/grass, /area/centcom/central_command_areas/borbop) +"bhR" = ( +/obj/effect/landmark/start/assaultop, +/obj/structure/chair/plastic{ + dir = 8 + }, +/turf/open/floor/carpet/red, +/area/cruiser_dock) +"bip" = ( +/obj/effect/spawner/random/vending/snackvend, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/textured_large, +/area/cruiser_dock) +"bkY" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/misc/asteroid, +/area/cruiser_dock) +"bnQ" = ( +/obj/structure/table, +/obj/item/pizzabox/pineapple, +/turf/open/floor/carpet/red, +/area/cruiser_dock) +"bBh" = ( +/obj/structure/table, +/turf/open/floor/carpet/red, +/area/cruiser_dock) +"bCO" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/machinery/light/cold/directional/north, +/turf/open/misc/asteroid, +/area/cruiser_dock) +"bFO" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron/smooth_edge{ + dir = 8 + }, +/area/cruiser_dock) +"bKY" = ( +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/structure/shipping_container/cybersun, +/turf/open/floor/iron/dark/textured_large, +/area/cruiser_dock) +"bTZ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/light/cold/directional/south, +/turf/open/misc/asteroid, +/area/cruiser_dock) +"cvB" = ( +/obj/machinery/armament_station/assault_operatives, +/turf/open/floor/iron/smooth_large, +/area/cruiser_dock) +"cyj" = ( +/obj/machinery/suit_storage_unit/industrial/assault_operative, +/turf/open/floor/iron/dark/textured_large, +/area/cruiser_dock) +"cIh" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/cruiser_dock) +"cKy" = ( +/obj/effect/turf_decal/delivery/white, +/obj/machinery/door/puzzle/keycard/assault_ops_chemistry, +/turf/open/floor/iron/dark/textured_large, +/area/cruiser_dock) +"dqh" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/iron/dark/textured_large, +/area/cruiser_dock) +"drE" = ( +/obj/structure/table/reinforced/plastitaniumglass, +/obj/item/storage/fancy/cigarettes/cigars/havana{ + pixel_y = 7 + }, +/obj/item/reagent_containers/cup/glass/bottle/whiskey{ + pixel_x = -4; + pixel_y = 14 + }, +/turf/open/floor/iron/smooth_edge{ + dir = 8 + }, +/area/cruiser_dock) +"dxL" = ( +/obj/machinery/vending/cigarette/syndicate, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/textured_large, +/area/cruiser_dock) +"dEH" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/turf/open/floor/iron/smooth_edge{ + dir = 4 + }, +/area/cruiser_dock) +"dGn" = ( +/obj/machinery/chem_master, +/turf/open/floor/iron/dark/textured_large, +/area/cruiser_dock) +"dRD" = ( +/obj/structure/chair/plastic, +/obj/effect/landmark/start/assaultop, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/cruiser_dock) +"dUR" = ( +/turf/open/floor/carpet/red, +/area/cruiser_dock) +"eiE" = ( +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/smooth_large, +/area/cruiser_dock) +"ekW" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/cruiser_dock) +"eAb" = ( +/turf/open/floor/iron/stairs/medium{ + dir = 1 + }, +/area/cruiser_dock) +"eCc" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/cruiser_dock) +"eHN" = ( +/obj/effect/turf_decal/loading_area/white{ + dir = 4 + }, +/turf/open/floor/iron/smooth_large, +/area/cruiser_dock) +"eOz" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/turf/open/floor/plating, +/area/cruiser_dock) +"eOH" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/smooth_edge{ + dir = 4 + }, +/area/cruiser_dock) +"eQR" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/smooth_large, +/area/cruiser_dock) +"eVz" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/turf/open/floor/plating, +/area/cruiser_dock) +"fgR" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/turf/open/floor/iron/smooth_large, +/area/cruiser_dock) +"fEL" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/turf/open/misc/asteroid, +/area/cruiser_dock) +"fFk" = ( +/obj/structure/table/glass/plasmaglass, +/obj/machinery/reagentgrinder{ + pixel_x = -7; + pixel_y = 5 + }, +/obj/item/reagent_containers/cup/beaker{ + pixel_x = 8; + pixel_y = 14 + }, +/obj/item/stack/sheet/mineral/plasma, +/turf/open/floor/iron/dark/textured_large, +/area/cruiser_dock) +"fOu" = ( +/turf/closed/indestructible/fakedoor{ + name = "Base Access" + }, +/area/cruiser_dock) +"ghD" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/smooth_edge{ + dir = 4 + }, +/area/cruiser_dock) +"gwo" = ( +/obj/structure/closet/cardboard, +/mob/living/basic/bot/medbot{ + faction = list("Syndicate"); + name = "Kahn"; + radio_channel = "Syndicate" + }, +/turf/open/floor/iron/dark/textured_large, +/area/cruiser_dock) +"gFh" = ( +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/structure/shipping_container/gorlex, +/turf/open/floor/iron/dark/textured_large, +/area/cruiser_dock) +"gXq" = ( +/obj/structure/punching_bag, +/turf/open/floor/plating, +/area/cruiser_dock) +"hfj" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/machinery/light/cold/directional/south, +/turf/open/misc/asteroid, +/area/cruiser_dock) +"hkm" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/iron/smooth, +/area/cruiser_dock) +"hrx" = ( +/obj/machinery/light/cold/directional/east, +/turf/open/floor/iron/dark/textured_large, +/area/cruiser_dock) +"hAI" = ( +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/cruiser_dock) +"hCn" = ( +/turf/open/floor/iron/smooth_edge{ + dir = 4 + }, +/area/cruiser_dock) +"hFg" = ( +/obj/effect/turf_decal/box/corners, +/turf/open/floor/iron/dark/textured_large, +/area/cruiser_dock) +"hHJ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/turf/open/floor/plating, +/area/cruiser_dock) +"hJy" = ( +/obj/structure/table/glass/plasmaglass, +/obj/item/paper_bin{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/clothing/glasses/science{ + pixel_x = -5; + pixel_y = 9 + }, +/turf/open/floor/iron/dark/textured_large, +/area/cruiser_dock) +"hLJ" = ( +/obj/item/kirbyplants/potty, +/turf/open/floor/iron/smooth_edge{ + dir = 8 + }, +/area/cruiser_dock) +"hVj" = ( +/turf/open/floor/iron/stairs/right, +/area/cruiser_dock) +"ifF" = ( +/obj/effect/landmark/start/assaultop, +/obj/structure/chair/office/light{ + dir = 4 + }, +/turf/open/floor/carpet/red, +/area/cruiser_dock) +"iDX" = ( +/turf/open/floor/catwalk_floor/iron_smooth, +/area/cruiser_dock) +"iKz" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/iron/smooth_large, +/area/cruiser_dock) +"iQV" = ( +/obj/machinery/light/cold/directional/east, +/turf/open/floor/iron/smooth_large, +/area/cruiser_dock) +"iSx" = ( +/turf/open/floor/iron/smooth_edge{ + dir = 8 + }, +/area/cruiser_dock) +"jce" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/cruiser_dock) +"jhk" = ( +/obj/structure/marker_beacon/teal, +/turf/open/misc/asteroid, +/area/cruiser_dock) +"jpy" = ( +/obj/effect/baseturf_helper/asteroid, +/turf/closed/indestructible/syndicate, +/area/cruiser_dock) +"jFt" = ( +/obj/structure/table/glass/plasmaglass, +/obj/item/storage/box/beakers{ + pixel_x = -4; + pixel_y = 9 + }, +/obj/item/storage/box/syringes{ + pixel_x = 4; + pixel_y = 9 + }, +/obj/item/gun/syringe/syndicate, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/cruiser_dock) +"kqc" = ( +/turf/open/floor/iron/stairs/left{ + dir = 4 + }, +/area/cruiser_dock) +"kqQ" = ( +/turf/open/floor/iron/stairs/left, +/area/cruiser_dock) +"kyh" = ( +/obj/machinery/vending/tool, +/turf/open/floor/iron/dark/textured_large, +/area/cruiser_dock) +"kLl" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/iron/smooth_large, +/area/cruiser_dock) +"kUz" = ( +/turf/open/floor/iron/stairs/left{ + dir = 1 + }, +/area/cruiser_dock) +"lbs" = ( +/turf/open/floor/iron/stairs/medium{ + dir = 4 + }, +/area/cruiser_dock) +"lwC" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/smooth_large, +/area/cruiser_dock) +"lBd" = ( +/turf/open/floor/iron/smooth_corner, +/area/cruiser_dock) +"lNv" = ( +/obj/machinery/chem_dispenser/fullupgrade, +/turf/open/floor/iron/dark/textured_large, +/area/cruiser_dock) +"lWT" = ( +/turf/open/floor/iron/smooth_edge{ + dir = 1 + }, +/area/cruiser_dock) +"mbG" = ( +/obj/structure/sink/kitchen/directional/west, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/iron/dark/textured_large, +/area/cruiser_dock) +"ncQ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/turf/open/floor/iron/smooth, +/area/cruiser_dock) +"nhm" = ( +/turf/open/floor/iron/stairs/medium, +/area/cruiser_dock) +"npG" = ( +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/cruiser_dock) +"nvZ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/light/cold/directional/north, +/turf/open/misc/asteroid, +/area/cruiser_dock) +"nIX" = ( +/turf/open/floor/iron/dark/textured_large, +/area/cruiser_dock) +"nKh" = ( +/obj/machinery/chem_heater/withbuffer, +/turf/open/floor/iron/dark/textured_large, +/area/cruiser_dock) +"nUK" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 17; + height = 13; + name = "Goldeneye Satellite Dock"; + roundstart_template = /datum/map_template/shuttle/goldeneye_cruiser; + shuttle_id = "goldeneye_cruiser_dock"; + width = 27 + }, +/turf/open/floor/plating, +/area/cruiser_dock) +"nWh" = ( +/turf/open/floor/iron/stairs/right{ + dir = 4 + }, +/area/cruiser_dock) +"nYE" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/misc/asteroid, +/area/cruiser_dock) +"ofy" = ( +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/cruiser_dock) +"ojQ" = ( +/obj/item/trench_tool, +/obj/item/tank/internals/emergency_oxygen/double, +/obj/item/storage/belt/holster/nukie, +/obj/item/clothing/glasses/night, +/obj/item/radio/headset/syndicate/alt, +/obj/structure/closet/syndicate{ + desc = "It's a personal storage unit for operative gear." + }, +/obj/effect/turf_decal/bot_white, +/obj/item/clothing/suit/armor/vest, +/turf/open/floor/iron/dark/textured_large, +/area/cruiser_dock) +"opw" = ( +/obj/structure/closet/l3closet/security, +/turf/open/floor/iron/dark/textured_large, +/area/cruiser_dock) +"oxw" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/cruiser_dock) +"oDh" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark/textured_large, +/area/cruiser_dock) +"oHu" = ( +/turf/open/floor/mineral/titanium/tiled/white, +/area/cruiser_dock) +"oHU" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/iron/dark/textured_large, +/area/cruiser_dock) +"pfR" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/misc/asteroid, +/area/cruiser_dock) +"plB" = ( +/turf/open/floor/iron/smooth, +/area/cruiser_dock) +"prl" = ( +/obj/item/mop, +/obj/structure/mop_bucket, +/turf/open/floor/iron/dark/textured_large, +/area/cruiser_dock) +"pwv" = ( +/obj/structure/closet/crate/cardboard/tiziran, +/obj/item/storage/box/tiziran_meats, +/turf/open/floor/iron/dark/textured_large, +/area/cruiser_dock) +"pDQ" = ( +/obj/effect/landmark/start/assaultop, +/obj/structure/chair/office/light{ + dir = 8 + }, +/turf/open/floor/carpet/red, +/area/cruiser_dock) +"qaG" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron/smooth_edge{ + dir = 4 + }, +/area/cruiser_dock) +"qfa" = ( +/turf/open/floor/iron/stairs/left{ + dir = 8 + }, +/area/cruiser_dock) +"qgn" = ( +/obj/machinery/light/cold/directional/east, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/smooth, +/area/cruiser_dock) +"qwj" = ( +/turf/open/floor/iron/stairs/right{ + dir = 1 + }, +/area/cruiser_dock) +"qwu" = ( +/turf/open/floor/plating, +/area/cruiser_dock) +"qCL" = ( +/obj/structure/closet/crate/cardboard, +/obj/item/reagent_containers/cup/glass/bottle/champagne, +/obj/item/reagent_containers/cup/glass/bottle/lizardwine, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/cruiser_dock) +"qKe" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/turf/open/floor/iron/smooth_large, +/area/cruiser_dock) +"qRZ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/iron/smooth_edge{ + dir = 8 + }, +/area/cruiser_dock) +"rdl" = ( +/turf/closed/indestructible/opsglass, +/area/cruiser_dock) +"rHE" = ( +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/obj/structure/shipping_container/kosmologistika, +/turf/open/floor/iron/dark/textured_large, +/area/cruiser_dock) +"rJt" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/iron/smooth_edge{ + dir = 4 + }, +/area/cruiser_dock) +"rQG" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/turf/open/floor/iron/smooth_large, +/area/cruiser_dock) +"rQH" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/light/cold/directional/east, +/turf/open/misc/asteroid, +/area/cruiser_dock) +"rUo" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_y = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/cruiser_dock) +"rXO" = ( +/turf/open/floor/iron/smooth_large, +/area/cruiser_dock) +"sco" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/syndicate, +/turf/open/floor/iron/dark/textured_large, +/area/cruiser_dock) +"sAG" = ( +/turf/open/floor/iron/smooth_edge, +/area/cruiser_dock) +"sCN" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/bot_white, +/obj/structure/sign/poster/contraband/free_drone/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/cruiser_dock) +"sRv" = ( +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/structure/shipping_container/vitezstvi, +/turf/open/floor/iron/dark/textured_large, +/area/cruiser_dock) +"sUM" = ( +/obj/structure/chair/plastic, +/turf/open/floor/iron/smooth, +/area/cruiser_dock) +"tmF" = ( +/obj/item/trench_tool, +/obj/item/tank/internals/emergency_oxygen/double, +/obj/item/storage/belt/holster/nukie, +/obj/item/clothing/glasses/night, +/obj/item/radio/headset/syndicate/alt, +/obj/structure/closet/syndicate{ + desc = "It's a personal storage unit for operative gear." + }, +/obj/effect/turf_decal/bot_white, +/obj/machinery/light/cold/directional/south, +/obj/item/clothing/suit/armor/vest, +/turf/open/floor/iron/dark/textured_large, +/area/cruiser_dock) +"tyZ" = ( +/obj/machinery/light/cold/directional/east, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/smooth, +/area/cruiser_dock) +"tGB" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/light/cold/directional/east, +/turf/open/misc/asteroid, +/area/cruiser_dock) +"tGO" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron/smooth_large, +/area/cruiser_dock) +"tWT" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron/smooth, +/area/cruiser_dock) +"tYX" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/light/cold/directional/west, +/turf/open/misc/asteroid, +/area/cruiser_dock) +"uuc" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/turf/open/misc/asteroid, +/area/cruiser_dock) +"uAz" = ( +/turf/open/floor/iron/smooth_corner{ + dir = 4 + }, +/area/cruiser_dock) +"uGL" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/cruiser_dock) +"uYh" = ( +/turf/open/floor/iron/stairs/right{ + dir = 8 + }, +/area/cruiser_dock) +"vgV" = ( +/obj/structure/closet/syndicate{ + desc = "It's a personal storage unit for operative gear." + }, +/obj/item/trench_tool, +/obj/item/tank/internals/emergency_oxygen/double, +/obj/item/storage/belt/holster/nukie, +/obj/item/clothing/glasses/night, +/obj/item/radio/headset/syndicate/alt, +/obj/effect/turf_decal/bot_white, +/obj/machinery/light/cold/directional/north, +/obj/item/clothing/suit/armor/vest, +/turf/open/floor/iron/dark/textured_large, +/area/cruiser_dock) +"vhW" = ( +/obj/structure/table, +/obj/machinery/coffeemaker, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/cruiser_dock) +"viC" = ( +/obj/structure/hedge, +/turf/open/floor/iron/dark/textured_large, +/area/cruiser_dock) +"voA" = ( +/obj/structure/table, +/obj/item/coffee_cartridge{ + pixel_y = -1 + }, +/obj/item/coffee_cartridge/fancy{ + pixel_x = -5; + pixel_y = 8 + }, +/obj/item/coffee_cartridge/fancy{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/reagent_containers/cup/coffeepot{ + pixel_x = 5; + pixel_y = 20 + }, +/obj/machinery/light/cold/directional/west, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/cruiser_dock) +"vAz" = ( +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/effect/turf_decal/box/corners, +/turf/open/floor/iron/dark/textured_large, +/area/cruiser_dock) +"vJI" = ( +/obj/machinery/porta_turret/syndicate/assaultops/internal{ + system_id = "goldeneyebase" + }, +/turf/closed/indestructible/syndicate, +/area/cruiser_dock) +"vPF" = ( +/obj/structure/chair/plastic{ + dir = 4 + }, +/turf/open/floor/iron/smooth_edge{ + dir = 4 + }, +/area/cruiser_dock) +"wcn" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/bot_white, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/cruiser_dock) +"wuw" = ( +/obj/structure/table, +/obj/effect/spawner/random/food_or_drink/donkpockets{ + pixel_y = 6 + }, +/obj/effect/spawner/random/food_or_drink/donkpockets{ + pixel_y = 11 + }, +/turf/open/floor/iron/dark/textured_large, +/area/cruiser_dock) +"wAD" = ( +/turf/open/floor/iron/stairs/medium{ + dir = 8 + }, +/area/cruiser_dock) +"wQY" = ( +/obj/structure/table/reinforced/plastitaniumglass, +/obj/structure/showcase/machinery/tv{ + desc = "Static fills the screen. If you can find the VCR, you might be able to watch those old Heist Movies again."; + name = "\improper Static Filled Tube(TM) Television" + }, +/turf/open/floor/iron/smooth_edge{ + dir = 8 + }, +/area/cruiser_dock) +"wTZ" = ( +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/textured_large, +/area/cruiser_dock) +"xiw" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/tiled/white, +/area/cruiser_dock) +"xrp" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/light/cold/directional/west, +/turf/open/misc/asteroid, +/area/cruiser_dock) +"xPB" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/textured_large, +/area/cruiser_dock) +"xSw" = ( +/obj/machinery/door/poddoor/shutters/indestructible, +/turf/open/floor/plating, +/area/cruiser_dock) +"xSI" = ( +/obj/item/trench_tool, +/obj/item/tank/internals/emergency_oxygen/double, +/obj/item/storage/belt/holster/nukie, +/obj/item/clothing/glasses/night, +/obj/item/radio/headset/syndicate/alt, +/obj/structure/closet/syndicate{ + desc = "It's a personal storage unit for operative gear." + }, +/obj/effect/turf_decal/bot_white, +/obj/machinery/light/cold/directional/north, +/obj/item/clothing/suit/armor/vest, +/turf/open/floor/iron/dark/textured_large, +/area/cruiser_dock) +"xWM" = ( +/obj/structure/closet/crate/cardboard/mothic, +/obj/item/storage/box/mothic_rations, +/obj/item/storage/box/mothic_rations, +/turf/open/floor/iron/dark/textured_large, +/area/cruiser_dock) (1,1,1) = {" -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -gu -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +agu +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 +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa "} (2,1,1) = {" -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -LV -LV -LV -LV -LV -LV -LV -LV -LV -LV -LV -aa +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aLV +aLV +aLV +aLV +aLV +aLV +aLV +aLV +aLV +aLV +aLV +aaa "} (3,1,1) = {" -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Di -Di -Di -Di -Di -Di -Di -Di -Di -Di -Di -Di -Di -Di -Di -Di -Di -Di -Di -Di -Di -Di -Di -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -LV -LW -LW -LW -LW -LW -LW -LW -LW -LW -LV -aa +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aDi +aDi +aDi +aDi +aDi +aDi +aDi +aDi +aDi +aDi +aDi +aDi +aDi +aDi +aDi +aDi +aDi +aDi +aDi +aDi +aDi +aDi +aDi +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aLV +aLW +aLW +aLW +aLW +aLW +aLW +aLW +aLW +aLW +aLV +aaa "} (4,1,1) = {" -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -OL -OL -OL -OL -OL -OL -OL -OL -OL -aa -aa -aa -aa -aa -aa -OL -OL -OL -OL -OL -OL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Di -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Di -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -LV -LW -zi -zi -zi -ik -zi -zi -zi -LW -LV -aa +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aOL +aOL +aOL +aOL +aOL +aOL +aOL +aOL +aOL +aaa +aaa +aaa +aaa +aaa +aaa +aOL +aOL +aOL +aOL +aOL +aOL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aDi +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aDi +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aLV +aLW +azi +azi +azi +aik +azi +azi +azi +aLW +aLV +aaa "} (5,1,1) = {" -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Cl -Cl -Cl -Cl -Cl -Cl -Cl -Cl -Cl -Cl -Cl -Ms -Ms -sQ -sQ -sQ -Ms -Ms -Cl -Cl -Cl -Cl -Cl -Cl -Cl -Cl -Cl -Cl -Cl -Cl -Cl -Cl -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -OL -OL -ku -ku -ku -ku -ku -ku -ku -OL -aa -OL -OL -OL -OL -OL -OL -PL -PL -PL -PL -OL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Di -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Di -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -LV -LW -zi -zi -zi -ik -zi -zi -zi -LW -LV -aa +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aCl +aCl +aCl +aCl +aCl +aCl +aCl +aCl +aCl +aCl +aCl +aMs +aMs +asQ +asQ +asQ +aMs +aMs +aCl +aCl +aCl +aCl +aCl +aCl +aCl +aCl +aCl +aCl +aCl +aCl +aCl +aCl +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 +aaa +aOL +aOL +aku +aku +aku +aku +aku +aku +aku +aOL +aaa +aOL +aOL +aOL +aOL +aOL +aOL +aPL +aPL +aPL +aPL +aOL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aDi +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aDi +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aLV +aLW +azi +azi +azi +aik +azi +azi +azi +aLW +aLV +aaa "} (6,1,1) = {" -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Cl -Cl -Cl -Cl -Cl -Cl -Cl -Cl -Ms -Ms -Ms -Ms -Ov -WD -xW -WD -NG -Ms -sQ -sQ -Ms -Cl -Cl -Cl -Cl -Cl -Cl -Cl -Cl -Cl -Cl -Cl -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -OL -ku -gP -bB -iw -DN -pO -QR -ku -OL -OL -OL -PL -PL -PL -JZ -PL -rU -mT -Ww -PL -OL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Di -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Di -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -LV -LW -zi -zi -zi -ik -zi -zi -zi -LW -LV -aa +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aCl +aCl +aCl +aCl +aCl +aCl +aCl +aCl +aMs +aMs +aMs +aMs +aOv +aWD +axW +aWD +aNG +aMs +asQ +asQ +aMs +aCl +aCl +aCl +aCl +aCl +aCl +aCl +aCl +aCl +aCl +aCl +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 +aaa +aOL +aku +agP +abB +aiw +aDN +apO +aQR +aku +aOL +aOL +aOL +aPL +aPL +aPL +aJZ +aPL +arU +amT +aWw +aPL +aOL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aDi +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aDi +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aLV +aLW +azi +azi +azi +aik +azi +azi +azi +aLW +aLV +aaa "} (7,1,1) = {" -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Cl -Cl -Cl -Cl -Cl -Cl -Cl -Ms -Ms -Go -fc -jz -QZ -QZ -QZ -QZ -QZ -MS -QZ -QZ -Ms -Ms -Cl -Cl -Cl -Cl -Cl -Cl -Cl -Cl -Cl -Cl -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -OL -ku -Nu -qc -qc -qc -qc -qc -ku -nK -nK -nK -PL -KE -oH -sf -si -uG -mT -mT -PL -OL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Di -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Di -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -LV -LW -ik -ik -ik -ik -ik -ik -ik -LW -LV -aa +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aCl +aCl +aCl +aCl +aCl +aCl +aCl +aMs +aMs +aGo +afc +ajz +aQZ +aQZ +aQZ +aQZ +aQZ +aMS +aQZ +aQZ +aMs +aMs +aCl +aCl +aCl +aCl +aCl +aCl +aCl +aCl +aCl +aCl +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 +aaa +aOL +aku +aNu +aqc +aqc +aqc +aqc +aqc +aku +anK +anK +anK +aPL +aKE +aoH +asf +asi +auG +amT +amT +aPL +aOL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aDi +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aDi +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aLV +aLW +aik +aik +aik +aik +aik +aik +aik +aLW +aLV +aaa "} (8,1,1) = {" -fX -fX -fX -fX -fX -fX -fX -de -fX -fX -fX -fX -fX -fX -fX -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Cl -Cl -Cl -Cl -Cl -Cl -Ms -Ms -Ul -cZ -fc -Ms -QZ -QZ -QZ -QZ -QZ -Ms -QZ -aN -QZ -Ms -Ms -Ms -Ms -Ms -Cl -Cl -Cl -Cl -Cl -Cl -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -OL -ku -BD -Cp -Cp -Cp -Cp -Od -ku -rk -rk -rk -PL -vM -Ue -pE -ne -uG -uG -uG -PL -OL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Di -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Di -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -LV -LW -zi -zi -zi -ik -ik -ik -ik -LW -LV -aa +afX +afX +afX +afX +afX +afX +afX +ade +afX +afX +afX +afX +afX +afX +afX +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aCl +aCl +aCl +aCl +aCl +aCl +aMs +aMs +aUl +acZ +afc +aMs +aQZ +aQZ +aQZ +aQZ +aQZ +aMs +aQZ +aaN +aQZ +aMs +aMs +aMs +aMs +aMs +aCl +aCl +aCl +aCl +aCl +aCl +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 +aaa +aOL +aku +aBD +aCp +aCp +aCp +aCp +aOd +aku +ark +ark +ark +aPL +avM +aUe +apE +ane +auG +auG +auG +aPL +aOL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aDi +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aDi +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aLV +aLW +azi +azi +azi +aik +aik +aik +aik +aLW +aLV +aaa "} (9,1,1) = {" -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Cl -Cl -Cl -Cl -Cl -Ms -Ms -fc -fc -fc -fc -Ms -Ov -WD -QZ -WD -NG -Ms -QZ -QZ -QZ -Ms -Dv -De -UJ -Ms -Ms -sQ -Ms -Cl -Cl -Cl -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -OL -ku -Qy -rC -Dc -vL -vu -Hg -ku -rk -rk -rk -PL -jG -cX -eO -ex -uG -mT -wg -PL -OL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Di -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Di -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -LV -LX -zi -zi -zi -ik -ik -ZE -fy -LW -LV -aa +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aCl +aCl +aCl +aCl +aCl +aMs +aMs +afc +afc +afc +afc +aMs +aOv +aWD +aQZ +aWD +aNG +aMs +aQZ +aQZ +aQZ +aMs +aDv +aDe +aUJ +aMs +aMs +asQ +aMs +aCl +aCl +aCl +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 +aaa +aOL +aku +aQy +arC +aDc +avL +avu +aHg +aku +ark +ark +ark +aPL +ajG +acX +aeO +aex +auG +amT +awg +aPL +aOL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aDi +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aDi +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aLV +aLX +azi +azi +azi +aik +aik +aZE +afy +aLW +aLV +aaa "} (10,1,1) = {" -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Cl -Cl -Cl -Cl -Cl -Ms -ji -yF -fc -fc -YA -Ms -Ms -sQ -sQ -sQ -Ms -Ms -fd -aN -QZ -BT -PD -PD -tl -JD -QZ -QZ -Ms -Cl -Cl -Cl -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -yD -yD -yD -yD -yD -aa -aa -aa -aa -aa -aa -aa -aa -OL -ku -TH -xr -AK -JP -JP -zB -ku -nK -Qx -nK -PL -mz -cX -pE -vy -uG -mT -mT -PL -OL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Di -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Di -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -LV -LW -zi -zi -zi -ik -ik -ik -ik -LW -LV -aa +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aCl +aCl +aCl +aCl +aCl +aMs +aji +ayF +afc +afc +aYA +aMs +aMs +asQ +asQ +asQ +aMs +aMs +afd +aaN +aQZ +aBT +aPD +aPD +atl +aJD +aQZ +aQZ +aMs +aCl +aCl +aCl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ayD +ayD +ayD +ayD +ayD +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aOL +aku +aTH +axr +aAK +aJP +aJP +azB +aku +anK +aQx +anK +aPL +amz +acX +apE +avy +auG +amT +amT +aPL +aOL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aDi +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aDi +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aLV +aLW +azi +azi +azi +aik +aik +aik +aik +aLW +aLV +aaa "} (11,1,1) = {" -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Cl -Cl -Ms -Ms -Ms -Ms -Ul -fc -fc -fc -Ru -Ms -Gf -QZ -QZ -QZ -eQ -Ms -QZ -QZ -QZ -Ms -hq -Im -aT -Ms -Ms -JD -Ms -Ms -Ms -Cl -aa -aa -aa -aa -aa -aa -aa -aa -aa -yD -yD -yD -yD -yD -yD -Wd -Wd -Wd -yD -yD -yD -yD -aa -aa -aa -aa -aa -OL -ku -Mw -Cr -xO -Py -Oi -Gk -ku -kd -je -ah -uG -XT -qs -Hf -hS -uG -uG -uG -PL -OL -OL -OL -OL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Di -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Di -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -LV -LW -ik -ik -ik -ik -ik -ik -ik -LW -LV -aa +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aCl +aCl +aMs +aMs +aMs +aMs +aUl +afc +afc +afc +aRu +aMs +aGf +aQZ +aQZ +aQZ +aeQ +aMs +aQZ +aQZ +aQZ +aMs +ahq +aIm +aaT +aMs +aMs +aJD +aMs +aMs +aMs +aCl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ayD +ayD +ayD +ayD +ayD +ayD +aWd +aWd +aWd +ayD +ayD +ayD +ayD +aaa +aaa +aaa +aaa +aaa +aOL +aku +aMw +aCr +axO +aPy +aOi +aGk +aku +akd +aje +aah +auG +aXT +aqs +aHf +ahS +auG +auG +auG +aPL +aOL +aOL +aOL +aOL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aDi +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aDi +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aLV +aLW +aik +aik +aik +aik +aik +aik +aik +aLW +aLV +aaa "} (12,1,1) = {" -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Cl -Ms -Ms -Rs -lG -Ms -Ms -Ms -ze -Ms -Ms -Ms -fK -QZ -QZ -QZ -OU -Ms -QZ -aN -QZ -Ms -Ms -Ms -Ms -Ms -QZ -QZ -Cf -op -Ms -Cl -aa -aa -aa -aa -aa -aa -aa -aa -yD -yD -jH -jH -jH -yD -Wd -Wd -Iz -Wd -Wd -Wd -Wd -yD -yD -yD -aa -aa -aa -OL -ku -Wn -iJ -iJ -iJ -iJ -vb -Iq -DS -xU -oS -Jy -Vd -eO -cA -cA -Pu -uG -xJ -ga -Iw -Iw -Zw -OL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Di -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Di -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -LV -LW -zi -zi -zi -ik -zi -zi -zi -LW -LV -aa +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aCl +aMs +aMs +aRs +alG +aMs +aMs +aMs +aze +aMs +aMs +aMs +afK +aQZ +aQZ +aQZ +aOU +aMs +aQZ +aaN +aQZ +aMs +aMs +aMs +aMs +aMs +aQZ +aQZ +aCf +aop +aMs +aCl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ayD +ayD +ajH +ajH +ajH +ayD +aWd +aWd +aIz +aWd +aWd +aWd +aWd +ayD +ayD +ayD +aaa +aaa +aaa +aOL +aku +aWn +aiJ +aiJ +aiJ +aiJ +avb +aIq +aDS +axU +aoS +aJy +aVd +aeO +acA +acA +aPu +auG +axJ +aga +aIw +aIw +aZw +aOL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aDi +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aDi +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aLV +aLW +azi +azi +azi +aik +azi +azi +azi +aLW +aLV +aaa "} (13,1,1) = {" -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Cl -sQ -QZ -QZ -QZ -sQ -QZ -QZ -QZ -mF -ON -Ms -QZ -QZ -QZ -QZ -QZ -sQ -QZ -QZ -QZ -Ms -Ce -Ur -Ig -Ms -Hz -QZ -QZ -op -mx -iB -aa -aa -aa -aa -aa -aa -aa -yD -yD -jH -jH -Fz -jH -jH -Wd -HF -xE -xE -Bd -Rw -Wd -Wd -Wd -yD -yD -aa -aa -OL -ku -Rb -qc -Np -qc -qc -qc -fL -DS -xU -oS -uG -Wz -Lr -MT -OY -FC -uG -Zd -ga -Iw -Iw -Zy -OL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Di -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Di -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -LV -LW -zi -zi -zi -ik -zi -zi -zi -LW -LV -aa +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aCl +asQ +aQZ +aQZ +aQZ +asQ +aQZ +aQZ +aQZ +amF +aON +aMs +aQZ +aQZ +aQZ +aQZ +aQZ +asQ +aQZ +aQZ +aQZ +aMs +aCe +aUr +aIg +aMs +aHz +aQZ +aQZ +aop +amx +aiB +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ayD +ayD +ajH +ajH +aFz +ajH +ajH +aWd +aHF +axE +axE +aBd +aRw +aWd +aWd +aWd +ayD +ayD +aaa +aaa +aOL +aku +aRb +aqc +aNp +aqc +aqc +aqc +afL +aDS +axU +aoS +auG +aWz +aLr +aMT +aOY +aFC +auG +aZd +aga +aIw +aIw +aZy +aOL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aDi +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aDi +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aLV +aLW +azi +azi +azi +aik +azi +azi +azi +aLW +aLV +aaa "} (14,1,1) = {" -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Cl -sQ -rt -QZ -QZ -gb -QZ -QZ -QZ -QZ -QZ -Eg -QZ -QZ -eL -Bq -QZ -MS -QZ -aN -QZ -PV -aN -TT -aN -sQ -mY -QZ -QZ -op -mx -iB -aa -aa -aa -aa -aa -aa -yD -yD -jH -jH -Fz -Fz -Fz -jH -jH -xE -iK -Iz -xA -fx -fx -Ps -Wd -Wd -yD -yD -yD -yD -ku -ku -HC -tE -Sx -wi -em -Iq -DS -xU -lW -Nw -Nw -Nw -Nw -Nw -Nw -Nw -Nw -Nw -rJ -zl -Ud -OL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Di -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -pW -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Di -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -LV -LW -zi -zi -zi -ik -zi -zi -zi -LW -LV -aa +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aCl +asQ +art +aQZ +aQZ +agb +aQZ +aQZ +aQZ +aQZ +aQZ +aEg +aQZ +aQZ +aeL +aBq +aQZ +aMS +aQZ +aaN +aQZ +aPV +aaN +aTT +aaN +asQ +amY +aQZ +aQZ +aop +amx +aiB +aaa +aaa +aaa +aaa +aaa +aaa +ayD +ayD +ajH +ajH +aFz +aFz +aFz +ajH +ajH +axE +aiK +aIz +axA +afx +afx +aPs +aWd +aWd +ayD +ayD +ayD +ayD +aku +aku +aHC +atE +aSx +awi +aem +aIq +aDS +axU +alW +aNw +aNw +aNw +aNw +aNw +aNw +aNw +aNw +aNw +arJ +azl +aUd +aOL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aDi +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +apW +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aDi +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aLV +aLW +azi +azi +azi +aik +azi +azi +azi +aLW +aLV +aaa "} (15,1,1) = {" -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Cl -sQ -QZ -QZ -QZ -sQ -QZ -QZ -QZ -vX -ND -Ms -QZ -QZ -QZ -QZ -QZ -sQ -QZ -QZ -QZ -Ms -iQ -Ui -Xl -Ms -UO -QZ -QZ -op -mx -iB -aa -aa -aa -aa -aa -aa -yD -jH -jH -Fz -Fz -Fz -Fz -Fz -jH -jH -xE -xE -Bd -fx -fx -fx -Rw -Wd -Wd -Wd -Wd -Wd -Wd -ku -ku -ku -ku -ku -ku -ku -Qr -xU -oa -Nw -zL -en -Vg -dm -GB -ck -Nw -Nw -Nw -Nw -Nw -OL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Di -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Di -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -LV -LW -LW -LW -LW -LW -LW -LW -LW -LW -LV -aa +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aCl +asQ +aQZ +aQZ +aQZ +asQ +aQZ +aQZ +aQZ +avX +aND +aMs +aQZ +aQZ +aQZ +aQZ +aQZ +asQ +aQZ +aQZ +aQZ +aMs +aiQ +aUi +aXl +aMs +aUO +aQZ +aQZ +aop +amx +aiB +aaa +aaa +aaa +aaa +aaa +aaa +ayD +ajH +ajH +aFz +aFz +aFz +aFz +aFz +ajH +ajH +axE +axE +aBd +afx +afx +afx +aRw +aWd +aWd +aWd +aWd +aWd +aWd +aku +aku +aku +aku +aku +aku +aku +aQr +axU +aoa +aNw +azL +aen +aVg +adm +aGB +ack +aNw +aNw +aNw +aNw +aNw +aOL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aDi +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aDi +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aLV +aLW +aLW +aLW +aLW +aLW +aLW +aLW +aLW +aLW +aLV +aaa "} (16,1,1) = {" -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Cl -Ms -Ms -as -vv -Ms -Ms -Ms -dN -Ms -Ms -Ms -uW -QZ -QZ -QZ -OU -Ms -QZ -aN -QZ -Ms -Ms -Ms -Ms -Ms -sW -QZ -Cf -op -Ms -Cl -aa -aa -aa -aa -aa -aa -yD -jH -Fz -Fz -Fz -Fz -Fz -Fz -Fz -jH -jH -xE -Bp -fx -fx -if -fx -fx -JS -Iz -xE -JS -ZJ -nK -kL -hT -Sw -dr -UM -oD -DS -xU -oS -kU -Wc -IQ -Wm -tZ -bh -qS -qt -tV -eH -qW -Nw -OL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Di -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Di -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -LV -LV -LV -LV -LV -LV -LV -LV -LV -LV -LV -aa +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aCl +aMs +aMs +aas +avv +aMs +aMs +aMs +adN +aMs +aMs +aMs +auW +aQZ +aQZ +aQZ +aOU +aMs +aQZ +aaN +aQZ +aMs +aMs +aMs +aMs +aMs +asW +aQZ +aCf +aop +aMs +aCl +aaa +aaa +aaa +aaa +aaa +aaa +ayD +ajH +aFz +aFz +aFz +aFz +aFz +aFz +aFz +ajH +ajH +axE +aBp +afx +afx +aif +afx +afx +aJS +aIz +axE +aJS +aZJ +anK +akL +ahT +aSw +adr +aUM +aoD +aDS +axU +aoS +akU +aWc +aIQ +aWm +atZ +abh +aqS +aqt +atV +aeH +aqW +aNw +aOL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aDi +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aDi +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aLV +aLV +aLV +aLV +aLV +aLV +aLV +aLV +aLV +aLV +aLV +aaa "} (17,1,1) = {" -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Cl -Cl -Ms -Ms -Ms -Ms -aN -Ja -aN -zC -ow -Ms -oI -ML -Kv -QZ -QZ -Ms -QZ -QZ -QZ -Ms -nH -jo -ZK -Ms -Ms -sQ -Ms -Ms -Ms -Cl -aa -aa -aa -aa -aa -aa -yD -jH -jH -jH -jH -kK -jH -Fz -Fz -Fz -jH -xE -Bd -fx -fx -zc -ZJ -fx -xE -nD -xE -nD -yc -nK -gw -Mn -Rn -hP -oS -SP -DS -xU -oS -NY -eZ -eZ -eZ -eZ -hC -IT -WO -Nw -ps -DH -Nw -OL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Di -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Di -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -fR -aa -aa -aa -aa -aa -aa -aa -aa +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +afX +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aCl +aCl +aMs +aMs +aMs +aMs +aaN +aJa +aaN +azC +aow +aMs +aoI +aML +aKv +aQZ +aQZ +aMs +aQZ +aQZ +aQZ +aMs +anH +ajo +aZK +aMs +aMs +asQ +aMs +aMs +aMs +aCl +aaa +aaa +aaa +aaa +aaa +aaa +ayD +ajH +ajH +ajH +ajH +akK +ajH +aFz +aFz +aFz +ajH +axE +aBd +afx +afx +azc +aZJ +afx +axE +anD +axE +anD +ayc +anK +agw +aMn +aRn +ahP +aoS +aSP +aDS +axU +aoS +aNY +aeZ +aeZ +aeZ +aeZ +ahC +aIT +aWO +aNw +aps +aDH +aNw +aOL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aDi +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aDi +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (18,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 -Fi -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Cl -Cl -Cl -Cl -Cl -Ms -qX -ju -QQ -aN -fP -Ms -Ms -sQ -sQ -sQ -Ms -Ms -fd -aN -QZ -Yq -Ta -Ta -lM -Ms -Cl -Cl -Cl -Cl -Cl -Cl -aa -aa -aa -aa -aa -aa -yD -Wd -jH -jH -xw -xL -jH -jH -kK -jH -jH -og -Bd -fx -fx -fx -if -nD -xE -fs -fs -xE -nD -nK -MV -lx -mj -Mi -Oz -oD -DS -xU -oS -kU -JO -eu -ZU -gp -Je -nz -ti -tV -SH -qW -Nw -OL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Di -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Di -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +aaa +aaa +aaa +aFi +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 +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 +aCl +aCl +aCl +aCl +aCl +aMs +aqX +aju +aQQ +aaN +afP +aMs +aMs +asQ +asQ +asQ +aMs +aMs +afd +aaN +aQZ +aYq +aTa +aTa +alM +aMs +aCl +aCl +aCl +aCl +aCl +aCl +aaa +aaa +aaa +aaa +aaa +aaa +ayD +aWd +ajH +ajH +axw +axL +ajH +ajH +akK +ajH +ajH +aog +aBd +afx +afx +afx +aif +anD +axE +afs +afs +axE +anD +anK +aMV +alx +amj +aMi +aOz +aoD +aDS +axU +aoS +akU +aJO +aeu +aZU +agp +aJe +anz +ati +atV +aSH +aqW +aNw +aOL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aDi +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aDi +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (19,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 -Cl -Cl -Cl -Cl -Cl -Ms -Ms -Ee -aN -Ja -aN -sQ -vc -pb -sL -OS -pb -sQ -QZ -QZ -QZ -Ms -Yv -RC -KC -Ms -Cl -Cl -Cl -Cl -Cl -Cl -aa -aa -aa -aa -aa -yD -Wd -fx -Rw -jH -lz -XQ -pY -jH -iV -Us -jH -bs -Bd -fx -fx -fx -xE -eJ -xE -xE -nD -nK -nK -nK -nK -nK -nK -GG -GG -GG -Ve -vd -th -Nw -gJ -dg -DJ -gJ -fM -SB -YY -gM -hJ -hJ -Nw -OL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Di -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Di -aa -aa -aa -aa -jA -jA -jA -jA -jA -jA -jA -jA -jA -jA -jA -jA -jA -jA -jA -jA -jA -aa +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aCl +aCl +aCl +aCl +aCl +aMs +aMs +aEe +aaN +aJa +aaN +asQ +avc +apb +asL +aOS +apb +asQ +aQZ +aQZ +aQZ +aMs +aYv +aRC +aKC +aMs +aCl +aCl +aCl +aCl +aCl +aCl +aaa +aaa +aaa +aaa +aaa +ayD +aWd +afx +aRw +ajH +alz +aXQ +apY +ajH +aiV +aUs +ajH +abs +aBd +afx +afx +afx +axE +aeJ +axE +axE +anD +anK +anK +anK +anK +anK +anK +aGG +aGG +aGG +aVe +avd +ath +aNw +agJ +adg +aDJ +agJ +afM +aSB +aYY +agM +ahJ +ahJ +aNw +aOL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aDi +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aDi +aaa +aaa +aaa +aaa +ajA +ajA +ajA +ajA +ajA +ajA +ajA +ajA +ajA +ajA +ajA +ajA +ajA +ajA +ajA +ajA +ajA +aaa "} (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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Cl -Cl -Cl -Cl -Cl -Cl -Ms -Ms -qX -ZC -QQ -sQ -Eu -xM -Eu -Rg -Eu -sQ -QZ -aN -QZ -Ms -Ms -Ms -Ms -Ms -Cl -Cl -Cl -Cl -Cl -Cl -aa -aa -aa -aa -yD -Wd -fx -Rw -fx -jH -Vi -Ax -jH -jH -kK -jH -jH -bs -Bd -fx -fx -if -xE -xE -nD -nD -oD -oD -nK -Mz -wn -GT -RI -GG -BL -GG -nK -Mu -nK -Nw -vQ -dB -nE -Zh -OT -Nk -IP -Nw -WM -WM -Nw -OL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Di -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Di -aa -aa -aa -aa -jA -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -jA -aa +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aCl +aCl +aCl +aCl +aCl +aCl +aMs +aMs +aqX +aZC +aQQ +asQ +aEu +axM +aEu +aRg +aEu +asQ +aQZ +aaN +aQZ +aMs +aMs +aMs +aMs +aMs +aCl +aCl +aCl +aCl +aCl +aCl +aaa +aaa +aaa +aaa +ayD +aWd +afx +aRw +afx +ajH +aVi +aAx +ajH +ajH +akK +ajH +ajH +abs +aBd +afx +afx +aif +axE +axE +anD +anD +aoD +aoD +anK +aMz +awn +aGT +aRI +aGG +aBL +aGG +anK +aMu +anK +aNw +avQ +adB +anE +aZh +aOT +aNk +aIP +aNw +aWM +aWM +aNw +aOL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aDi +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aDi +aaa +aaa +aaa +aaa +ajA +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ajA +aaa "} (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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Cl -Cl -Cl -Cl -Cl -Cl -Cl -Ms -Ms -Ee -aN -sQ -hk -jq -pb -xM -pb -sQ -QZ -QZ -Ms -Ms -Cl -Cl -Cl -Cl -Cl -Cl -Cl -Cl -Cl -Cl -aa -aa -aa -yD -Wd -fx -fx -Ps -fx -jH -wU -wU -jH -We -We -We -We -tG -Vq -fx -fx -Iz -xE -xE -eJ -oD -oD -zb -nK -ei -Bc -Bc -Bc -Fw -Au -GG -rp -Tt -XH -Nw -Ck -Qb -bJ -un -dH -UX -AW -Nw -tQ -tQ -Nw -OL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Di -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Di -aa -aa -aa -aa -jA -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -jA -aa +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aCl +aCl +aCl +aCl +aCl +aCl +aCl +aMs +aMs +aEe +aaN +asQ +ahk +ajq +apb +axM +apb +asQ +aQZ +aQZ +aMs +aMs +aCl +aCl +aCl +aCl +aCl +aCl +aCl +aCl +aCl +aCl +aaa +aaa +aaa +ayD +aWd +afx +afx +aPs +afx +ajH +awU +awU +ajH +aWe +aWe +aWe +aWe +atG +aVq +afx +afx +aIz +axE +axE +aeJ +aoD +aoD +azb +anK +aei +aBc +aBc +aBc +aFw +aAu +aGG +arp +aTt +aXH +aNw +aCk +aQb +abJ +aun +adH +aUX +aAW +aNw +atQ +atQ +aNw +aOL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aDi +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aDi +aaa +aaa +aaa +aaa +ajA +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ajA +aaa "} (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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Cl -Cl -Cl -Cl -Cl -Cl -Cl -Cl -Ms -Ms -Ms -Ms -pb -xM -Eu -uV -kV -Ms -sQ -sQ -Ms -Cl -Cl -Cl -Cl -Cl -Cl -Cl -Cl -Cl -Cl -Cl -aa -aa -aa -yD -Wd -tP -NM -tP -tP -jH -qU -ef -jH -qU -qU -Hx -qU -qU -VN -fx -fx -fx -xE -qy -xE -oD -gW -VK -Nh -Bc -Bc -Bc -Qw -GG -dI -GG -sz -Tt -oQ -Nw -Nw -Nw -Nw -Nw -Nw -Nw -Nw -Nw -zm -zm -Nw -OL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Di -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Di -aa -aa -aa -aa -jA -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -jA -aa +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aCl +aCl +aCl +aCl +aCl +aCl +aCl +aCl +aMs +aMs +aMs +aMs +apb +axM +aEu +auV +akV +aMs +asQ +asQ +aMs +aCl +aCl +aCl +aCl +aCl +aCl +aCl +aCl +aCl +aCl +aCl +aaa +aaa +aaa +ayD +aWd +atP +aNM +atP +atP +ajH +aqU +aef +ajH +aqU +aqU +aHx +aqU +aqU +aVN +afx +afx +afx +axE +aqy +axE +aoD +agW +aVK +aNh +aBc +aBc +aBc +aQw +aGG +adI +aGG +asz +aTt +aoQ +aNw +aNw +aNw +aNw +aNw +aNw +aNw +aNw +aNw +azm +azm +aNw +aOL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aDi +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aDi +aaa +aaa +aaa +aaa +ajA +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ajA +aaa "} (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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Cl -Cl -Cl -Cl -Cl -Cl -Cl -Cl -Cl -Cl -Cl -Ms -Ms -Ms -Ms -Ms -Ms -Ms -Cl -Cl -Cl -Cl -Cl -Cl -Cl -Cl -Cl -Cl -Cl -Cl -Cl -Cl -aa -aa -yD -Wd -xE -Ps -Rw -fx -fx -fx -fx -fx -fx -fx -fx -fx -fx -fx -fx -fx -fx -fx -eJ -nD -Iz -oD -CY -VK -nK -eb -jx -Bc -fo -GG -Sp -GG -KL -Tt -ZW -nK -ir -rN -PN -Sn -lw -lN -UQ -Nw -Nw -Nw -Nw -OL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Di -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Di -aa -aa -aa -aa -jA -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -jA -aa +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aCl +aCl +aCl +aCl +aCl +aCl +aCl +aCl +aCl +aCl +aCl +aMs +aMs +aMs +aMs +aMs +aMs +aMs +aCl +aCl +aCl +aCl +aCl +aCl +aCl +aCl +aCl +aCl +aCl +aCl +aCl +aCl +aaa +aaa +ayD +aWd +axE +aPs +aRw +afx +afx +afx +afx +afx +afx +afx +afx +afx +afx +afx +afx +afx +afx +afx +aeJ +anD +aIz +aoD +aCY +aVK +anK +aeb +ajx +aBc +afo +aGG +aSp +aGG +aKL +aTt +aZW +anK +air +arN +aPN +aSn +alw +alN +aUQ +aNw +aNw +aNw +aNw +aOL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aDi +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aDi +aaa +aaa +aaa +aaa +ajA +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ajA +aaa "} (24,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 -aa -aa -yD -Wd -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -fx -xE -xE -oD -oD -VK -VK -kB -TB -eg -GF -Bl -GG -kT -GG -nK -kY -nK -nK -ir -vU -dX -jT -jT -qC -qC -nK -OL -OL -OL -OL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Di -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -Qe -pu -Di -aa -aa -aa -aa -jA -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -jA -aa +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ayD +aWd +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +afx +axE +axE +aoD +aoD +aVK +aVK +akB +aTB +aeg +aGF +aBl +aGG +akT +aGG +anK +akY +anK +anK +air +avU +adX +ajT +ajT +aqC +aqC +anK +aOL +aOL +aOL +aOL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aDi +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +aQe +apu +aDi +aaa +aaa +aaa +aaa +ajA +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ajA +aaa "} (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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -sk -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -if -xE -eJ -oD -vi -VK -lP -nK -Bv -NZ -NZ -BQ -GG -GG -GG -PF -nS -mn -nK -nK -nK -Ei -nK -nK -nK -nK -nK -OL -OL -OL -OL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Di -Di -Di -Di -Di -Di -Di -Di -Di -Di -Di -Di -Di -Di -Di -Di -Di -Di -Di -Di -Di -Di -Di -aa -aa -aa -aa -jA -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -jA -aa +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 +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 +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 +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 +ask +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +aif +axE +aeJ +aoD +avi +aVK +alP +anK +aBv +aNZ +aNZ +aBQ +aGG +aGG +aGG +aPF +anS +amn +anK +anK +anK +aEi +anK +anK +anK +anK +anK +aOL +aOL +aOL +aOL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aDi +aDi +aDi +aDi +aDi +aDi +aDi +aDi +aDi +aDi +aDi +aDi +aDi +aDi +aDi +aDi +aDi +aDi +aDi +aDi +aDi +aDi +aDi +aaa +aaa +aaa +aaa +ajA +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ajA +aaa "} (26,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 -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -fx -nD -xE -oD -Fd -VK -VK -rv -XJ -XJ -XJ -XJ -EF -mu -At -kF -kF -dp -eM -nK -iz -qr -uM -Wp -pf -Dk -oD -CC -Gl -OL -OL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -jA -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -jA -aa +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 +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 +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 +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 +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +afx +anD +axE +aoD +aFd +aVK +aVK +arv +aXJ +aXJ +aXJ +aXJ +aEF +amu +aAt +akF +akF +adp +aeM +anK +aiz +aqr +auM +aWp +apf +aDk +aoD +aCC +aGl +aOL +aOL +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ajA +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ajA +aaa "} (27,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 -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -fx -eJ -xE -oD -kD -VK -VK -IY -Fr -nS -nS -nS -Yh -nS -aQ -gV -jB -kF -re -UP -Xd -Xd -yW -Iu -Bc -Bc -oD -vY -CC -jN -OL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Yn -Yn -Yn -Yn -Yn -Yn -Yn -Yn -Yn -Yn -Yn -Yn -Yn -Yn -Yn -Yn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -jA -hH -hH -hH -hH -hH -jA -jA -jA -jA -jA -hH -hH -hH -hH -hH -jA -aa +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 +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 +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 +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 +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +afx +aeJ +axE +aoD +akD +aVK +aVK +aIY +aFr +anS +anS +anS +aYh +anS +aaQ +agV +ajB +akF +are +aUP +aXd +aXd +ayW +aIu +aBc +aBc +aoD +avY +aCC +ajN +aOL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aYn +aYn +aYn +aYn +aYn +aYn +aYn +aYn +aYn +aYn +aYn +aYn +aYn +aYn +aYn +aYn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ajA +ahH +ahH +ahH +ahH +ahH +ajA +ajA +ajA +ajA +ajA +ahH +ahH +ahH +ahH +ahH +ajA +aaa "} (28,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 -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -fx -Iz -nD -oD -Fd -VK -VK -rv -by -by -by -by -EF -nS -aQ -aQ -aQ -tc -pa -nK -ap -Df -PP -Df -oP -Nn -oD -WA -WA -CI -OL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Yn -KF -KF -KF -KF -KF -SS -Yn -Yn -EZ -EZ -EZ -EZ -EZ -QM -Yn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -jA -hH -hH -hH -hH -hH -jA -lS -lS -lS -jA -hH -hH -hH -hH -hH -jA -aa +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 +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 +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 +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 +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +afx +aIz +anD +aoD +aFd +aVK +aVK +arv +aby +aby +aby +aby +aEF +anS +aaQ +aaQ +aaQ +atc +apa +anK +aap +aDf +aPP +aDf +aoP +aNn +aoD +aWA +aWA +aCI +aOL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aYn +aKF +aKF +aKF +aKF +aKF +aSS +aYn +aYn +aEZ +aEZ +aEZ +aEZ +aEZ +aQM +aYn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ajA +ahH +ahH +ahH +ahH +ahH +ajA +alS +alS +alS +ajA +ahH +ahH +ahH +ahH +ahH +ajA +aaa "} (29,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 -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -fx -xE -iK -oD -oD -ke -sy -nK -ru -WL -dj -jV -nK -Fs -wj -eM -eM -Qk -Qk -nK -nK -kz -nK -yx -nK -nK -nK -CP -WA -jj -OL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Yn -AH -AH -AH -AH -OP -PK -Yn -Yn -Vn -PW -Vn -PW -Vn -zZ -Yn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -jA -hH -hH -hH -hH -hH -jA -lS -lS -lS -jA -hH -hH -hH -hH -hH -jA -aa +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 +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 +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 +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 +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +afx +axE +aiK +aoD +aoD +ake +asy +anK +aru +aWL +adj +ajV +anK +aFs +awj +aeM +aeM +aQk +aQk +anK +anK +akz +anK +ayx +anK +anK +anK +aCP +aWA +ajj +aOL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aYn +aAH +aAH +aAH +aAH +aOP +aPK +aYn +aYn +aVn +aPW +aVn +aPW +aVn +azZ +aYn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ajA +ahH +ahH +ahH +ahH +ahH +ajA +alS +alS +alS +ajA +ahH +ahH +ahH +ahH +ahH +ajA +aaa "} (30,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 -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -fx -xE -nD -xE -oD -le -Qc -nK -CX -kE -Bx -VT -nK -hn -aQ -aQ -DK -nK -GV -nK -BO -xn -km -BU -BO -nK -vY -jj -CI -WA -OL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Yn -OP -AH -AH -AH -OP -PK -Yn -Yn -Vn -PW -Vn -PW -Vn -zZ -Yn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -jA -hH -hH -hH -hH -hH -jA -lS -lS -lS -jA -hH -hH -hH -hH -hH -jA -aa +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 +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 +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 +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 +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +afx +axE +anD +axE +aoD +ale +aQc +anK +aCX +akE +aBx +aVT +anK +ahn +aaQ +aaQ +aDK +anK +aGV +anK +aBO +axn +akm +aBU +aBO +anK +avY +ajj +aCI +aWA +aOL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aYn +aOP +aAH +aAH +aAH +aOP +aPK +aYn +aYn +aVn +aPW +aVn +aPW +aVn +azZ +aYn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ajA +ahH +ahH +ahH +ahH +ahH +ajA +alS +alS +alS +ajA +ahH +ahH +ahH +ahH +ahH +ajA +aaa "} (31,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 -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -fx -xE -xE -eJ -oD -Gr -Fc -nK -Ag -iE -pr -If -nK -NU -aQ -aQ -dp -Ph -yT -nK -rc -ih -km -kc -bu -nK -WA -CP -qj -vY -OL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Yn -OP -OP -OP -OP -OP -PK -Yn -Yn -Vn -PW -Vn -PW -Vn -zZ -Yn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -jA -hH -hH -hH -hH -hH -jA -jA -jA -jA -jA -hH -hH -hH -hH -hH -jA -aa +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 +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 +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 +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 +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +afx +axE +axE +aeJ +aoD +aGr +aFc +anK +aAg +aiE +apr +aIf +anK +aNU +aaQ +aaQ +adp +aPh +ayT +anK +arc +aih +akm +akc +abu +anK +aWA +aCP +aqj +avY +aOL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aYn +aOP +aOP +aOP +aOP +aOP +aPK +aYn +aYn +aVn +aPW +aVn +aPW +aVn +azZ +aYn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ajA +ahH +ahH +ahH +ahH +ahH +ajA +ajA +ajA +ajA +ajA +ahH +ahH +ahH +ahH +ahH +ajA +aaa "} (32,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 -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -fx -nD -xE -nD -oD -oD -Yu -nK -Ft -lR -yZ -kH -nK -tg -aQ -aQ -nT -nK -Gj -nK -YV -Ai -km -rA -YV -nK -RP -WA -vY -CC -OL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Yn -AH -AH -AH -AH -OP -PK -Yn -Yn -Vn -Vn -Vn -Vn -Vn -zZ -Yn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -jA -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -jA -aa +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 +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 +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 +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 +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +afx +anD +axE +anD +aoD +aoD +aYu +anK +aFt +alR +ayZ +akH +anK +atg +aaQ +aaQ +anT +anK +aGj +anK +aYV +aAi +akm +arA +aYV +anK +aRP +aWA +avY +aCC +aOL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aYn +aAH +aAH +aAH +aAH +aOP +aPK +aYn +aYn +aVn +aVn +aVn +aVn +aVn +azZ +aYn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ajA +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ajA +aaa "} (33,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 -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -fx -xE -eJ -qy -xE -oD -oD -nK -oD -oD -oD -oD -nK -UE -Hh -Hh -Qk -nK -nK -nK -oD -oD -nK -oD -oD -nK -nK -vY -vY -vY -OL -OL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Yn -XD -XD -XD -XD -XD -Xs -Yn -Yn -Tz -Tz -Tz -Tz -Tz -zE -Yn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -jA -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -jA -aa +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 +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 +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 +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 +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +afx +axE +aeJ +aqy +axE +aoD +aoD +anK +aoD +aoD +aoD +aoD +anK +aUE +aHh +aHh +aQk +anK +anK +anK +aoD +aoD +anK +aoD +aoD +anK +anK +avY +avY +avY +aOL +aOL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aYn +aXD +aXD +aXD +aXD +aXD +aXs +aYn +aYn +aTz +aTz +aTz +aTz +aTz +azE +aYn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ajA +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ajA +aaa "} (34,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 -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -fx -xE -nD -xE -Iz -CJ -nK -nK -xE -eJ -xE -XS -oD -UE -IC -IC -Qk -oD -BW -nK -Ts -Ts -Ts -Ts -Ts -nK -nK -vY -vY -vY -BG -OL -OL -OL -OL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Yn -Yn -Yn -Yn -Yn -Yn -Yn -Yn -Yn -Yn -Yn -Yn -Yn -Yn -Yn -Yn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -jA -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -jA -aa +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 +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 +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 +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 +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +afx +axE +anD +axE +aIz +aCJ +anK +anK +axE +aeJ +axE +aXS +aoD +aUE +aIC +aIC +aQk +aoD +aBW +anK +aTs +aTs +aTs +aTs +aTs +anK +anK +avY +avY +avY +aBG +aOL +aOL +aOL +aOL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aYn +aYn +aYn +aYn +aYn +aYn +aYn +aYn +aYn +aYn +aYn +aYn +aYn +aYn +aYn +aYn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ajA +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ajA +aaa "} (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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -fx -xE -xE -iK -xE -CJ -xE -nD -xE -nD -qy -xE -oD -lb -IC -IC -bP -oD -BW -CP -jN -vY -pm -vY -jj -WA -vY -vY -vY -vY -bc -vY -vY -vY -OL -OL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Yn -zM -zM -zM -zM -zM -zs -Yn -Yn -Pv -Pv -Pv -Pv -Pv -ZQ -Yn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -jA -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -jA -aa +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 +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 +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 +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 +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +afx +axE +axE +aiK +axE +aCJ +axE +anD +axE +anD +aqy +axE +aoD +alb +aIC +aIC +abP +aoD +aBW +aCP +ajN +avY +apm +avY +ajj +aWA +avY +avY +avY +avY +abc +avY +avY +avY +aOL +aOL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aYn +azM +azM +azM +azM +azM +azs +aYn +aYn +aPv +aPv +aPv +aPv +aPv +aZQ +aYn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ajA +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ajA +aaa "} (36,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 -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -fx -fx -nD -xE -nD -CJ -xE -xE -XS -xE -xE -eJ -oD -lb -IC -IC -bP -oD -BW -WA -CI -CP -jN -pm -vY -vY -vY -vY -vY -vY -BG -vY -vY -vY -vY -OL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Yn -Se -Si -Se -Se -Se -Tc -Yn -Yn -Pm -Pm -Pm -Xh -Xh -Wt -Yn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -jA -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -jA -aa +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 +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 +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 +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 +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +afx +afx +anD +axE +anD +aCJ +axE +axE +aXS +axE +axE +aeJ +aoD +alb +aIC +aIC +abP +aoD +aBW +aWA +aCI +aCP +ajN +apm +avY +avY +avY +avY +avY +avY +aBG +avY +avY +avY +avY +aOL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aYn +aSe +aSi +aSe +aSe +aSe +aTc +aYn +aYn +aPm +aPm +aPm +aXh +aXh +aWt +aYn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ajA +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ajA +aaa "} (37,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 -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -fx -fx -fx -fx -fx -CJ -CJ -xE -xE -nD -xE -xE -oD -UE -mO -zd -Qk -oD -BW -vY -CC -WA -vY -vY -fk -vY -vY -fk -vY -vY -bV -vY -vY -vY -vY -OL -OL -OL -OL -OL -aa -aa -aa -aa -aa -aa -aa -aa -aa -Yn -Se -Si -Se -Si -Se -Tc -Yn -Yn -Xh -Xh -Pm -Xh -Xh -Wt -Yn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -jA -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -jA -aa +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 +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 +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 +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 +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +afx +afx +afx +afx +afx +aCJ +aCJ +axE +axE +anD +axE +axE +aoD +aUE +amO +azd +aQk +aoD +aBW +avY +aCC +aWA +avY +avY +afk +avY +avY +afk +avY +avY +abV +avY +avY +avY +avY +aOL +aOL +aOL +aOL +aOL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aYn +aSe +aSi +aSe +aSi +aSe +aTc +aYn +aYn +aXh +aXh +aPm +aXh +aXh +aWt +aYn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ajA +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ajA +aaa "} (38,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 -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -fx -fx -fx -fx -fx -fx -Dz -fx -xE -xE -xE -nD -oD -UE -oV -DI -Qk -oD -BW -WA -vY -vY -fk -vY -vY -vY -vY -vY -vY -vY -BG -vY -vY -vY -vY -OL -OL -xm -vY -OL -OL -aa -aa -aa -aa -aa -aa -aa -aa -Yn -Se -Si -Se -Si -Se -Tc -Yn -Yn -Xh -Xh -Pm -Xh -Xh -Wt -Yn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -jA -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -jA -aa +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 +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 +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 +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 +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +afx +afx +afx +afx +afx +afx +aDz +afx +axE +axE +axE +anD +aoD +aUE +aoV +aDI +aQk +aoD +aBW +aWA +avY +avY +afk +avY +avY +avY +avY +avY +avY +avY +aBG +avY +avY +avY +avY +aOL +aOL +axm +avY +aOL +aOL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aYn +aSe +aSi +aSe +aSi +aSe +aTc +aYn +aYn +aXh +aXh +aPm +aXh +aXh +aWt +aYn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ajA +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ahH +ajA +aaa "} (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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -fx -fx -fx -fx -fx -fx -fx -fx -fx -xE -xE -xE -oD -lb -IC -IC -bP -oD -BW -vY -vY -vY -vY -hO -nK -iS -iS -iS -hO -iS -nK -CB -vY -vY -vY -vY -vY -vY -vY -vY -OL -aa -aa -aa -aa -aa -aa -aa -aa -Yn -Se -Se -Se -Si -Se -Tc -Yn -Yn -Pm -Pm -Pm -Pm -Pm -Wt -Yn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -jA -jA -jA -jA -jA -jA -jA -jA -jA -jA -jA -jA -jA -jA -jA -jA -jA -aa +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 +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 +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 +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 +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +afx +afx +afx +afx +afx +afx +afx +afx +afx +axE +axE +axE +aoD +alb +aIC +aIC +abP +aoD +aBW +avY +avY +avY +avY +ahO +anK +aiS +aiS +aiS +ahO +aiS +anK +aCB +avY +avY +avY +avY +avY +avY +avY +avY +aOL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aYn +aSe +aSe +aSe +aSi +aSe +aTc +aYn +aYn +aPm +aPm +aPm +aPm +aPm +aWt +aYn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ajA +ajA +ajA +ajA +ajA +ajA +ajA +ajA +ajA +ajA +ajA +ajA +ajA +ajA +ajA +ajA +ajA +aaa "} (40,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 -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -JS -fx -fx -fx -fx -fx -fx -fx -fx -xE -xE -xE -oD -lb -IC -IC -bP -oD -BW -vY -vY -vY -vY -aD -uR -rT -rT -rT -rT -rT -uR -Dq -CB -vY -vY -OL -vY -vY -vY -gC -OL -aa -aa -aa -aa -aa -aa -aa -aa -Yn -Vk -Vk -Vk -Vk -Vk -Oq -Yn -Yn -Co -Co -Co -Co -Co -VP -Yn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +aJS +afx +afx +afx +afx +afx +afx +afx +afx +axE +axE +axE +aoD +alb +aIC +aIC +abP +aoD +aBW +avY +avY +avY +avY +aaD +auR +arT +arT +arT +arT +arT +auR +aDq +aCB +avY +avY +aOL +avY +avY +avY +agC +aOL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aYn +aVk +aVk +aVk +aVk +aVk +aOq +aYn +aYn +aCo +aCo +aCo +aCo +aCo +aVP +aYn +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 +aaa +aaa +aaa "} (41,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 -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -fx -fx -fx -fx -fx -fx -fx -fx -xE -xE -xE -xE -oD -UE -bt -KW -Qk -oD -BW -vY -vY -fk -hO -Jx -uR -rT -rT -rT -rT -rT -uR -rT -Gw -vY -vY -OL -OL -vY -gC -Oe -OL -aa -aa -aa -aa -aa -aa -aa -aa -Yn -Yn -Yn -Yn -Yn -Yn -Yn -Yn -Yn -Yn -Yn -Yn -Yn -Yn -Yn -Yn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +afx +afx +afx +afx +afx +afx +afx +afx +axE +axE +axE +axE +aoD +aUE +abt +aKW +aQk +aoD +aBW +avY +avY +afk +ahO +aJx +auR +arT +arT +arT +arT +arT +auR +arT +aGw +avY +avY +aOL +aOL +avY +agC +aOe +aOL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aYn +aYn +aYn +aYn +aYn +aYn +aYn +aYn +aYn +aYn +aYn +aYn +aYn +aYn +aYn +aYn +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 +aaa +aaa +aaa "} (42,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 -gt -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -Rw -if -fx -fx -fx -fx -xE -xE -xE -CJ -xE -xE -oD -UE -mO -zd -Qk -oD -BW -pm -vY -vY -Ot -rT -uR -AQ -AU -AU -AU -sg -uR -rT -HH -vY -WA -OL -vY -vY -Hs -xm -OL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +aaa +aaa +aaa +agt +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +aRw +aif +afx +afx +afx +afx +axE +axE +axE +aCJ +axE +axE +aoD +aUE +amO +azd +aQk +aoD +aBW +apm +avY +avY +aOt +arT +auR +aAQ +aAU +aAU +aAU +asg +auR +arT +aHH +avY +aWA +aOL +avY +avY +aHs +axm +aOL +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 +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 +aaa "} (43,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 -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -if -fx -Ps -if -fx -xE -Iz -nD -CJ -CJ -xE -xE -oD -lb -IC -IC -bP -oD -BW -jN -vY -vY -aD -rT -tO -Mq -gU -gU -gU -bT -nZ -rT -rT -sZ -vY -OL -ry -vY -OL -OL -OL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +aif +afx +aPs +aif +afx +axE +aIz +anD +aCJ +aCJ +axE +axE +aoD +alb +aIC +aIC +abP +aoD +aBW +ajN +avY +avY +aaD +arT +atO +aMq +agU +agU +agU +abT +anZ +arT +arT +asZ +avY +aOL +ary +avY +aOL +aOL +aOL +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 +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 +aaa "} (44,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 -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -fx -if -fx -iK -xE -xE -nD -xE -CJ -nD -xE -Zt -oD -lb -IC -IC -bP -oD -BW -CI -vY -vY -hf -Xm -Mq -gU -gU -gU -gU -gU -bT -RR -rT -Gw -CI -OL -OL -vY -vY -OL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +afx +aif +afx +aiK +axE +axE +anD +axE +aCJ +anD +axE +aZt +aoD +alb +aIC +aIC +abP +aoD +aBW +aCI +avY +avY +ahf +aXm +aMq +agU +agU +agU +agU +agU +abT +aRR +arT +aGw +aCI +aOL +aOL +avY +avY +aOL +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 +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 +aaa +aaa "} (45,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 -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -JS -fx -Iz -xE -nD -qy -xE -nD -CJ -xE -xE -XS -oD -UE -IC -IC -Qk -oD -BW -nK -vY -vY -vY -NA -gU -gU -gU -gU -gU -gU -gU -bR -rT -Dy -vY -OL -OL -OL -vY -OL -OL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +aJS +afx +aIz +axE +anD +aqy +axE +anD +aCJ +axE +axE +aXS +aoD +aUE +aIC +aIC +aQk +aoD +aBW +anK +avY +avY +avY +aNA +agU +agU +agU +agU +agU +agU +agU +abR +arT +aDy +avY +aOL +aOL +aOL +avY +aOL +aOL +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 +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 +aaa "} (46,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 -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -nK -nK -nK -nK -nK -nK -xE -fs -qy -nD -nK -nK -Fs -Fs -QO -Mr -Qk -nK -nK -nK -PB -vY -vY -KD -xt -gU -gU -gU -gU -gU -gU -bR -rT -CB -qj -OL -OL -OL -vY -vY -OL -OL -aa -aa -aa -aa -aa -aa -aa -aa -KH -Lt -Lt -Lt -Lt -Lt -Lt -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +anK +anK +anK +anK +anK +anK +axE +afs +aqy +anD +anK +anK +aFs +aFs +aQO +aMr +aQk +anK +anK +anK +aPB +avY +avY +aKD +axt +agU +agU +agU +agU +agU +agU +abR +arT +aCB +aqj +aOL +aOL +aOL +avY +avY +aOL +aOL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aKH +aLt +aLt +aLt +aLt +aLt +aLt +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -ib -Xf -sN -Xv -Sg -nK -oD -oD -oD -oD -nK -fN -dL -SN -rA -rA -QF -di -di -Gx -vY -vY -vY -KD -gU -gU -gU -gU -gU -gU -gU -bR -rT -bd -vY -RP -OL -vY -Ek -vY -qb -OL -OL -aa -aa -aa -aa -aa -aa -KH -Lt -KK -wk -Qt -Lk -cP -MM -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +aib +aXf +asN +aXv +aSg +anK +aoD +aoD +aoD +aoD +anK +afN +adL +aSN +arA +arA +aQF +adi +adi +aGx +avY +avY +avY +aKD +agU +agU +agU +agU +agU +agU +agU +abR +arT +abd +avY +aRP +aOL +avY +aEk +avY +aqb +aOL +aOL +aaa +aaa +aaa +aaa +aaa +aaa +aKH +aLt +aKK +awk +aQt +aLk +acP +aMM +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -ib -Xf -Xf -Xf -Sg -lB -XO -VC -VC -XO -lB -VK -kZ -nM -rA -Cv -nK -nK -nK -nK -mS -vY -vY -YU -ZR -gU -gU -gU -gU -gU -tM -lt -CP -CC -vY -CI -OL -Ek -cO -Ek -vY -Hs -OL -aa -aa -aa -aa -aa -aa -Lt -tA -wX -HG -HG -Lk -cP -KQ -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +aib +aXf +aXf +aXf +aSg +alB +aXO +aVC +aVC +aXO +alB +aVK +akZ +anM +arA +aCv +anK +anK +anK +anK +amS +avY +avY +aYU +aZR +agU +agU +agU +agU +agU +atM +alt +aCP +aCC +avY +aCI +aOL +aEk +acO +aEk +avY +aHs +aOL +aaa +aaa +aaa +aaa +aaa +aaa +aLt +atA +awX +aHG +aHG +aLk +acP +aKQ +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -ib -Xf -Xf -Xf -Sg -Pd -XO -VC -VC -XO -Pd -VK -kZ -nM -rA -ez -nK -XM -XM -nK -nK -qj -vY -vY -Xa -ZR -gU -gU -gU -tM -ph -CP -jN -CI -vY -jj -OL -OL -Ek -vY -gC -Oe -OL -aa -aa -aa -aa -aa -aa -KH -Lt -Lt -LJ -fW -SC -Lt -Lt -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +aib +aXf +aXf +aXf +aSg +aPd +aXO +aVC +aVC +aXO +aPd +aVK +akZ +anM +arA +aez +anK +aXM +aXM +anK +anK +aqj +avY +avY +aXa +aZR +agU +agU +agU +atM +aph +aCP +ajN +aCI +avY +ajj +aOL +aOL +aEk +avY +agC +aOe +aOL +aaa +aaa +aaa +aaa +aaa +aaa +aKH +aLt +aLt +aLJ +afW +aSC +aLt +aLt +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -ib -Xf -Xf -bG -nK -nK -oD -oc -pn -oD -nK -ZO -tN -Pk -rA -rA -jF -XM -XM -XM -nK -OL -CI -WA -Kz -HO -kA -Qz -kA -yy -Kz -jj -CI -jN -CP -OL -OL -OL -OL -OL -OL -OL -OL -aa -aa -aa -aa -aa -aa -aa -aa -Lt -Lt -qp -Lt -Lt -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +aib +aXf +aXf +abG +anK +anK +aoD +aoc +apn +aoD +anK +aZO +atN +aPk +arA +arA +ajF +aXM +aXM +aXM +anK +aOL +aCI +aWA +aKz +aHO +akA +aQz +akA +ayy +aKz +ajj +aCI +ajN +aCP +aOL +aOL +aOL +aOL +aOL +aOL +aOL +aOL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aLt +aLt +aqp +aLt +aLt +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (51,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 -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -ib -Xf -Xf -Xf -oD -ws -Vm -AZ -Bc -rs -nK -ab -VB -Pk -rA -rA -jF -XM -XM -XM -nK -OL -vY -QU -Kz -CI -oD -Jc -oD -WA -Kz -jw -CP -OL -OL -OL -OL -OL -OL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -fT -Lo -Lf -Sd -pV -aa -aa -aa -KH -Lt -Lt -Lt -KH -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +aib +aXf +aXf +aXf +aoD +aws +aVm +aAZ +aBc +ars +anK +aab +aVB +aPk +arA +arA +ajF +aXM +aXM +aXM +anK +aOL +avY +aQU +aKz +aCI +aoD +aJc +aoD +aWA +aKz +ajw +aCP +aOL +aOL +aOL +aOL +aOL +aOL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afT +aLo +aLf +aSd +apV +aaa +aaa +aaa +aKH +aLt +aLt +aLt +aKH +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 +aaa +aaa +aaa +aaa "} (52,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 -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -Xu -ib -Xf -Xf -Xf -Aq -Bc -Bc -Bc -Bc -Bc -ye -VK -kZ -nM -rA -lj -nK -XM -XM -nK -nK -OL -OL -CI -Kz -jj -oD -lU -oD -RP -Kz -WA -jj -OL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Lt -Lt -qp -Lt -Lt -aa -aa -KH -Lt -cl -HR -Gi -Lt -KH -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +aXu +aib +aXf +aXf +aXf +aAq +aBc +aBc +aBc +aBc +aBc +aye +aVK +akZ +anM +arA +alj +anK +aXM +aXM +anK +anK +aOL +aOL +aCI +aKz +ajj +aoD +alU +aoD +aRP +aKz +aWA +ajj +aOL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aLt +aLt +aqp +aLt +aLt +aaa +aaa +aKH +aLt +acl +aHR +aGi +aLt +aKH +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 +aaa +aaa +aaa "} (53,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 -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -ib -Xf -Xf -Xf -Aq -Oy -Jf -Bc -mE -av -nK -yY -Vt -OH -rA -Cv -nK -nK -nK -nK -OL -OL -OL -OL -Kz -WA -oD -Jc -oD -ql -nK -RP -OL -OL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -KH -Lt -aZ -Xj -cr -Lt -aa -aa -Lt -Vh -LI -CH -CH -PJ -Lt -Lt -Lt -Lt -Lt -KH -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +aib +aXf +aXf +aXf +aAq +aOy +aJf +aBc +amE +aav +anK +ayY +aVt +aOH +arA +aCv +anK +anK +anK +anK +aOL +aOL +aOL +aOL +aKz +aWA +aoD +aJc +aoD +aql +anK +aRP +aOL +aOL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aKH +aLt +aaZ +aXj +acr +aLt +aaa +aaa +aLt +aVh +aLI +aCH +aCH +aPJ +aLt +aLt +aLt +aLt +aLt +aKH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (54,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 -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -ib -YM -Xf -bG -nK -nK -nK -PS -ht -rx -nK -nK -UE -nK -cz -cz -nK -rS -pc -nK -nK -nK -nK -nK -nK -oD -oD -Jc -nK -jj -WA -vY -OL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Lt -Xp -lg -KZ -aL -Lt -Lt -aa -LH -LN -OW -yX -yX -Nm -Lt -ey -LG -pH -gj -Lt -KH -aa -ut -aa -aa -aa -LM -aa -aa -aa -Pw -aa -aa -aa -pJ -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +aib +aYM +aXf +abG +anK +anK +anK +aPS +aht +arx +anK +anK +aUE +anK +acz +acz +anK +arS +apc +anK +anK +anK +anK +anK +anK +aoD +aoD +aJc +anK +ajj +aWA +avY +aOL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aLt +aXp +alg +aKZ +aaL +aLt +aLt +aaa +aLH +aLN +aOW +ayX +ayX +aNm +aLt +aey +aLG +apH +agj +aLt +aKH +aaa +aut +aaa +aaa +aaa +aLM +aaa +aaa +aaa +aPw +aaa +aaa +aaa +apJ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (55,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 -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -ib -Xf -Xf -Xf -ZI -hb -nK -nK -nK -nK -nK -Ub -mL -oD -VK -VK -bf -BX -BX -Uw -qA -iL -oX -DS -lU -Jc -Jc -Jc -nK -OL -OL -OL -OL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Lw -QB -ec -Ae -HZ -QD -Lt -Lt -Lt -LO -Zq -Yx -AA -Da -Lt -iI -LF -BR -MC -EN -Lt -Lt -LC -Lt -Lt -Lt -LC -Lt -Lt -Lt -LC -Lt -Lt -Lt -LC -Lt -KH -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +aib +aXf +aXf +aXf +aZI +ahb +anK +anK +anK +anK +anK +aUb +amL +aoD +aVK +aVK +abf +aBX +aBX +aUw +aqA +aiL +aoX +aDS +alU +aJc +aJc +aJc +anK +aOL +aOL +aOL +aOL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aLw +aQB +aec +aAe +aHZ +aQD +aLt +aLt +aLt +aLO +aZq +aYx +aAA +aDa +aLt +aiI +aLF +aBR +aMC +aEN +aLt +aLt +aLC +aLt +aLt +aLt +aLC +aLt +aLt +aLt +aLC +aLt +aLt +aLt +aLC +aLt +aKH +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (56,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 -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -ib -Xf -Xf -Xf -SA -gh -nK -gm -zw -Gy -nK -vn -BH -oD -VK -VK -Kn -UD -Dp -nL -GE -iL -nK -nK -nK -nK -nK -nK -nK -OL -Cd -OL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Lw -Yi -fV -YW -vJ -aI -Lt -pZ -Lt -mB -Lj -fI -vq -OF -Lw -wP -ud -Iv -NI -NI -Lw -KP -JE -Vv -of -LD -KV -EL -Ew -Lu -KV -LD -TM -LD -JE -Tu -Lt -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +aib +aXf +aXf +aXf +aSA +agh +anK +agm +azw +aGy +anK +avn +aBH +aoD +aVK +aVK +aKn +aUD +aDp +anL +aGE +aiL +anK +anK +anK +anK +anK +anK +anK +aOL +aCd +aOL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aLw +aYi +afV +aYW +avJ +aaI +aLt +apZ +aLt +amB +aLj +afI +avq +aOF +aLw +awP +aud +aIv +aNI +aNI +aLw +aKP +aJE +aVv +aof +aLD +aKV +aEL +aEw +aLu +aKV +aLD +aTM +aLD +aJE +aTu +aLt +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (57,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 -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -ib -Xf -Xf -Xf -iY -cp -nK -Jt -eN -RQ -nK -nK -jy -Fs -PQ -VK -Kn -ai -qk -nY -GE -iL -RW -nK -OL -OL -OL -OL -OL -OL -Cd -OL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Lw -SX -jC -Hl -Hl -YW -gd -kr -dK -LQ -LQ -cj -cj -wT -Lm -HL -HJ -HJ -HJ -HJ -ci -QH -WE -WE -Li -Lb -Lb -WE -WE -Lb -Li -Li -Lb -bN -bN -bN -Lt -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +aib +aXf +aXf +aXf +aiY +acp +anK +aJt +aeN +aRQ +anK +anK +ajy +aFs +aPQ +aVK +aKn +aai +aqk +anY +aGE +aiL +aRW +anK +aOL +aOL +aOL +aOL +aOL +aOL +aCd +aOL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aLw +aSX +ajC +aHl +aHl +aYW +agd +akr +adK +aLQ +aLQ +acj +acj +awT +aLm +aHL +aHJ +aHJ +aHJ +aHJ +aci +aQH +aWE +aWE +aLi +aLb +aLb +aWE +aWE +aLb +aLi +aLi +aLb +abN +abN +abN +aLt +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (58,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 -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -ib -Xf -Xf -Xf -Tn -hG -nK -rO -eN -Ne -oD -VK -VK -kZ -VK -VK -Kn -Cw -PU -Oc -GE -iL -Xt -nK -OL -Cd -Cd -OL -Cd -OL -OL -OL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Lw -Rp -bb -MH -fV -sm -Lt -OG -Lt -LR -Tm -Tm -Ff -yH -Lw -AD -oY -dn -dn -eR -Lw -KO -LA -nb -sB -zx -ZA -Lp -sB -DA -LA -Lp -FE -Lp -LB -tm -Lt -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +aib +aXf +aXf +aXf +aTn +ahG +anK +arO +aeN +aNe +aoD +aVK +aVK +akZ +aVK +aVK +aKn +aCw +aPU +aOc +aGE +aiL +aXt +anK +aOL +aCd +aCd +aOL +aCd +aOL +aOL +aOL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aLw +aRp +abb +aMH +afV +asm +aLt +aOG +aLt +aLR +aTm +aTm +aFf +ayH +aLw +aAD +aoY +adn +adn +aeR +aLw +aKO +aLA +anb +asB +azx +aZA +aLp +asB +aDA +aLA +aLp +aFE +aLp +aLB +atm +aLt +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (59,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 -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -ib -Xf -Xf -Xf -SA -VK -nK -LZ -Dd -Dd -RB -Fl -Fl -kZ -VK -VK -Kn -Le -cL -OI -GE -iL -CK -nK -OL -OL -OL -OL -OL -OL -OL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Lw -CT -sw -dv -Lz -QD -Lt -Lt -Lt -KJ -Eq -Ip -Ip -JT -Lt -Dn -BR -LG -BR -RT -Lt -Lt -LP -Lt -Lt -Lt -LP -Lt -Lt -Lt -LP -Lt -Lt -Lt -LP -Lt -KH -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +aib +aXf +aXf +aXf +aSA +aVK +anK +aLZ +aDd +aDd +aRB +aFl +aFl +akZ +aVK +aVK +aKn +aLe +acL +aOI +aGE +aiL +aCK +anK +aOL +aOL +aOL +aOL +aOL +aOL +aOL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aLw +aCT +asw +adv +aLz +aQD +aLt +aLt +aLt +aKJ +aEq +aIp +aIp +aJT +aLt +aDn +aBR +aLG +aBR +aRT +aLt +aLt +aLP +aLt +aLt +aLt +aLP +aLt +aLt +aLt +aLP +aLt +aLt +aLt +aLP +aLt +aKH +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (60,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 -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -ib -Xf -Zk -no -iY -zg -nK -rO -yB -iP -oD -VK -VK -kZ -VK -VK -Dm -BV -BV -BV -SG -Sr -rK -nK -nK -OL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Lt -sF -Ln -YH -Tb -Lt -Lt -aa -Lt -ZG -AG -Qd -Tv -EH -Lt -Ll -LG -mU -RJ -Lt -KH -aa -gi -aa -aa -aa -cJ -aa -aa -aa -KS -aa -aa -aa -zr -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +aib +aXf +aZk +ano +aiY +azg +anK +arO +ayB +aiP +aoD +aVK +aVK +akZ +aVK +aVK +aDm +aBV +aBV +aBV +aSG +aSr +arK +anK +anK +aOL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aLt +asF +aLn +aYH +aTb +aLt +aLt +aaa +aLt +aZG +aAG +aQd +aTv +aEH +aLt +aLl +aLG +amU +aRJ +aLt +aKH +aaa +agi +aaa +aaa +aaa +acJ +aaa +aaa +aaa +aKS +aaa +aaa +aaa +azr +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (61,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 -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -nK -nK -nK -nK -nK -nK -nK -nK -nK -nK -nK -nK -oD -Ha -oD -VK -Sj -dF -lY -jO -Kf -iL -yv -Es -nK -OL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -KH -Lt -LU -Ld -rG -Lt -aa -aa -Lt -EV -eX -mf -rz -wN -Lt -Lt -Lt -Lt -Lt -KH -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +anK +anK +anK +anK +anK +anK +anK +anK +anK +anK +anK +anK +aoD +aHa +aoD +aVK +aSj +adF +alY +ajO +aKf +aiL +ayv +aEs +anK +aOL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aKH +aLt +aLU +aLd +arG +aLt +aaa +aaa +aLt +aEV +aeX +amf +arz +awN +aLt +aLt +aLt +aLt +aLt +aKH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (62,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 -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -nK -nK -fx -Nv -fx -oz -nK -nK -Nv -fx -fx -ia -oD -Xf -oD -mK -Sj -PA -WK -PA -Kf -bg -nK -nK -nK -OL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Lt -Lt -ge -Lt -Lt -aa -aa -KH -Lt -Cy -iC -Po -Lt -KH -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +anK +anK +afx +aNv +afx +aoz +anK +anK +aNv +afx +afx +aia +aoD +aXf +aoD +amK +aSj +aPA +aWK +aPA +aKf +abg +anK +anK +anK +aOL +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 +aLt +aLt +age +aLt +aLt +aaa +aaa +aKH +aLt +aCy +aiC +aPo +aLt +aKH +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 +aaa +aaa +aaa "} (63,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 -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -fx -ia -fx -gA -fx -fx -ia -gA -fx -fx -KR -fx -oD -Xf -oD -nK -oD -er -Pz -Rl -oD -nK -nK -OL -OL -OL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -fT -Lo -Rk -Sd -pV -aa -aa -aa -KH -Lt -Lt -Lt -KH -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +afx +aia +afx +agA +afx +afx +aia +agA +afx +afx +aKR +afx +aoD +aXf +aoD +anK +aoD +aer +aPz +aRl +aoD +anK +anK +aOL +aOL +aOL +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 +afT +aLo +aRk +aSd +apV +aaa +aaa +aaa +aKH +aLt +aLt +aLt +aKH +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 +aaa +aaa +aaa +aaa "} (64,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 -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -fx -fx -oz -fx -KR -fx -fx -fx -fx -fx -fx -Nv -oD -mM -oD -qg -oD -oD -oD -oD -oD -ia -Wd -yD -xE -yD -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Lt -Lt -ge -Lt -Lt -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +afx +afx +aoz +afx +aKR +afx +afx +afx +afx +afx +afx +aNv +aoD +amM +aoD +aqg +aoD +aoD +aoD +aoD +aoD +aia +aWd +ayD +axE +ayD +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 +aLt +aLt +age +aLt +aLt +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (65,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 -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -fx -fx -qg -fx -fx -gA -fx -nu -ia -fx -fx -fx -oD -Xf -oD -fx -gA -fx -ia -fx -fx -KR -Wd -yD -xE -yD -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -KH -Lt -Lt -Te -DL -CF -Lt -Lt -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +afx +afx +aqg +afx +afx +agA +afx +anu +aia +afx +afx +afx +aoD +aXf +aoD +afx +agA +afx +aia +afx +afx +aKR +aWd +ayD +axE +ayD +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aKH +aLt +aLt +aTe +aDL +aCF +aLt +aLt +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (66,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 -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -fx -fx -fx -fx -ia -fx -fx -fx -fx -fx -gA -ia -oD -Xf -oD -ia -fx -fx -fx -Nv -fx -fx -Wd -Wd -yD -yD -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Lt -fz -za -MX -DL -ep -cP -MM -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +afx +afx +afx +afx +aia +afx +afx +afx +afx +afx +agA +aia +aoD +aXf +aoD +aia +afx +afx +afx +aNv +afx +afx +aWd +aWd +ayD +ayD +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aLt +afz +aza +aMX +aDL +aep +acP +aMM +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (67,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 -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -fx -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -fx -oD -sD -oD -fx -Nv -fx -fx -fx -gA -fx -ia -Wd -yD -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -KH -Lt -cT -Hb -OC -ep -cP -KQ -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +afx +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +afx +aoD +asD +aoD +afx +aNv +afx +afx +afx +agA +afx +aia +aWd +ayD +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aKH +aLt +acT +aHb +aOC +aep +acP +aKQ +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (68,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 -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -fx -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -CL -xE -xE -xE -fx -gA -fx -fx -ia -fx -Wd -yD -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -KH -Lt -Lt -Lt -Lt -Lt -Lt -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +afx +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +aCL +axE +axE +axE +afx +agA +afx +afx +aia +afx +aWd +ayD +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 +aKH +aLt +aLt +aLt +aLt +aLt +aLt +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (69,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 -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -fx -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -fx -ia -gA -fx -Nv -fx -fx -yD -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +afx +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +afx +aia +agA +afx +aNv +afx +afx +ayD +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (70,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 -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -fx -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -fx -fx -fx -fx -fx -fx -fx -yD -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +afx +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +afx +afx +afx +afx +afx +afx +afx +ayD +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (71,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 -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -fx -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -fx -yD -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +afx +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +afx +ayD +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (72,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 -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -fx -fx -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -fx -yD -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +afx +afx +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +afx +ayD +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (73,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 -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -fx -fx -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -fx -yD -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +afx +afx +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +afx +ayD +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (74,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 -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -fx -fx -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -fx -yD -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +afx +afx +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +afx +ayD +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (75,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 -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -fx -fx -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -fx -yD -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +afx +afx +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +afx +ayD +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (76,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 -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -fx -fx -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -fx -yD -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +afx +afx +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +afx +ayD +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (77,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 -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -fx -fx -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -fx -yD -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +afx +afx +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +afx +ayD +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (78,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 -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -fx -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -fx -yD -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +afx +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +afx +ayD +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (79,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 -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -fx -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -fx -fx -fx -fx -fx -fx -fx -yD -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +afx +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +afx +afx +afx +afx +afx +afx +afx +ayD +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (80,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 -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -fx -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -fx -fx -fx -fx -fx -fx -fx -yD -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +afx +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +afx +afx +afx +afx +afx +afx +afx +ayD +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (81,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 -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -fx -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -fx -fx -HV -HV -HV -fx -Wd -yD -yD -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +afx +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +afx +afx +aHV +aHV +aHV +afx +aWd +ayD +ayD +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (82,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 -yD -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -fx -xE -xE -xE -xE -xE -xE -xE -xE -xE -xE -fx -fx -fx -fx -fx -fx -fx -fx -HV -fx -fx -fx -Wd -xE -yD -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +ayD +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +afx +axE +axE +axE +axE +axE +axE +axE +axE +axE +axE +afx +afx +afx +afx +afx +afx +afx +afx +aHV +afx +afx +afx +aWd +axE +ayD +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (83,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 -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -yD -xE -xE -fx -fx -fx -fx -fx -fx -fx -fx -fx -fx -fx -fx -fx -fx -fx -fx -fx -fx -fx -fx -fx -Wd -Wd -Wd -yD -yD -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +axE +axE +afx +afx +afx +afx +afx +afx +afx +afx +afx +afx +afx +afx +afx +afx +afx +afx +afx +afx +afx +afx +afx +aWd +aWd +aWd +ayD +ayD +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (84,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -yD -xE -xE -fx -fx -fx -fx -fx -fx -fx -fx -fx -fx -fx -fx -fx -fx -fx -fx -fx -HV -HV -fx -Wd -Wd -yD -yD -yD -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +ayD +axE +axE +afx +afx +afx +afx +afx +afx +afx +afx +afx +afx +afx +afx +afx +afx +afx +afx +afx +aHV +aHV +afx +aWd +aWd +ayD +ayD +ayD +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (85,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -yD -xE -xE -fx -fx -HV -HV -HV -HV -fx -fx -fx -fx -HV -HV -fx -fx -HV -HV -HV -HV -fx -fx -Wd -xE -yD -xE -yD -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +ayD +axE +axE +afx +afx +aHV +aHV +aHV +aHV +afx +afx +afx +afx +aHV +aHV +afx +afx +aHV +aHV +aHV +aHV +afx +afx +aWd +axE +ayD +axE +ayD +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (86,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -yD -xE -xE -fx -fx -fx -fx -fx -fx -fx -fx -Wd -Wd -fx -fx -fx -fx -fx -fx -fx -fx -fx -fx -Wd -xE -yD -xE -yD -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +ayD +axE +axE +afx +afx +afx +afx +afx +afx +afx +afx +aWd +aWd +afx +afx +afx +afx +afx +afx +afx +afx +afx +afx +aWd +axE +ayD +axE +ayD +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (87,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -yD -yD -xE -fx -fx -fx -fx -fx -fx -fx -Wd -Wd -Wd -Wd -fx -fx -fx -fx -fx -fx -fx -fx -fx -Wd -yD -yD -yD -yD -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +ayD +ayD +axE +afx +afx +afx +afx +afx +afx +afx +aWd +aWd +aWd +aWd +afx +afx +afx +afx +afx +afx +afx +afx +afx +aWd +ayD +ayD +ayD +ayD +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (88,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -yD -yD -Wd -Wd -Wd -Wd -fx -fx -Wd -Wd -yD -yD -Wd -Wd -Wd -Wd -fx -fx -fx -fx -fx -Wd -Wd -xE -yD -yD -yD -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +ayD +ayD +aWd +aWd +aWd +aWd +afx +afx +aWd +aWd +ayD +ayD +aWd +aWd +aWd +aWd +afx +afx +afx +afx +afx +aWd +aWd +axE +ayD +ayD +ayD +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (89,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -yD -yD -yD -yD -Wd -Wd -Wd -Wd -yD -aa -aa -yD -yD -yD -Wd -Wd -Wd -Wd -Wd -Wd -Wd -yD -yD -xE -xE -yD -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +ayD +ayD +ayD +ayD +aWd +aWd +aWd +aWd +ayD +aaa +aaa +ayD +ayD +ayD +aWd +aWd +aWd +aWd +aWd +aWd +aWd +ayD +ayD +axE +axE +ayD +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (90,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -yD -yD -yD -yD -yD -yD -aa -aa -aa -aa -aa -yD -yD -yD -yD -yD -yD -yD -yD -xE -yD -yD -yD -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ayD +ayD +ayD +ayD +ayD +ayD +aaa +aaa +aaa +aaa +aaa +ayD +ayD +ayD +ayD +ayD +ayD +ayD +ayD +axE +ayD +ayD +ayD +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (91,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -yD -yD -yD -yD -yD -yD -yD -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ayD +ayD +ayD +ayD +ayD +ayD +ayD +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (92,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -yD -yD -yD -yD -yD -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +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 +ayD +ayD +ayD +ayD +ayD +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (93,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (94,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (95,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (96,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (97,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (98,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (99,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (100,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (101,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (102,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (103,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (104,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (105,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (106,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (107,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Km -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aKm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (108,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -On -On -On -On -On -On -On -On -On -On -On -On -On -On -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -GA -xc -GA -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aOn +aOn +aOn +aOn +aOn +aOn +aOn +aOn +aOn +aOn +aOn +aOn +aOn +aOn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aGA +axc +aGA +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (109,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -On -XX -qZ -qZ -qZ -qZ -qZ -qZ -qZ -fv -qZ -qZ -Hw -On -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -GA -xd -GA -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aOn +aXX +aqZ +aqZ +aqZ +aqZ +aqZ +aqZ +aqZ +afv +aqZ +aqZ +aHw +aOn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aGA +axd +aGA +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (110,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -On -WZ -Kx -WT -WT -WT -WT -WT -Kx -WZ -xa -Yb -Aw -On -aa -aa -aa -aa -aa -aa -aa -aa -aa -GA -GA -Xy -GA -GA -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aOn +aWZ +aKx +aWT +aWT +aWT +aWT +aWT +aKx +aWZ +axa +aYb +aAw +aOn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aGA +aGA +aXy +aGA +aGA +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (111,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -vo -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -On -WZ -WT -kn -GQ -Wk -es -nU -WT -WZ -US -vs -Aw -On -aa -aa -aa -aa -aa -aa -aa -aa -aa -GA -np -np -np -GA -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aaa +aaa +avo +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aOn +aWZ +aWT +akn +aGQ +aWk +aes +anU +aWT +aWZ +aUS +avs +aAw +aOn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aGA +anp +anp +anp +aGA +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (112,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -iX -jk -jr -iX -jr -jI -Ih -aa -aa -aa -aa -Ih -Ih -iF -iF -iF -iF -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -On -On -On -On -On -On -On -On -On -WZ -Kx -WT -WT -WT -WT -WT -Kx -WZ -US -hj -Aw -On -aa -aa -aa -aa -aa -aa -aa -aa -aa -GA -np -np -np -GA -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aiX +ajk +ajr +aiX +ajr +ajI +aIh +aaa +aaa +aaa +aaa +aIh +aIh +aiF +aiF +aiF +aiF +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aOn +aOn +aOn +aOn +aOn +aOn +aOn +aOn +aOn +aWZ +aKx +aWT +aWT +aWT +aWT +aWT +aKx +aWZ +aUS +ahj +aAw +aOn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aGA +anp +anp +anp +aGA +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (113,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -jb -jl -js -iX -js -jJ -Zo -aa -aa -aa -aa -Ih -OM -mG -nl -pd -iF -aa -aa -aa -aa -aa -On -On -gn -hs -gn -hs -gn -On -aa -aa -aa -aa -aa -On -Ds -ur -jh -Ua -Bn -On -bF -KB -lF -qZ -qZ -qZ -qZ -qZ -qZ -qZ -KM -TZ -hK -Aw -On -aa -aa -aa -aa -aa -aa -aa -aa -aa -GA -np -np -np -GA -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ajb +ajl +ajs +aiX +ajs +ajJ +aZo +aaa +aaa +aaa +aaa +aIh +aOM +amG +anl +apd +aiF +aaa +aaa +aaa +aaa +aaa +aOn +aOn +agn +ahs +agn +ahs +agn +aOn +aaa +aaa +aaa +aaa +aaa +aOn +aDs +aur +ajh +aUa +aBn +aOn +abF +aKB +alF +aqZ +aqZ +aqZ +aqZ +aqZ +aqZ +aqZ +aKM +aTZ +ahK +aAw +aOn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aGA +anp +anp +anp +aGA +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (114,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -iF -iN -iX -iX -jm -jr -iX -jr -jK -Ih -Ih -Ih -Ih -iN -iF -Gz -mH -nm -TO -iF -aa -aa -aa -aa -aa -On -gn -gn -VY -Ao -So -gn -On -On -Zf -Zf -Zf -On -On -gD -uo -SV -uo -uo -On -lm -Zn -FT -Zn -Zn -Zn -hD -hD -hD -hD -Aw -Hy -hr -Aw -On -On -On -aa -aa -aa -aa -aa -aa -aa -GA -np -np -np -GA -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aiF +aiN +aiX +aiX +ajm +ajr +aiX +ajr +ajK +aIh +aIh +aIh +aIh +aiN +aiF +aGz +amH +anm +aTO +aiF +aaa +aaa +aaa +aaa +aaa +aOn +agn +agn +aVY +aAo +aSo +agn +aOn +aOn +aZf +aZf +aZf +aOn +aOn +agD +auo +aSV +auo +auo +aOn +alm +aZn +aFT +aZn +aZn +aZn +ahD +ahD +ahD +ahD +aAw +aHy +ahr +aAw +aOn +aOn +aOn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aGA +anp +anp +anp +aGA +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (115,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -iF -iO -iO -jc -jn -aF -PC -aj -jL -jc -jc -jc -iO -iO -iX -md -iR -nn -yP -iF -iF -iF -iF -iF -iF -iF -gn -nW -UV -Ao -jU -gn -On -hA -gH -nO -DT -hp -On -uo -eB -vf -eB -uo -On -TQ -AS -hD -AS -hD -hD -hD -gB -Pp -hD -eA -qZ -qZ -Ko -KB -Hw -On -aa -aa -aa -aa -aa -aa -aa -GA -np -np -np -GA -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aiF +aiO +aiO +ajc +ajn +aaF +aPC +aaj +ajL +ajc +ajc +ajc +aiO +aiO +aiX +amd +aiR +ann +ayP +aiF +aiF +aiF +aiF +aiF +aiF +aiF +agn +anW +aUV +aAo +ajU +agn +aOn +ahA +agH +anO +aDT +ahp +aOn +auo +aeB +avf +aeB +auo +aOn +aTQ +aAS +ahD +aAS +ahD +ahD +ahD +agB +aPp +ahD +aeA +aqZ +aqZ +aKo +aKB +aHw +aOn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aGA +anp +anp +anp +aGA +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (116,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -iF -Hk -Hk -tf -Bg -fQ -vK -ac -rW -zS -EE -gq -bC -bC -iX -me -mI -lo -nG -iF -yd -GL -jt -FO -Tq -iF -gn -wF -Jj -Ao -xx -gn -On -SD -uk -uk -uk -RK -On -sK -On -On -On -On -On -TQ -FI -hD -FI -hD -jW -hD -AS -mq -Kw -Aw -Wu -Va -Va -Wu -Aw -On -aa -aa -aa -aa -aa -aa -aa -GA -np -np -np -GA -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aiF +aHk +aHk +atf +aBg +afQ +avK +aac +arW +azS +aEE +agq +abC +abC +aiX +ame +amI +alo +anG +aiF +ayd +aGL +ajt +aFO +aTq +aiF +agn +awF +aJj +aAo +axx +agn +aOn +aSD +auk +auk +auk +aRK +aOn +asK +aOn +aOn +aOn +aOn +aOn +aTQ +aFI +ahD +aFI +ahD +ajW +ahD +aAS +amq +aKw +aAw +aWu +aVa +aVa +aWu +aAw +aOn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aGA +anp +anp +anp +aGA +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (117,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -iF -DX -GC -JL -KX -Cj -GC -Ni -wd -DE -wM -Cj -GC -bq -iN -zn -iR -lo -Vw -iF -hz -mi -pj -nm -XA -iF -gn -UV -UV -Ao -MR -gn -On -CO -uk -Ji -RZ -yw -On -rV -On -YP -cW -JK -On -TQ -FI -hD -FI -hD -cs -hD -QL -Fm -hD -Aw -Be -vx -vx -vx -Aw -On -aa -GA -GA -mD -mD -GA -GA -GA -np -np -np -GA -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aiF +aDX +aGC +aJL +aKX +aCj +aGC +aNi +awd +aDE +awM +aCj +aGC +abq +aiN +azn +aiR +alo +aVw +aiF +ahz +ami +apj +anm +aXA +aiF +agn +aUV +aUV +aAo +aMR +agn +aOn +aCO +auk +aJi +aRZ +ayw +aOn +arV +aOn +aYP +acW +aJK +aOn +aTQ +aFI +ahD +aFI +ahD +acs +ahD +aQL +aFm +ahD +aAw +aBe +avx +avx +avx +aAw +aOn +aaa +aGA +aGA +amD +amD +aGA +aGA +aGA +anp +anp +anp +aGA +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (118,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -iF -ac -BJ -my -Md -Yt -Wh -Yt -wd -wM -wM -wM -DE -ac -lJ -hz -iR -lo -hz -lJ -hz -iR -oJ -lo -Uq -iF -oB -Ao -Jj -Ao -Ao -oB -On -wQ -uk -Ji -uk -xP -On -ul -CZ -eD -ni -ks -On -TQ -FI -hD -FI -hD -tB -hD -AS -dk -hD -Aw -ko -tX -tX -vx -Aw -On -aa -GA -Ga -sq -to -ZN -GA -BS -np -np -np -GA -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aiF +aac +aBJ +amy +aMd +aYt +aWh +aYt +awd +awM +awM +awM +aDE +aac +alJ +ahz +aiR +alo +ahz +alJ +ahz +aiR +aoJ +alo +aUq +aiF +aoB +aAo +aJj +aAo +aAo +aoB +aOn +awQ +auk +aJi +auk +axP +aOn +aul +aCZ +aeD +ani +aks +aOn +aTQ +aFI +ahD +aFI +ahD +atB +ahD +aAS +adk +ahD +aAw +ako +atX +atX +avx +aAw +aOn +aaa +aGA +aGa +asq +ato +aZN +aGA +aBS +anp +anp +anp +aGA +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (119,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -iF -ac -dy -jp -Cj -PG -PG -PG -Ni -wM -FW -EO -wM -ac -iF -XA -bL -lq -QK -iF -os -iR -oJ -lo -qn -iF -gn -OZ -FU -Ao -zY -gn -On -aS -uk -Ji -uk -uk -On -NT -hB -Gq -Gq -BM -On -TQ -AS -hD -AS -hD -hD -hD -FJ -wo -hD -Aw -Wu -ay -ay -Wu -Aw -On -aa -mD -FX -sr -tp -Xr -mD -BS -np -np -np -GA -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aiF +aac +ady +ajp +aCj +aPG +aPG +aPG +aNi +awM +aFW +aEO +awM +aac +aiF +aXA +abL +alq +aQK +aiF +aos +aiR +aoJ +alo +aqn +aiF +agn +aOZ +aFU +aAo +azY +agn +aOn +aaS +auk +aJi +auk +auk +aOn +aNT +ahB +aGq +aGq +aBM +aOn +aTQ +aAS +ahD +aAS +ahD +ahD +ahD +aFJ +awo +ahD +aAw +aWu +aay +aay +aWu +aAw +aOn +aaa +amD +aFX +asr +atp +aXr +amD +aBS +anp +anp +anp +aGA +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (120,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -iF -ac -dy -Yk -wM -wM -wM -wM -wM -wM -al -TX -wM -ac -iF -iF -iF -uH -iF -iN -ot -mI -oJ -nn -qo -iN -gn -gn -nQ -Ao -FU -gn -On -uk -uk -Ji -uk -rH -On -Bw -EJ -Gq -eD -Sh -On -aO -qx -VJ -qx -IB -IB -hD -wJ -Uu -hD -eA -qZ -qZ -qZ -qZ -XU -On -aa -GA -rm -ss -tq -Ir -mD -vA -np -np -np -yn -mD -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aiF +aac +ady +aYk +awM +awM +awM +awM +awM +awM +aal +aTX +awM +aac +aiF +aiF +aiF +auH +aiF +aiN +aot +amI +aoJ +ann +aqo +aiN +agn +agn +anQ +aAo +aFU +agn +aOn +auk +auk +aJi +auk +arH +aOn +aBw +aEJ +aGq +aeD +aSh +aOn +aaO +aqx +aVJ +aqx +aIB +aIB +ahD +awJ +aUu +ahD +aeA +aqZ +aqZ +aqZ +aqZ +aXU +aOn +aaa +aGA +arm +ass +atq +aIr +amD +avA +anp +anp +anp +ayn +amD +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (121,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -iF -ac -wM -wM -wM -Bz -Tk -GP -wM -wM -mm -UT -wM -Cj -GC -GC -GC -GC -RD -iF -ou -iR -oJ -lo -oM -iF -bD -gn -gn -nA -zo -gn -On -On -On -bO -IS -On -On -On -On -uv -On -On -WI -qZ -qZ -qZ -qZ -qZ -qZ -qZ -qZ -qZ -qZ -XU -On -On -On -On -On -On -aa -GA -rn -st -tr -um -mD -vB -np -np -np -oU -mD -ta -GA -td -GA -ta -mD -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aiF +aac +awM +awM +awM +aBz +aTk +aGP +awM +awM +amm +aUT +awM +aCj +aGC +aGC +aGC +aGC +aRD +aiF +aou +aiR +aoJ +alo +aoM +aiF +abD +agn +agn +anA +azo +agn +aOn +aOn +aOn +abO +aIS +aOn +aOn +aOn +aOn +auv +aOn +aOn +aWI +aqZ +aqZ +aqZ +aqZ +aqZ +aqZ +aqZ +aqZ +aqZ +aqZ +aXU +aOn +aOn +aOn +aOn +aOn +aOn +aaa +aGA +arn +ast +atr +aum +amD +avB +anp +anp +anp +aoU +amD +ata +aGA +atd +aGA +ata +amD +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (122,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -iF -qQ -DE -wM -wM -wM -wM -wM -wM -wM -wM -wM -wM -wM -wM -wM -wM -DE -fQ -lK -hz -oN -iZ -lq -zh -iF -iF -iF -On -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -On -aa -mD -WY -su -ts -By -mD -vC -wr -xe -wr -wx -mD -pB -pT -pT -pT -qF -GA -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aiF +aqQ +aDE +awM +awM +awM +awM +awM +awM +awM +awM +awM +awM +awM +awM +awM +awM +aDE +afQ +alK +ahz +aoN +aiZ +alq +azh +aiF +aiF +aiF +aOn +aMc +aMc +aMc +aMc +aMc +aMc +aMc +aMc +aMc +aMc +aMc +aMc +aMc +aMc +aMc +aMc +aMc +aMc +aMc +aMc +aMc +aMc +aMc +aMc +aMc +aMc +aMc +aMc +aMc +aMc +aMc +aMc +aOn +aaa +amD +aWY +asu +ats +aBy +amD +avC +awr +axe +awr +awx +amD +apB +apT +apT +apT +aqF +aGA +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (123,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -iF -Ri -PG -PG -or -PG -PG -PG -PG -PG -or -PG -PG -PG -or -PG -yA -PG -XF -iF -ov -oO -do -hz -WS -Wo -wM -ij -ak -dQ -Mc -Mc -Mc -Mc -Mc -dQ -bK -Mc -Mc -Mc -Mc -dQ -Mc -Mc -Mc -Mc -Mc -dQ -Mc -Mc -Mc -Mc -Mc -dQ -Mc -Mc -Mc -Mc -Mc -dQ -Mc -On -aa -GA -nB -su -ts -pR -uO -vD -fw -xf -fw -yp -sd -pC -pU -pU -pU -qG -GA -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aiF +aRi +aPG +aPG +aor +aPG +aPG +aPG +aPG +aPG +aor +aPG +aPG +aPG +aor +aPG +ayA +aPG +aXF +aiF +aov +aoO +ado +ahz +aWS +aWo +awM +aij +aak +adQ +aMc +aMc +aMc +aMc +aMc +adQ +abK +aMc +aMc +aMc +aMc +adQ +aMc +aMc +aMc +aMc +aMc +adQ +aMc +aMc +aMc +aMc +aMc +adQ +aMc +aMc +aMc +aMc +aMc +adQ +aMc +aOn +aaa +aGA +anB +asu +ats +apR +auO +avD +afw +axf +afw +ayp +asd +apC +apU +apU +apU +aqG +aGA +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (124,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -iF -iF -iN -iF -iF -iF -iF -iF -Ih -iF -iF -iF -iN -iF -iF -iF -iF -iF -iF -iF -iN -iF -pQ -pQ -iF -iF -iF -iF -On -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -On -aa -mD -eY -sv -tt -Jl -mD -vE -wt -xg -wt -tn -mD -pD -pX -pX -pX -rb -GA -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aiF +aiF +aiN +aiF +aiF +aiF +aiF +aiF +aIh +aiF +aiF +aiF +aiN +aiF +aiF +aiF +aiF +aiF +aiF +aiF +aiN +aiF +apQ +apQ +aiF +aiF +aiF +aiF +aOn +aMc +aMc +aMc +aMc +aMc +aMc +aMc +aMc +aMc +aMc +aMc +aMc +aMc +aMc +aMc +aMc +aMc +aMc +aMc +aMc +aMc +aMc +aMc +aMc +aMc +aMc +aMc +aMc +aMc +aMc +aMc +aMc +aOn +aaa +amD +aeY +asv +att +aJl +amD +avE +awt +axg +awt +atn +amD +apD +apX +apX +apX +arb +aGA +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (125,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -kG -tj -tj -tj -tj -On -On -On -On -On -On -On -On -Mc -Mc -Mc -On -On -On -On -On -On -On -On -On -On -GZ -IS -On -On -On -On -IW -IS -On -On -On -On -fl -IS -On -On -mD -mD -mD -tu -mD -mD -mD -wu -xh -wu -mD -mD -zT -cn -gO -cn -zT -gO -gO -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +akG +atj +atj +atj +atj +aOn +aOn +aOn +aOn +aOn +aOn +aOn +aOn +aMc +aMc +aMc +aOn +aOn +aOn +aOn +aOn +aOn +aOn +aOn +aOn +aOn +aGZ +aIS +aOn +aOn +aOn +aOn +aIW +aIS +aOn +aOn +aOn +aOn +afl +aIS +aOn +aOn +amD +amD +amD +atu +amD +amD +amD +awu +axh +awu +amD +amD +azT +acn +agO +acn +azT +agO +agO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (126,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -kG -tj -Xi -TL -Qh -On -lc -pP -Nr -bk -yu -IA -On -Mc -Mc -Mc -On -pi -pi -pi -uD -gf -Hp -On -SI -SI -pi -pi -EK -On -Ob -VR -tW -Ho -zt -On -Zr -wb -uh -zQ -Kc -On -mD -Bm -pR -pR -pR -aK -mD -wv -wv -wv -mD -cx -WN -cb -wW -tb -aV -ho -gO -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +akG +atj +aXi +aTL +aQh +aOn +alc +apP +aNr +abk +ayu +aIA +aOn +aMc +aMc +aMc +aOn +api +api +api +auD +agf +aHp +aOn +aSI +aSI +api +api +aEK +aOn +aOb +aVR +atW +aHo +azt +aOn +aZr +awb +auh +azQ +aKc +aOn +amD +aBm +apR +apR +apR +aaK +amD +awv +awv +awv +amD +acx +aWN +acb +awW +atb +aaV +aho +agO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (127,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -kG -tj -ya -Uo -TA -Zf -Ze -ZT -eh -vZ -Fp -Cb -On -Mc -Mc -Mc -IS -pi -pi -XN -eU -pi -pi -Zf -pi -pi -pi -pi -pi -On -pk -jP -Jp -Zx -Id -On -id -pe -uh -Jv -VI -On -mD -au -pR -dx -pR -dd -mD -WQ -xh -WQ -mD -hy -eF -eF -eF -eF -eF -db -gO -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +akG +atj +aya +aUo +aTA +aZf +aZe +aZT +aeh +avZ +aFp +aCb +aOn +aMc +aMc +aMc +aIS +api +api +aXN +aeU +api +api +aZf +api +api +api +api +api +aOn +apk +ajP +aJp +aZx +aId +aOn +aid +ape +auh +aJv +aVI +aOn +amD +aau +apR +adx +apR +add +amD +aWQ +axh +aWQ +amD +ahy +aeF +aeF +aeF +aeF +aeF +adb +agO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (128,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -kG -tj -Nl -MU -hU -On -ld -Pf -uB -bW -hu -sU -Sm -Mc -dQ -Mc -CS -pi -pi -XN -NK -JC -pi -Zf -pi -hw -hw -pi -pi -On -Cn -ig -Xn -Dw -Ge -On -uh -uh -uh -Ok -Kc -On -mD -mD -mD -mD -mD -qR -mD -ww -xi -wz -qR -NQ -eF -hx -TE -VL -eF -bU -MY -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +akG +atj +aNl +aMU +ahU +aOn +ald +aPf +auB +abW +ahu +asU +aSm +aMc +adQ +aMc +aCS +api +api +aXN +aNK +aJC +api +aZf +api +ahw +ahw +api +api +aOn +aCn +aig +aXn +aDw +aGe +aOn +auh +auh +auh +aOk +aKc +aOn +amD +amD +amD +amD +amD +aqR +amD +aww +axi +awz +aqR +aNQ +aeF +ahx +aTE +aVL +aeF +abU +aMY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (129,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -kG -tj -oj -pL -nq -zj -XX -Yc -Rd -Ys -SU -Cb -On -Mc -Mc -Mc -On -pi -pi -pi -pi -pi -pi -Zf -lQ -eU -NK -pi -pi -On -zy -xC -CU -iD -OR -On -Rt -Vc -DM -se -yg -On -Td -Td -Td -Td -Td -Td -mD -ss -xj -fa -mD -Tj -eF -PX -Ke -eV -eF -gF -gO -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +akG +atj +aoj +apL +anq +azj +aXX +aYc +aRd +aYs +aSU +aCb +aOn +aMc +aMc +aMc +aOn +api +api +api +api +api +api +aZf +alQ +aeU +aNK +api +api +aOn +azy +axC +aCU +aiD +aOR +aOn +aRt +aVc +aDM +ase +ayg +aOn +aTd +aTd +aTd +aTd +aTd +aTd +amD +ass +axj +afa +amD +aTj +aeF +aPX +aKe +aeV +aeF +agF +agO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (130,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -kG -tj -VQ -TL -xX -On -lO -Za -Yo -pl -dV -WX -On -Mc -Mc -Mc -On -EK -pi -SI -SI -sn -Ly -On -qa -pp -pi -pi -sn -On -EA -pp -Cs -iD -HQ -On -yM -aW -uh -yg -yg -On -Td -Td -Td -Td -Td -Td -mD -ss -fw -tr -gS -vm -WR -RH -WR -he -WR -ty -gO -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +akG +atj +aVQ +aTL +axX +aOn +alO +aZa +aYo +apl +adV +aWX +aOn +aMc +aMc +aMc +aOn +aEK +api +aSI +aSI +asn +aLy +aOn +aqa +app +api +api +asn +aOn +aEA +app +aCs +aiD +aHQ +aOn +ayM +aaW +auh +ayg +ayg +aOn +aTd +aTd +aTd +aTd +aTd +aTd +amD +ass +afw +atr +agS +avm +aWR +aRH +aWR +ahe +aWR +aty +agO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (131,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -tj -tj -tj -tj -On -On -On -On -On -On -On -On -Mc -Mc -Mc -On -On -On -On -On -On -On -On -Tx -pi -pi -pi -Ly -On -Dt -Ss -wD -BB -AC -On -dC -Aa -Yd -cd -wY -On -Td -Td -Td -Td -Td -Td -mD -wx -fw -wB -yr -pR -RH -JW -eE -rB -RH -YI -gO -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +atj +atj +atj +atj +aOn +aOn +aOn +aOn +aOn +aOn +aOn +aOn +aMc +aMc +aMc +aOn +aOn +aOn +aOn +aOn +aOn +aOn +aOn +aTx +api +api +api +aLy +aOn +aDt +aSs +awD +aBB +aAC +aOn +adC +aAa +aYd +acd +awY +aOn +aTd +aTd +aTd +aTd +aTd +aTd +amD +awx +afw +awB +ayr +apR +aRH +aJW +aeE +arB +aRH +aYI +agO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (132,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Uv -PR -cC -IH -up -MI -jD -ds -nr -Wa -Ej -On -Mc -Mc -Mc -On -ln -hF -QV -tS -RY -EB -On -On -Zf -Zf -Zf -On -On -On -Zf -Zf -Zf -On -On -On -Zf -Zf -Zf -On -Yn -Yn -Yn -Yn -Td -Td -Td -vF -wy -TK -xQ -mD -pR -Wy -Sk -Zs -RF -OX -NL -gO -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aUv +aPR +acC +aIH +aup +aMI +ajD +ads +anr +aWa +aEj +aOn +aMc +aMc +aMc +aOn +aln +ahF +aQV +atS +aRY +aEB +aOn +aOn +aZf +aZf +aZf +aOn +aOn +aOn +aZf +aZf +aZf +aOn +aOn +aOn +aZf +aZf +aZf +aOn +aYn +aYn +aYn +aYn +aTd +aTd +aTd +avF +awy +aTK +axQ +amD +apR +aWy +aSk +aZs +aRF +aOX +aNL +agO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (133,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ua -mv -Na -ID -hL -Al -yR -yR -Al -On -Mc -Mc -Mc -IS -QV -sT -JY -QT -ky -hl -mJ -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Yn -Td -Td -Td -gS -wz -TK -xR -OQ -QE -PM -Om -SR -Yy -AL -oK -gO -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aft +aft +aft +aft +aft +aft +aft +aft +aft +aft +aft +aft +aft +aft +aft +aft +aft +aft +aft +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aua +amv +aNa +aID +ahL +aAl +ayR +ayR +aAl +aOn +aMc +aMc +aMc +aIS +aQV +asT +aJY +aQT +aky +ahl +amJ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aYn +aTd +aTd +aTd +agS +awz +aTK +axR +aOQ +aQE +aPM +aOm +aSR +aYy +aAL +aoK +agO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (134,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ua -hv -ID -el -Sc -Al -yR -yR -Al -fm -Mc -dQ -Mc -VA -QV -pM -bn -Pi -fA -UH -mJ -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Yn -Td -Td -Td -mD -su -fw -wh -gS -nj -MJ -TI -Zl -zz -OX -aR -gO -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aft +aft +aAf +aYB +aGH +aUy +ahW +aYB +afC +ahW +aPI +aYB +aGH +afC +aWU +afC +aYB +arI +ajY +aft +aOE +aOE +aOE +aOE +aOE +aaa +aaa +aua +ahv +aID +ael +aSc +aAl +ayR +ayR +aAl +afm +aMc +adQ +aMc +aVA +aQV +apM +abn +aPi +afA +aUH +amJ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aYn +aTd +aTd +aTd +amD +asu +afw +awh +agS +anj +aMJ +aTI +aZl +azz +aOX +aaR +agO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (135,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ua -iU -Na -ID -SZ -Al -yR -yR -Al -On -Mc -Mc -Mc -On -jd -QV -yN -iT -fA -nx -mJ -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Yn -Td -Td -Td -mD -su -fw -bm -mD -vm -Ny -ar -fi -ar -Ny -sx -gO -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aft +aft +aEW +aYB +aGH +ahW +aQG +aQG +aQG +aQG +aQG +aYB +aBN +aEW +aGH +aCR +aYB +ahW +aEW +aCR +aCR +aZi +aYr +acv +aYr +aOE +aOE +aaa +aua +aiU +aNa +aID +aSZ +aAl +ayR +ayR +aAl +aOn +aMc +aMc +aMc +aOn +ajd +aQV +ayN +aiT +afA +anx +amJ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aYn +aTd +aTd +aTd +amD +asu +afw +abm +amD +avm +aNy +aar +afi +aar +aNy +asx +agO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (136,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -On -zA -QW -Na -oC -Al -Yw -Ym -lL -On -Mc -Mc -Mc -On -Yp -QV -VD -gg -YQ -bS -On -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Yn -mD -mD -mD -mD -SF -fw -ts -qR -ff -WR -RH -NC -RH -WR -dW -gO -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aft +aCR +aGH +afC +aGD +aAf +aQG +aIi +alf +awI +aQG +aQG +aQG +aQG +aQG +aQG +aQG +aug +aqL +aPH +aGU +aXK +aYr +aYr +aYr +aRS +aft +aaa +aOn +azA +aQW +aNa +aoC +aAl +aYw +aYm +alL +aOn +aMc +aMc +aMc +aOn +aYp +aQV +aVD +agg +aYQ +abS +aOn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aYn +amD +amD +amD +amD +aSF +afw +ats +aqR +aff +aWR +aRH +aNC +aRH +aWR +adW +agO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (137,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -On -On -On -SQ -On -On -On -On -On -On -Mc -Mc -Mc -On -On -On -On -On -On -On -On -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Yn -NE -NE -NE -mD -su -fw -ts -mD -mD -rY -ST -VO -ST -rY -Ya -Ya -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aft +aft +aim +afC +afC +aEW +aYB +aQG +aQG +awR +aQG +aQG +aQG +aat +aMA +aKg +ams +avI +atT +aSy +afr +aYe +aaY +aYr +acv +aYr +apt +aft +aft +aOn +aOn +aOn +aSQ +aOn +aOn +aOn +aOn +aOn +aOn +aMc +aMc +aMc +aOn +aOn +aOn +aOn +aOn +aOn +aOn +aOn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aYn +aNE +aNE +aNE +amD +asu +afw +ats +amD +amD +arY +aST +aVO +aST +arY +aYa +aYa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (138,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -On -Gb -iq -FS -YO -dP -yC -FG -On -Mc -Mc -Mc -On -hR -Eb -sh -AN -qm -Yj -On -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Yn -NE -NE -NE -mD -su -fw -ts -mD -bp -Zv -sE -bH -sE -Zv -VZ -Ya -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aft +aYB +aGH +aGD +ajY +aQG +aQG +aQG +ayV +aAY +aMA +adU +aQG +aHe +aVo +acf +alv +aQG +aox +aSy +ayI +aYe +aVW +aYr +acv +aYr +atJ +aYB +aft +aaa +aOn +aGb +aiq +aFS +aYO +adP +ayC +aFG +aOn +aMc +aMc +aMc +aOn +ahR +aEb +ash +aAN +aqm +aYj +aOn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aYn +aNE +aNE +aNE +amD +asu +afw +ats +amD +abp +aZv +asE +abH +asE +aZv +aVZ +aYa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (139,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Zf -ME -yg -Cc -AR -yC -yg -yg -On -Mc -Mc -Mc -IS -IU -ID -VU -JQ -Tf -IU -ua -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Yn -NE -NE -NE -mD -su -xf -ts -mD -DY -bH -bH -bH -sE -sE -Vu -Ya -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aft +aAf +aGH +aYB +aCE +aQG +auK +anJ +amN +aYl +arw +agI +adM +akp +aVo +aVo +aBb +aXG +aWq +aWq +aFj +aYe +aWl +aYr +aYr +aYr +aDV +aGD +aOE +aaa +aZf +aME +ayg +aCc +aAR +ayC +ayg +ayg +aOn +aMc +aMc +aMc +aIS +aIU +aID +aVU +aJQ +aTf +aIU +aua +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aYn +aNE +aNE +aNE +amD +asu +axf +ats +amD +aDY +abH +abH +abH +asE +asE +aVu +aYa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Zf -OD -yg -yg -Pl -yC -yC -yg -CN -Mc -dQ -Mc -cI -IU -ID -VU -eo -ID -IU -ua -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Yn -NE -NE -NE -qR -wA -fw -ts -mD -VE -bH -RV -Sq -gX -sE -yS -Ya -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aft +aGD +aCR +aAf +aYB +avI +aTo +aYG +aqP +avT +all +aQG +aXq +aSu +ahY +ahY +aFu +aQG +aDD +aEX +aTD +afG +aMb +aYr +acv +aYr +adu +aYB +aOE +aaa +aZf +aOD +ayg +ayg +aPl +ayC +ayC +ayg +aCN +aMc +adQ +aMc +acI +aIU +aID +aVU +aeo +aID +aIU +aua +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aYn +aNE +aNE +aNE +aqR +awA +afw +ats +amD +aVE +abH +aRV +aSq +agX +asE +ayS +aYa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (141,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Zf -wV -yg -yg -In -yg -yC -yC -IS -Mc -Mc -Mc -On -ue -XI -ID -ID -ID -Ug -ua -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Yn -NE -NE -NE -mD -su -fw -ts -mD -Xe -bH -bA -bj -Pt -sE -FB -Ya -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aft +aft +aUy +aCR +aGH +avI +aOu +aYG +aqP +aQG +aQG +aQG +aQG +aQG +aEa +aXL +aRh +aQG +aQu +aIx +aPH +arI +aqz +aYr +acv +aYr +apt +aGD +aOE +aaa +aZf +awV +ayg +ayg +aIn +ayg +ayC +ayC +aIS +aMc +aMc +aMc +aOn +aue +aXI +aID +aID +aID +aUg +aua +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aYn +aNE +aNE +aNE +amD +asu +afw +ats +amD +aXe +abH +abA +abj +aPt +asE +aFB +aYa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (142,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -On -go -yC -yC -WH -yg -yg -Hc -On -Mc -Mc -Mc -On -ZD -Dl -AP -eW -qe -Jo -On -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Yn -NE -NE -NE -mD -su -xk -ts -mD -yl -bH -bH -bH -sE -sE -IK -Ya -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aft +afC +aGH +aEW +aQG +aIe +aOo +aJr +aQG +ais +aOr +amN +aMe +aWF +aWF +aWF +avI +aGD +ahW +aCR +aYB +akx +aYr +aYr +aYr +aDV +afC +aft +aaa +aOn +ago +ayC +ayC +aWH +ayg +ayg +aHc +aOn +aMc +aMc +aMc +aOn +aZD +aDl +aAP +aeW +aqe +aJo +aOn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aYn +aNE +aNE +aNE +amD +asu +axk +ats +amD +ayl +abH +abH +abH +asE +asE +aIK +aYa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (143,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -On -On -On -On -On -On -On -On -On -Mc -Mc -Mc -On -On -On -On -On -On -On -On -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Yn -NE -NE -NE -mD -wB -xi -xS -mD -bI -oL -fj -RM -PE -wl -VM -Ya -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aft +aft +aUy +ahW +aQG +aFy +aUW +aSb +aQG +aNW +aOo +aBP +aQG +aAE +aWF +als +avI +aCR +aCa +aEW +ahW +akt +aYr +aYr +aYr +adu +aft +aft +aaa +aOn +aOn +aOn +aOn +aOn +aOn +aOn +aOn +aOn +aMc +aMc +aMc +aOn +aOn +aOn +aOn +aOn +aOn +aOn +aOn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aYn +aNE +aNE +aNE +amD +awB +axi +axS +amD +abI +aoL +afj +aRM +aPE +awl +aVM +aYa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (144,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -On -fU -Nc -XR -Xo -XR -LL -On -Mc -Mc -Mc -On -rh -zX -zX -cH -ki -Mk -On -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Yn -NE -NE -NE -mD -wu -xh -wu -mD -mD -rY -Ya -Ya -Ya -Ya -Ya -Ya -FR -FR -FR -FR -FR -aa -aa -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aft +aft +aAf +aQG +aQG +aQG +aQG +aQG +aoA +aDx +aiy +aQG +atF +aWF +aIo +aQG +afC +aDr +aCR +aYB +akx +aYr +acv +aYr +aFk +aft +aaa +aaa +aaa +aOn +afU +aNc +aXR +aXo +aXR +aLL +aOn +aMc +aMc +aMc +aOn +arh +azX +azX +acH +aki +aMk +aOn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aYn +aNE +aNE +aNE +amD +awu +axh +awu +amD +amD +arY +aYa +aYa +aYa +aYa +aYa +aYa +aFR +aFR +aFR +aFR +aFR +aaa +aaa +aaa "} (145,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dS -dS -gL -gL -dS -dS -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Zf -uu -QV -QV -QV -QV -QV -On -Mc -Mc -Mc -IS -zX -QP -zX -zX -zX -zX -Zf -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Yn -NE -NE -NE -vz -vz -vz -vz -TY -mD -QC -FR -Qf -Ty -xY -qI -kR -Um -Un -na -Gc -FR -aa -aa -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aft +adS +adS +agL +agL +adS +adS +aQG +aQG +aQG +aQG +aQG +afZ +aoT +aQG +aCa +aCR +aCV +aCR +akx +aYr +acv +aYr +aft +aft +aaa +aaa +aaa +aZf +auu +aQV +aQV +aQV +aQV +aQV +aOn +aMc +aMc +aMc +aIS +azX +aQP +azX +azX +azX +azX +aZf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aYn +aNE +aNE +aNE +avz +avz +avz +avz +aTY +amD +aQC +aFR +aQf +aTy +axY +aqI +akR +aUm +aUn +ana +aGc +aFR +aaa +aaa +aaa "} (146,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dS -rd -Hn -xH -uE -dS -dS -dS -dS -dS -aa -aa -aa -aa -aa -aa -aa -pG -pG -pG -pG -pG -pG -aa -aa -aa -aa -Zf -Ns -QV -wp -cM -kl -QV -kv -Mc -dQ -Mc -Gt -zX -zX -zX -pv -zX -rh -Zf -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Yn -Yn -Yn -Yn -Yn -QC -QC -mD -mD -Zb -mD -Zb -mD -xG -MP -FR -yO -Hj -Hj -pK -xF -Um -Du -ZF -sX -FR -aa -aa -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +adS +ard +aHn +axH +auE +adS +adS +adS +adS +adS +aQG +aQG +aQG +aQG +ahW +aUy +ahW +apG +apG +aMt +aUz +aMt +apG +aaa +aaa +aaa +aaa +aZf +aNs +aQV +awp +acM +akl +aQV +akv +aMc +adQ +aMc +aGt +azX +azX +azX +apv +azX +arh +aZf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aYn +aYn +aYn +aYn +aYn +aQC +aQC +amD +amD +aZb +amD +aZb +amD +axG +aMP +aFR +ayO +aHj +aHj +apK +axF +aUm +aDu +aZF +asX +aFR +aaa +aaa +aaa "} (147,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -gL -JF -LK -LK -RX -rd -cF -IF -fh -dS -dS -dS -dS -dS -dS -pG -pG -pG -rj -ZP -oE -Ql -pG -aa -aa -aa -aa -Zf -Zc -ro -sI -sI -sI -QV -IS -Mc -Mc -Mc -On -zX -om -zX -zX -zX -zX -Zf -aa -aa -aa -aa -aa -aa -wc -wc -wc -wc -wc -wc -wc -wc -wc -wc -wc -wc -nP -fu -fu -fu -fu -fu -fu -xp -Pr -aw -ae -ew -ew -FR -tD -mo -yh -tR -xF -Um -Qg -kj -uL -FR -aa -aa -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agL +aJF +aLK +aLK +aRX +ard +acF +aIF +afh +adS +adS +adS +adS +adS +adS +apG +apG +apG +arj +aZP +aoE +aQl +apG +aaa +aaa +aaa +aaa +aZf +aZc +aro +asI +asI +asI +aQV +aIS +aMc +aMc +aMc +aOn +azX +aom +azX +azX +azX +azX +aZf +aaa +aaa +aaa +aaa +aaa +aaa +awc +awc +awc +awc +awc +awc +awc +awc +awc +awc +awc +awc +anP +afu +afu +afu +afu +afu +afu +axp +aPr +aaw +aae +aew +aew +aFR +atD +amo +ayh +atR +axF +aUm +aQg +akj +auL +aFR +aaa +aaa +aaa "} (148,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -gL -Rc -LK -LK -IM -YE -rq -tv -dS -dS -XZ -rM -bo -rL -dS -pG -pG -rj -rj -Xb -uQ -yi -pG -aa -aa -aa -aa -On -mh -dt -Yz -ma -PZ -Ed -On -Mc -Mc -Mc -On -Vb -zX -zX -qN -GY -Dh -On -aa -aa -aa -aa -aa -aa -wc -Wg -Jh -Jh -IE -IE -Jh -Jh -IE -IE -Is -aJ -xp -aw -nP -xp -Ht -aw -nP -TV -Wb -Mo -pq -ew -ew -DG -KI -Pq -Pq -Pq -xF -Um -Pn -cD -mX -FR -aa -aa -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agL +aRc +aLK +aLK +aIM +aYE +arq +atv +adS +adS +aXZ +arM +abo +arL +adS +apG +apG +arj +arj +aXb +auQ +ayi +apG +aaa +aaa +aaa +aaa +aOn +amh +adt +aYz +ama +aPZ +aEd +aOn +aMc +aMc +aMc +aOn +aVb +azX +azX +aqN +aGY +aDh +aOn +aaa +aaa +aaa +aaa +aaa +aaa +awc +aWg +aJh +aJh +aIE +aIE +aJh +aJh +aIE +aIE +aIs +aaJ +axp +aaw +anP +axp +aHt +aaw +anP +aTV +aWb +aMo +apq +aew +aew +aDG +aKI +aPq +aPq +aPq +axF +aUm +aPn +acD +amX +aFR +aaa +aaa +aaa "} (149,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -gL -JF -LK -LK -IM -YE -br -tv -gL -so -kb -WB -WB -Nd -dS -Mm -rj -rj -rj -Xb -uQ -yi -pG -aa -aa -aa -aa -On -On -On -On -On -On -On -On -Mc -Mc -Mc -On -On -On -On -On -On -On -On -aa -aa -aa -aa -aa -aa -wc -It -It -It -It -It -It -It -It -It -It -aJ -TV -Wb -St -TV -Wb -Mo -St -TV -qM -Mo -Jd -ew -dh -DG -KI -Pq -Pq -Pq -fb -qD -Oa -Oa -Oa -FR -aa -aa -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agL +aJF +aLK +aLK +aIM +aYE +abr +atv +agL +aso +akb +aWB +aWB +aNd +adS +aMm +arj +arj +arj +aXb +auQ +ayi +apG +aaa +aaa +aaa +aaa +aOn +aOn +aOn +aOn +aOn +aOn +aOn +aOn +aMc +aMc +aMc +aOn +aOn +aOn +aOn +aOn +aOn +aOn +aOn +aaa +aaa +aaa +aaa +aaa +aaa +awc +aIt +aIt +aIt +aIt +aIt +aIt +aIt +aIt +aIt +aIt +aaJ +aTV +aWb +aSt +aTV +aWb +aMo +aSt +aTV +aqM +aMo +aJd +aew +adh +aDG +aKI +aPq +aPq +aPq +afb +aqD +aOa +aOa +aOa +aFR +aaa +aaa +aaa "} (150,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dS -rd -LK -LK -IM -YE -rq -tv -xz -rr -mW -UI -NN -ZH -Qn -Ev -rj -bX -rj -Xb -uQ -yi -pG -aa -aa -aa -aa -aa -aa -aa -aa -aa -iA -iA -iA -fB -fB -fB -iA -iA -iA -aa -aa -aa -aa -aa -iA -iA -iA -iA -iA -aa -wc -It -It -It -It -It -It -It -It -It -It -aJ -YD -Mo -St -TV -Wb -Mo -St -TV -qM -Mo -Jd -ew -ew -DG -hN -Hd -Hd -Pq -Ef -Hv -Yf -Yf -kR -FR -aa -aa -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +adS +ard +aLK +aLK +aIM +aYE +arq +atv +axz +arr +amW +aUI +aNN +aZH +aQn +aEv +arj +abX +arj +aXb +auQ +ayi +apG +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aiA +aiA +aiA +afB +afB +afB +aiA +aiA +aiA +aaa +aaa +aaa +aaa +aaa +aiA +aiA +aiA +aiA +aiA +aaa +awc +aIt +aIt +aIt +aIt +aIt +aIt +aIt +aIt +aIt +aIt +aaJ +aYD +aMo +aSt +aTV +aWb +aMo +aSt +aTV +aqM +aMo +aJd +aew +aew +aDG +ahN +aHd +aHd +aPq +aEf +aHv +aYf +aYf +akR +aFR +aaa +aaa +aaa "} (151,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dS -dS -gL -dS -dS -rd -LK -bz -WJ -WC -tv -gL -jQ -SM -SM -SM -ES -Qn -GS -bX -rj -rj -Xb -vp -yi -pG -aa -aa -iA -iA -iA -aa -aa -aa -aa -iA -Uh -Uh -fB -Pj -fB -Uh -Uh -iA -iA -iA -iA -iA -iA -iA -mP -SL -mP -iA -Xw -Xw -It -It -It -It -It -It -It -It -It -It -aJ -gx -Mo -nP -gx -Wb -Oh -nP -TV -qM -Mo -pq -ew -GI -FR -Hq -qJ -Zg -yL -Pq -Pq -kJ -Gg -wZ -FR -aa -aa -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +adS +adS +agL +adS +adS +ard +aLK +abz +aWJ +aWC +atv +agL +ajQ +aSM +aSM +aSM +aES +aQn +aGS +abX +arj +arj +aXb +avp +ayi +apG +aaa +aaa +aiA +aiA +aiA +aaa +aaa +aaa +aaa +aiA +aUh +aUh +afB +aPj +afB +aUh +aUh +aiA +aiA +aiA +aiA +aiA +aiA +aiA +amP +aSL +amP +aiA +aXw +aXw +aIt +aIt +aIt +aIt +aIt +aIt +aIt +aIt +aIt +aIt +aaJ +agx +aMo +anP +agx +aWb +aOh +anP +aTV +aqM +aMo +apq +aew +aGI +aFR +aHq +aqJ +aZg +ayL +aPq +aPq +akJ +aGg +awZ +aFR +aaa +aaa +aaa "} (152,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dS -dS -UF -jf -yG -dS -dS -LK -aX -Wi -XE -tv -dS -dS -Lx -ii -kw -aq -Qn -KN -rj -rj -ZP -TW -FA -ol -pG -aa -aa -iA -Ks -iA -iA -iA -iA -iA -iA -Uh -ns -gT -gT -gT -uU -Uh -iA -Dg -lk -Fh -zR -mP -kf -Qa -gQ -Qa -zv -mP -Xw -It -It -It -It -It -It -It -It -It -It -aJ -Hr -Mo -HY -Hr -Wb -UC -HY -TV -Wb -Mo -ae -ew -bZ -FR -xZ -xZ -KA -yL -Pq -Pq -kJ -uY -wZ -FR -aa -aa -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +adS +adS +aUF +ajf +ayG +adS +adS +aLK +aaX +aWi +aXE +atv +adS +adS +aLx +aii +akw +aaq +aQn +aKN +arj +arj +aZP +aTW +aFA +aol +apG +aaa +aaa +aiA +aKs +aiA +aiA +aiA +aiA +aiA +aiA +aUh +ans +agT +agT +agT +auU +aUh +aiA +aDg +alk +aFh +azR +amP +akf +aQa +agQ +aQa +azv +amP +aXw +aIt +aIt +aIt +aIt +aIt +aIt +aIt +aIt +aIt +aIt +aaJ +aHr +aMo +aHY +aHr +aWb +aUC +aHY +aTV +aWb +aMo +aae +aew +abZ +aFR +axZ +axZ +aKA +ayL +aPq +aPq +akJ +auY +awZ +aFR +aaa +aaa +aaa "} (153,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -gL -hg -Kd -LK -dz -Ku -gL -LK -vN -Ma -XE -oe -Zm -Ls -YZ -CA -uJ -kw -NF -ZP -aE -aE -qf -od -DC -ng -pG -iA -iA -iA -rZ -iA -yt -uI -iA -iA -Uh -Uh -Lg -yb -yQ -ev -uF -Uh -Uh -HP -lC -Uk -nf -Sz -Cq -HT -HT -HT -Mh -Sz -Xw -It -It -It -It -It -It -It -It -It -It -aJ -Hr -Mo -HY -Hr -Wb -UC -HY -TV -Nf -Mo -ae -ew -Vj -FR -xZ -xZ -Cz -sp -sp -sp -No -sp -FQ -FR -aa -aa -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +agL +ahg +aKd +aLK +adz +aKu +agL +aLK +avN +aMa +aXE +aoe +aZm +aLs +aYZ +aCA +auJ +akw +aNF +aZP +aaE +aaE +aqf +aod +aDC +ang +apG +aiA +aiA +aiA +arZ +aiA +ayt +auI +aiA +aiA +aUh +aUh +aLg +ayb +ayQ +aev +auF +aUh +aUh +aHP +alC +aUk +anf +aSz +aCq +aHT +aHT +aHT +aMh +aSz +aXw +aIt +aIt +aIt +aIt +aIt +aIt +aIt +aIt +aIt +aIt +aaJ +aHr +aMo +aHY +aHr +aWb +aUC +aHY +aTV +aNf +aMo +aae +aew +aVj +aFR +axZ +axZ +aCz +asp +asp +asp +aNo +asp +aFQ +aFR +aaa +aaa +aaa "} (154,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dS -wO -Sv -pg -aG -uS -px -LK -kM -cc -XE -mg -Zp -PO -YZ -WG -WG -Av -NF -Xb -uQ -uQ -vp -Qo -YF -nh -pG -DQ -iA -Jz -HK -HK -dD -VV -Ju -iA -ch -QJ -Il -uf -fB -EM -vr -uF -ch -uj -Mf -KY -uT -mP -Uc -HT -Rr -HT -Mv -mP -Xw -It -It -It -It -It -It -It -It -It -It -aJ -BA -Mo -nP -BA -Wb -Rf -nP -TV -Wb -Mo -pq -ew -gc -FR -FR -FR -FR -As -As -qv -FR -FR -FR -FR -lr -lr -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +adS +awO +aSv +apg +aaG +auS +apx +aLK +akM +acc +aXE +amg +aZp +aPO +aYZ +aWG +aWG +aAv +aNF +aXb +auQ +auQ +avp +aQo +aYF +anh +apG +aDQ +aiA +aJz +aHK +aHK +adD +aVV +aJu +aiA +ach +aQJ +aIl +auf +afB +aEM +avr +auF +ach +auj +aMf +aKY +auT +amP +aUc +aHT +aRr +aHT +aMv +amP +aXw +aIt +aIt +aIt +aIt +aIt +aIt +aIt +aIt +aIt +aIt +aaJ +aBA +aMo +anP +aBA +aWb +aRf +anP +aTV +aWb +aMo +apq +aew +agc +aFR +aFR +aFR +aFR +aAs +aAs +aqv +aFR +aFR +aFR +aFR +alr +alr +aaa "} (155,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -gL -jv -bE -LK -kg -yf -gL -LK -Ay -Ma -XE -KU -Wx -Hu -YZ -CA -cm -Vy -NF -JB -ET -ET -hI -Ky -rX -MG -pG -ka -SE -PY -GW -GW -GW -GW -ZM -ev -JH -yb -uf -co -ED -oi -EM -ev -AM -Vf -Gn -HM -uT -JH -Cq -HT -GW -HT -Mh -mA -Xw -It -It -It -It -It -It -It -It -It -It -aJ -TV -Mo -St -TV -Wb -Mo -St -TV -qM -Mo -Jd -xp -Ht -Ht -Ht -Ht -Ht -Ht -Ht -Ht -aw -mw -rE -GM -KT -lr -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +agL +ajv +abE +aLK +akg +ayf +agL +aLK +aAy +aMa +aXE +aKU +aWx +aHu +aYZ +aCA +acm +aVy +aNF +aJB +aET +aET +ahI +aKy +arX +aMG +apG +aka +aSE +aPY +aGW +aGW +aGW +aGW +aZM +aev +aJH +ayb +auf +aco +aED +aoi +aEM +aev +aAM +aVf +aGn +aHM +auT +aJH +aCq +aHT +aGW +aHT +aMh +amA +aXw +aIt +aIt +aIt +aIt +aIt +aIt +aIt +aIt +aIt +aIt +aaJ +aTV +aMo +aSt +aTV +aWb +aMo +aSt +aTV +aqM +aMo +aJd +axp +aHt +aHt +aHt +aHt +aHt +aHt +aHt +aHt +aaw +amw +arE +aGM +aKT +alr +aaa "} (156,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dS -dS -kh -Fg -NJ -dS -dS -LK -aX -Wi -XE -tv -dS -dS -lT -EG -Vy -yK -Qn -Ev -rj -rj -JB -Tr -FA -ol -pG -ka -SE -Pc -GW -Qi -yJ -GW -Qv -Uc -JH -Mv -fB -FZ -gE -cq -fB -Uc -AM -Kr -dT -hh -uT -JH -Uc -Js -GW -Js -Mv -Ki -Xw -It -It -It -It -It -Jq -It -It -It -It -aJ -YD -Mo -St -TV -ok -Mo -St -Rj -qM -Mo -Jd -TV -Nf -Wb -Wb -Wb -Wb -Wb -Nf -Wb -Mo -oF -GM -GM -EY -lr -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +adS +adS +akh +aFg +aNJ +adS +adS +aLK +aaX +aWi +aXE +atv +adS +adS +alT +aEG +aVy +ayK +aQn +aEv +arj +arj +aJB +aTr +aFA +aol +apG +aka +aSE +aPc +aGW +aQi +ayJ +aGW +aQv +aUc +aJH +aMv +afB +aFZ +agE +acq +afB +aUc +aAM +aKr +adT +ahh +auT +aJH +aUc +aJs +aGW +aJs +aMv +aKi +aXw +aIt +aIt +aIt +aIt +aIt +aJq +aIt +aIt +aIt +aIt +aaJ +aYD +aMo +aSt +aTV +aok +aMo +aSt +aRj +aqM +aMo +aJd +aTV +aNf +aWb +aWb +aWb +aWb +aWb +aNf +aWb +aMo +aoF +aGM +aGM +aEY +alr +aaa "} (157,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dS -dS -gL -dS -dS -rd -LK -RX -GR -va -tv -gL -so -QI -QI -QI -sG -Qn -GS -bX -rj -rj -Xb -vp -yi -pG -ka -SE -PY -GW -GW -GW -GW -JX -Nz -JH -bi -zv -DF -Ak -HN -kf -Nz -AM -Kj -Lv -HM -uT -JH -Cq -HT -GW -HT -Mh -GO -Xw -It -It -It -It -It -It -It -It -It -It -aJ -TV -Mo -St -TV -Wb -Mo -St -TV -qM -Mo -Jd -Xx -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Ro -mw -wq -GM -xy -lr -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +adS +adS +agL +adS +adS +ard +aLK +aRX +aGR +ava +atv +agL +aso +aQI +aQI +aQI +asG +aQn +aGS +abX +arj +arj +aXb +avp +ayi +apG +aka +aSE +aPY +aGW +aGW +aGW +aGW +aJX +aNz +aJH +abi +azv +aDF +aAk +aHN +akf +aNz +aAM +aKj +aLv +aHM +auT +aJH +aCq +aHT +aGW +aHT +aMh +aGO +aXw +aIt +aIt +aIt +aIt +aIt +aIt +aIt +aIt +aIt +aIt +aaJ +aTV +aMo +aSt +aTV +aWb +aMo +aSt +aTV +aqM +aMo +aJd +aXx +aMp +aMp +aMp +aMp +aMp +aMp +aMp +aMp +aRo +amw +awq +aGM +axy +alr +aaa "} (158,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dS -rd -LK -LK -IM -YE -rq -tv -xz -rr -mW -UI -NN -ZH -Qn -KN -rj -bX -rj -Xb -uQ -yi -pG -Mx -iA -Hm -El -El -El -El -aM -iA -Do -NH -Tp -zv -fB -kf -eG -Db -Do -gZ -Mf -XY -uT -mP -Uc -HT -Rr -HT -Mv -mP -Xw -It -It -It -It -It -It -It -It -It -It -aJ -gx -Mo -nP -gx -Wb -Oh -nP -TV -Wb -Mo -pq -ew -qH -QC -tU -tU -la -tU -la -tU -tU -lr -lr -pF -lr -lr -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +adS +ard +aLK +aLK +aIM +aYE +arq +atv +axz +arr +amW +aUI +aNN +aZH +aQn +aKN +arj +abX +arj +aXb +auQ +ayi +apG +aMx +aiA +aHm +aEl +aEl +aEl +aEl +aaM +aiA +aDo +aNH +aTp +azv +afB +akf +aeG +aDb +aDo +agZ +aMf +aXY +auT +amP +aUc +aHT +aRr +aHT +aMv +amP +aXw +aIt +aIt +aIt +aIt +aIt +aIt +aIt +aIt +aIt +aIt +aaJ +agx +aMo +anP +agx +aWb +aOh +anP +aTV +aWb +aMo +apq +aew +aqH +aQC +atU +atU +ala +atU +ala +atU +atU +alr +alr +apF +alr +alr +aaa "} (159,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -gL -xb -LK -LK -IM -YE -br -tv -gL -jQ -Kl -WB -WB -Nd -dS -Mm -rj -rj -rj -Xb -uQ -yi -pG -iA -iA -iA -iA -PT -Dg -cY -iA -iA -Uh -Uh -eI -bi -Qa -Nz -Db -Uh -Uh -HP -QS -YR -Bf -Sz -Cq -HT -HT -HT -Mh -Sz -Xw -It -It -It -It -It -It -It -It -It -It -aJ -Hr -Mo -HY -Hr -Wb -UC -HY -TV -Nf -Mo -ae -ew -Fo -QC -Gs -Gs -Gs -tU -Gs -Gs -Gs -mw -Ra -GM -kQ -lr -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agL +axb +aLK +aLK +aIM +aYE +abr +atv +agL +ajQ +aKl +aWB +aWB +aNd +adS +aMm +arj +arj +arj +aXb +auQ +ayi +apG +aiA +aiA +aiA +aiA +aPT +aDg +acY +aiA +aiA +aUh +aUh +aeI +abi +aQa +aNz +aDb +aUh +aUh +aHP +aQS +aYR +aBf +aSz +aCq +aHT +aHT +aHT +aMh +aSz +aXw +aIt +aIt +aIt +aIt +aIt +aIt +aIt +aIt +aIt +aIt +aaJ +aHr +aMo +aHY +aHr +aWb +aUC +aHY +aTV +aNf +aMo +aae +aew +aFo +aQC +aGs +aGs +aGs +atU +aGs +aGs +aGs +amw +aRa +aGM +akQ +alr +aaa "} (160,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -gL -QN -LK -LK -IM -YE -rq -tv -dS -dS -Bi -on -FY -et -dS -pG -pG -rj -rj -Xb -uQ -yi -pG -aa -aa -iA -iA -Bk -pz -da -wc -iA -iA -Uh -ns -cY -cY -cY -uU -Uh -iA -Dg -tw -tx -UG -mP -EM -yQ -Em -yQ -uf -mP -Xw -It -It -It -It -It -It -It -It -It -It -aJ -Hr -Mo -HY -Hr -Wb -UC -HY -TV -Wb -Mo -ae -ew -UL -QC -fO -tU -tU -tU -tU -tU -fO -mw -aB -GM -kP -lr -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agL +aQN +aLK +aLK +aIM +aYE +arq +atv +adS +adS +aBi +aon +aFY +aet +adS +apG +apG +arj +arj +aXb +auQ +ayi +apG +aaa +aaa +aiA +aiA +aBk +apz +ada +awc +aiA +aiA +aUh +ans +acY +acY +acY +auU +aUh +aiA +aDg +atw +atx +aUG +amP +aEM +ayQ +aEm +ayQ +auf +amP +aXw +aIt +aIt +aIt +aIt +aIt +aIt +aIt +aIt +aIt +aIt +aaJ +aHr +aMo +aHY +aHr +aWb +aUC +aHY +aTV +aWb +aMo +aae +aew +aUL +aQC +afO +atU +atU +atU +atU +atU +afO +amw +aaB +aGM +akP +alr +aaa "} (161,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -gL -Hn -LK -LK -RX -rd -qO -vG -fh -dS -mQ -mQ -mQ -mQ -mQ -mQ -pG -pG -qw -Xb -TF -yi -pG -pG -aa -wc -tz -HU -Qq -DU -qi -wc -iA -Uh -Uh -fB -Pj -fB -Uh -Uh -iA -iA -iA -iA -iA -iA -iA -fB -Pj -fB -iA -Xw -Xw -It -It -It -It -It -It -It -It -It -It -aJ -BA -Mo -nP -BA -Wb -Rf -nP -TV -qM -Mo -pq -ew -Ik -QC -Gs -Gs -Gs -tU -Gs -Gs -Gs -mw -UU -GM -ob -lr -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agL +aHn +aLK +aLK +aRX +ard +aqO +avG +afh +adS +amQ +amQ +amQ +amQ +amQ +amQ +apG +apG +aqw +aXb +aTF +ayi +apG +apG +aaa +awc +atz +aHU +aQq +aDU +aqi +awc +aiA +aUh +aUh +afB +aPj +afB +aUh +aUh +aiA +aiA +aiA +aiA +aiA +aiA +aiA +afB +aPj +afB +aiA +aXw +aXw +aIt +aIt +aIt +aIt +aIt +aIt +aIt +aIt +aIt +aIt +aaJ +aBA +aMo +anP +aBA +aWb +aRf +anP +aTV +aqM +aMo +apq +aew +aIk +aQC +aGs +aGs +aGs +atU +aGs +aGs +aGs +amw +aUU +aGM +aob +alr +aaa "} (162,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dS -rd -rF -gv -uE -mQ -mQ -mQ -mQ -mQ -Oj -Uj -mC -zP -zu -mQ -mQ -pG -rj -Xb -vp -yi -rj -pG -wc -wc -zq -ic -wS -fJ -Up -wc -iA -iA -iA -iA -iA -iA -iA -iA -iA -aa -aa -aa -aa -iA -iA -Xw -Xw -Xw -iA -iA -wc -It -It -It -It -It -It -It -It -It -It -aJ -YD -Mo -St -TV -Wb -Mo -St -TV -qM -Mo -Jd -ew -ew -QC -tU -tU -la -tU -la -tU -tU -lr -lr -pF -lr -lr -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +adS +ard +arF +agv +auE +amQ +amQ +amQ +amQ +amQ +aOj +aUj +amC +azP +azu +amQ +amQ +apG +arj +aXb +avp +ayi +arj +apG +awc +awc +azq +aic +awS +afJ +aUp +awc +aiA +aiA +aiA +aiA +aiA +aiA +aiA +aiA +aiA +aaa +aaa +aaa +aaa +aiA +aiA +aXw +aXw +aXw +aiA +aiA +awc +aIt +aIt +aIt +aIt +aIt +aIt +aIt +aIt +aIt +aIt +aaJ +aYD +aMo +aSt +aTV +aWb +aMo +aSt +aTV +aqM +aMo +aJd +aew +aew +aQC +atU +atU +ala +atU +ala +atU +atU +alr +alr +apF +alr +alr +aaa "} (163,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mQ -mQ -mQ -mQ -mQ -mQ -mQ -mQ -mR -vH -mQ -xl -Xg -ys -mC -zF -Am -Fq -mQ -rj -rj -JB -ET -YX -rj -io -wc -ra -tY -ha -Gp -MD -oq -FP -wc -Er -lh -wc -wc -wc -wc -wc -wc -aa -aa -aa -aa -Jb -XB -En -En -En -YJ -Jb -wc -It -It -It -It -It -It -It -It -It -It -aJ -TV -Mo -St -TV -Wb -Mo -St -TV -qM -Mo -Jd -ew -dh -QC -Bo -Bo -Bo -Bo -Bo -Bo -Bo -mw -wq -GM -xy -lr -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +amQ +amQ +amQ +amQ +amQ +amQ +amQ +amQ +amR +avH +amQ +axl +aXg +ays +amC +azF +aAm +aFq +amQ +arj +arj +aJB +aET +aYX +arj +aio +awc +ara +atY +aha +aGp +aMD +aoq +aFP +awc +aEr +alh +awc +awc +awc +awc +awc +awc +aaa +aaa +aaa +aaa +aJb +aXB +aEn +aEn +aEn +aYJ +aJb +awc +aIt +aIt +aIt +aIt +aIt +aIt +aIt +aIt +aIt +aIt +aaJ +aTV +aMo +aSt +aTV +aWb +aMo +aSt +aTV +aqM +aMo +aJd +aew +adh +aQC +aBo +aBo +aBo +aBo +aBo +aBo +aBo +amw +awq +aGM +axy +alr +aaa "} (164,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mQ -mQ -Rm -Ac -Vz -Nx -ZX -mQ -tL -af -mp -YC -fS -Jn -wE -mC -zN -Am -ZY -MF -rj -rj -uc -Zu -uc -rj -rj -Of -Ka -Ch -hQ -uX -Eo -Ch -te -ce -JG -Gh -jS -wc -EC -Eh -HD -wc -wc -aa -aa -aa -Jb -zD -bQ -vw -cN -xv -Jb -wc -Wg -Jk -Jk -IJ -IJ -Jk -Jk -IJ -IJ -Wg -aJ -Xx -Ro -nP -Xx -Mp -Ro -nP -TV -Wb -Mo -pq -ew -ew -QC -Bo -Bo -Bo -Bo -Bo -Bo -Bo -oF -GM -GM -EY -lr -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +amQ +amQ +aRm +aAc +aVz +aNx +aZX +amQ +atL +aaf +amp +aYC +afS +aJn +awE +amC +azN +aAm +aZY +aMF +arj +arj +auc +aZu +auc +arj +arj +aOf +aKa +aCh +ahQ +auX +aEo +aCh +ate +ace +aJG +aGh +ajS +awc +aEC +aEh +aHD +awc +awc +aaa +aaa +aaa +aJb +azD +abQ +avw +acN +axv +aJb +awc +aWg +aJk +aJk +aIJ +aIJ +aJk +aJk +aIJ +aIJ +aWg +aaJ +aXx +aRo +anP +aXx +aMp +aRo +anP +aTV +aWb +aMo +apq +aew +aew +aQC +aBo +aBo +aBo +aBo +aBo +aBo +aBo +aoF +aGM +aGM +aEY +alr +aaa "} (165,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mQ -mc -vl -IV -IV -IV -GX -UN -ao -ao -kW -wC -EP -JR -KG -An -tL -IX -IR -dE -rj -rj -ZP -aE -Ql -rj -rj -Of -cQ -YS -HX -HX -HX -LS -sa -ce -rg -Jm -Jm -sH -ui -Jm -ed -hX -wc -aa -aa -aa -Jb -Jb -zD -Nj -xv -Jb -Jb -wc -wc -wc -wc -wc -wc -wc -wc -wc -wc -wc -wc -nP -fu -fu -fu -fu -fu -fu -TV -Nf -Mo -ae -ew -ew -QC -vV -Bo -Bo -xs -Bo -Bo -Bo -mw -CD -GM -sl -lr -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +amQ +amc +avl +aIV +aIV +aIV +aGX +aUN +aao +aao +akW +awC +aEP +aJR +aKG +aAn +atL +aIX +aIR +adE +arj +arj +aZP +aaE +aQl +arj +arj +aOf +acQ +aYS +aHX +aHX +aHX +aLS +asa +ace +arg +aJm +aJm +asH +aui +aJm +aed +ahX +awc +aaa +aaa +aaa +aJb +aJb +azD +aNj +axv +aJb +aJb +awc +awc +awc +awc +awc +awc +awc +awc +awc +awc +awc +awc +anP +afu +afu +afu +afu +afu +afu +aTV +aNf +aMo +aae +aew +aew +aQC +avV +aBo +aBo +axs +aBo +aBo +aBo +amw +aCD +aGM +asl +alr +aaa "} (166,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mQ -mQ -be -IV -IV -IV -IV -Vx -mQ -MO -IO -SK -YC -AI -Ng -An -qT -An -xT -bw -dE -sO -sO -nk -iu -Xc -sO -sO -Of -xu -VF -lI -lI -lI -Px -Kk -ce -bl -LE -WP -wc -ui -rQ -gK -ui -wc -wc -aa -aa -pG -Jb -Jb -Jb -Jb -Jb -pG -aa -aa -pG -dJ -Tw -Tw -Tw -Tw -Tw -Tw -gs -pG -pG -pG -pG -pG -pG -pG -pG -Xb -TF -yi -QC -TN -df -QC -Fn -Fn -iv -Fn -iv -Fn -Fn -lr -lr -lr -lr -lr -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +amQ +amQ +abe +aIV +aIV +aIV +aIV +aVx +amQ +aMO +aIO +aSK +aYC +aAI +aNg +aAn +aqT +aAn +axT +abw +adE +asO +asO +ank +aiu +aXc +asO +asO +aOf +axu +aVF +alI +alI +alI +aPx +aKk +ace +abl +aLE +aWP +awc +aui +arQ +agK +aui +awc +awc +aaa +aaa +apG +aJb +aJb +aJb +aJb +aJb +apG +aaa +aaa +apG +adJ +aTw +aTw +aTw +aTw +aTw +aTw +ags +apG +apG +apG +apG +apG +apG +apG +apG +aXb +aTF +ayi +aQC +aTN +adf +aQC +aFn +aFn +aiv +aFn +aiv +aFn +aFn +alr +alr +alr +alr +alr +aaa "} (167,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mQ -Rm -vl -IV -IV -ER -IV -GX -tK -gr -Am -Nt -mQ -DO -An -An -An -An -An -in -mQ -sO -uA -TW -RE -FK -nF -dG -wc -hE -lI -IZ -jX -DZ -lI -cV -wc -cU -cw -an -Cm -ej -Jm -Jm -ed -TR -wc -pG -pG -pG -jR -Sf -Sf -Sf -BK -pG -pG -pG -pG -cB -wf -wf -wf -wf -wf -wf -Op -RO -RO -uZ -Ws -Uf -Ws -tH -pG -Xb -uQ -yi -QC -QC -QC -QC -vV -Bo -Bo -Bo -Bo -Bo -Bo -Bo -Bo -Bo -vV -Fn -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +amQ +aRm +avl +aIV +aIV +aER +aIV +aGX +atK +agr +aAm +aNt +amQ +aDO +aAn +aAn +aAn +aAn +aAn +ain +amQ +asO +auA +aTW +aRE +aFK +anF +adG +awc +ahE +alI +aIZ +ajX +aDZ +alI +acV +awc +acU +acw +aan +aCm +aej +aJm +aJm +aed +aTR +awc +apG +apG +apG +ajR +aSf +aSf +aSf +aBK +apG +apG +apG +apG +acB +awf +awf +awf +awf +awf +awf +aOp +aRO +aRO +auZ +aWs +aUf +aWs +atH +apG +aXb +auQ +ayi +aQC +aQC +aQC +aQC +avV +aBo +aBo +aBo +aBo +aBo +aBo +aBo +aBo +aBo +avV +aFn +aaa "} (168,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mQ -aC -IV -Ox -IV -Jg -IV -GX -tK -gr -xT -Ng -cE -xD -An -vt -vt -vt -An -Wr -BE -uA -Ux -nN -OB -Ab -kk -nF -Pg -FN -lI -dA -wm -zW -lI -VH -Lh -Px -VF -uq -DB -ui -Jm -eC -Jm -qV -wc -pG -zG -ym -wa -ie -QA -qu -sS -ym -xK -pG -pG -dR -wf -wf -wf -wf -wf -hV -vh -sb -sb -YN -IL -Ex -eq -WV -pG -Ec -uQ -yi -pG -aa -aa -Fn -Bo -Bo -Bo -Ow -Bo -Gd -Bo -Ow -Bo -Bo -pS -Fn -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +amQ +aaC +aIV +aOx +aIV +aJg +aIV +aGX +atK +agr +axT +aNg +acE +axD +aAn +avt +avt +avt +aAn +aWr +aBE +auA +aUx +anN +aOB +aAb +akk +anF +aPg +aFN +alI +adA +awm +azW +alI +aVH +aLh +aPx +aVF +auq +aDB +aui +aJm +aeC +aJm +aqV +awc +apG +azG +aym +awa +aie +aQA +aqu +asS +aym +axK +apG +apG +adR +awf +awf +awf +awf +awf +ahV +avh +asb +asb +aYN +aIL +aEx +aeq +aWV +apG +aEc +auQ +ayi +apG +aaa +aaa +aFn +aBo +aBo +aBo +aOw +aBo +aGd +aBo +aOw +aBo +aBo +apS +aFn +aaa "} (169,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mQ -XC -IV -Ox -IV -Fv -IV -GX -tK -gr -Zj -ao -cE -qT -An -vt -LT -vt -An -qT -BE -nk -wH -DR -YF -uC -wH -Fx -Pg -fH -lX -JM -ZZ -Gm -lX -fD -Lh -Jm -Jm -dY -Iy -ui -Jm -La -Jm -Rv -wc -ct -wa -RG -RL -ca -ca -ca -RL -Ah -sS -Kh -ZV -Rx -Rx -Rx -IG -Tw -fY -Tw -wa -My -My -YN -BI -wf -kS -WV -HS -Xb -uQ -yi -pG -aa -aa -Fn -Bo -Bo -Bo -Bo -Bo -Bo -Bo -Bo -Bo -Bo -qd -Fn -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +amQ +aXC +aIV +aOx +aIV +aFv +aIV +aGX +atK +agr +aZj +aao +acE +aqT +aAn +avt +aLT +avt +aAn +aqT +aBE +ank +awH +aDR +aYF +auC +awH +aFx +aPg +afH +alX +aJM +aZZ +aGm +alX +afD +aLh +aJm +aJm +adY +aIy +aui +aJm +aLa +aJm +aRv +awc +act +awa +aRG +aRL +aca +aca +aca +aRL +aAh +asS +aKh +aZV +aRx +aRx +aRx +aIG +aTw +afY +aTw +awa +aMy +aMy +aYN +aBI +awf +akS +aWV +aHS +aXb +auQ +ayi +apG +aaa +aaa +aFn +aBo +aBo +aBo +aBo +aBo +aBo +aBo +aBo +aBo +aBo +aqd +aFn +aaa "} (170,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mQ -aC -IV -Ox -IV -tI -IV -GX -tK -gr -xo -Ol -cE -Az -An -vt -vt -vt -An -mk -BE -zJ -oZ -Ci -dO -lA -kX -nR -Pg -sM -lI -uP -ba -VS -lI -bv -Lh -po -fe -uq -DB -ui -Jm -SY -Jm -mt -wc -vh -ie -Fb -nw -Fb -Fb -Fb -nw -JJ -lD -vh -ZV -YT -YT -YT -ea -pG -pG -pG -pG -pG -pG -YN -BI -wf -kS -WV -HS -Xb -TF -yi -pG -aa -aa -Fn -dc -Ry -sC -Ry -sC -Ry -sC -Ry -sC -Ry -UZ -Fn -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +amQ +aaC +aIV +aOx +aIV +atI +aIV +aGX +atK +agr +axo +aOl +acE +aAz +aAn +avt +avt +avt +aAn +amk +aBE +azJ +aoZ +aCi +adO +alA +akX +anR +aPg +asM +alI +auP +aba +aVS +alI +abv +aLh +apo +afe +auq +aDB +aui +aJm +aSY +aJm +amt +awc +avh +aie +aFb +anw +aFb +aFb +aFb +anw +aJJ +alD +avh +aZV +aYT +aYT +aYT +aea +apG +apG +apG +apG +apG +apG +aYN +aBI +awf +akS +aWV +aHS +aXb +aTF +ayi +apG +aaa +aaa +aFn +adc +aRy +asC +aRy +asC +aRy +asC +aRy +asC +aRy +aUZ +aFn +aaa "} (171,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mQ -hZ -il -IV -IV -tI -IV -GX -tK -gr -Am -Nt -mQ -DO -An -An -An -An -An -DO -mQ -sO -zJ -Tr -RE -kO -nR -dG -wc -hE -lI -IZ -HB -DZ -lI -cV -wc -cU -cw -an -Cm -ej -Jm -Jm -Gu -rR -wc -OV -hd -ca -ca -ca -ca -ca -ca -ca -pA -AF -ZV -YT -YT -YT -ea -pG -pG -ZL -fn -Os -pG -YN -YK -Ad -JV -WV -pG -Xb -vp -Ct -pG -aa -aa -Fn -Bo -Bo -Bo -Bo -Bo -Bo -Bo -Bo -Bo -Bo -Bo -Fn -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +amQ +ahZ +ail +aIV +aIV +atI +aIV +aGX +atK +agr +aAm +aNt +amQ +aDO +aAn +aAn +aAn +aAn +aAn +aDO +amQ +asO +azJ +aTr +aRE +akO +anR +adG +awc +ahE +alI +aIZ +aHB +aDZ +alI +acV +awc +acU +acw +aan +aCm +aej +aJm +aJm +aGu +arR +awc +aOV +ahd +aca +aca +aca +aca +aca +aca +aca +apA +aAF +aZV +aYT +aYT +aYT +aea +apG +apG +aZL +afn +aOs +apG +aYN +aYK +aAd +aJV +aWV +apG +aXb +avp +aCt +apG +aaa +aaa +aFn +aBo +aBo +aBo +aBo +aBo +aBo +aBo +aBo +aBo +aBo +aBo +aFn +aaa "} (172,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mQ -mQ -be -IV -IV -IV -IV -Vx -mQ -MO -Ep -mp -YC -IN -Ol -An -qT -An -xo -nd -dE -sO -sO -nk -iu -Xc -sO -sO -eP -Ut -fe -lI -lI -lI -po -SW -ce -JG -Gh -WP -wc -ui -Yg -kq -ui -wc -wc -nc -Vp -nw -Fb -JJ -JJ -Fb -Fb -Fb -lD -mZ -ZV -yE -yE -yE -Fa -pG -jg -Qp -qK -sA -pG -dZ -bx -bx -bx -Cg -pG -Xb -TF -yi -pG -aa -aa -Fn -Bo -Bo -Bo -Bo -Bo -Bo -Bo -Bo -Bo -Bo -Bo -Fn -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +amQ +amQ +abe +aIV +aIV +aIV +aIV +aVx +amQ +aMO +aEp +amp +aYC +aIN +aOl +aAn +aqT +aAn +axo +and +adE +asO +asO +ank +aiu +aXc +asO +asO +aeP +aUt +afe +alI +alI +alI +apo +aSW +ace +aJG +aGh +aWP +awc +aui +aYg +akq +aui +awc +awc +anc +aVp +anw +aFb +aJJ +aJJ +aFb +aFb +aFb +alD +amZ +aZV +ayE +ayE +ayE +aFa +apG +ajg +aQp +aqK +asA +apG +adZ +abx +abx +abx +aCg +apG +aXb +aTF +ayi +apG +aaa +aaa +aFn +aBo +aBo +aBo +aBo +aBo +aBo +aBo +aBo +aBo +aBo +aBo +aFn +aaa "} (173,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mQ -Kp -il -IV -IV -IV -GX -UN -ao -ao -kW -wC -EP -JR -Mg -An -tL -JI -IR -MF -rj -rj -JB -ET -YX -rj -rj -eP -cQ -TP -AB -AB -AB -CG -LY -ce -Ij -Jm -Jm -sH -ui -Jm -Gu -li -wc -pG -sS -xK -SO -EI -ca -ca -ca -EI -gN -zG -wa -pG -pG -pG -pG -pG -pG -ub -Qp -qK -sA -pG -iH -AV -lp -Wj -aP -pG -Xb -uQ -yi -pG -aa -aa -Fn -Bo -Bo -Bo -Ow -Bo -Bo -Bo -Ow -Bo -Bo -Bo -Fn -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +amQ +aKp +ail +aIV +aIV +aIV +aGX +aUN +aao +aao +akW +awC +aEP +aJR +aMg +aAn +atL +aJI +aIR +aMF +arj +arj +aJB +aET +aYX +arj +arj +aeP +acQ +aTP +aAB +aAB +aAB +aCG +aLY +ace +aIj +aJm +aJm +asH +aui +aJm +aGu +ali +awc +apG +asS +axK +aSO +aEI +aca +aca +aca +aEI +agN +azG +awa +apG +apG +apG +apG +apG +apG +aub +aQp +aqK +asA +apG +aiH +aAV +alp +aWj +aaP +apG +aXb +auQ +ayi +apG +aaa +aaa +aFn +aBo +aBo +aBo +aOw +aBo +aBo +aBo +aOw +aBo +aBo +aBo +aFn +aaa "} (174,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mQ -mQ -hZ -az -RN -bY -Gv -mQ -Jw -IO -SK -YC -uy -Jn -Uj -mC -zP -Am -oG -dE -rj -rj -Ti -Ti -Ti -rj -rj -eP -TG -Ch -hc -xI -jZ -Ch -ek -ce -bl -LE -jS -wc -EU -Eh -MB -wc -wc -pG -pG -sS -fY -xK -Vs -NB -wL -zG -fY -wa -pG -pG -vg -Xk -MQ -pG -pG -AJ -Qp -qK -sA -pG -pG -oh -qK -qK -pI -pG -Ec -uQ -yi -pG -aa -aa -Fn -Bo -UR -Bo -UR -Bo -UR -Bo -UR -Bo -UR -Bo -Fn -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +amQ +amQ +ahZ +aaz +aRN +abY +aGv +amQ +aJw +aIO +aSK +aYC +auy +aJn +aUj +amC +azP +aAm +aoG +adE +arj +arj +aTi +aTi +aTi +arj +arj +aeP +aTG +aCh +ahc +axI +ajZ +aCh +aek +ace +abl +aLE +ajS +awc +aEU +aEh +aMB +awc +awc +apG +apG +asS +afY +axK +aVs +aNB +awL +azG +afY +awa +apG +apG +avg +aXk +aMQ +apG +apG +aAJ +aQp +aqK +asA +apG +apG +aoh +aqK +aqK +apI +apG +aEc +auQ +ayi +apG +aaa +aaa +aFn +aBo +aUR +aBo +aUR +aBo +aUR +aBo +aUR +aBo +aUR +aBo +aFn +aaa "} (175,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -mQ -mQ -mQ -mQ -mQ -mQ -mQ -mQ -Th -vO -mQ -HA -Jn -ys -mC -zF -Ap -AT -mQ -rj -rj -ZP -aE -Ql -rj -io -wc -mV -yk -dq -py -fq -II -sj -wc -BC -TU -wc -wc -wc -wc -wc -wc -aa -aa -pG -pG -pG -Vl -Tw -Tw -Tw -xB -pG -pG -pG -yq -ax -GJ -cy -Uz -nX -eS -ax -qK -AX -iW -pG -oh -XP -dw -pI -pG -Xb -uQ -yi -pG -aa -aa -Fn -Bo -Bo -Bo -Bo -Bo -Bo -Bo -Bo -Bo -Bo -Bo -Fn -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +amQ +amQ +amQ +amQ +amQ +amQ +amQ +amQ +aTh +avO +amQ +aHA +aJn +ays +amC +azF +aAp +aAT +amQ +arj +arj +aZP +aaE +aQl +arj +aio +awc +amV +ayk +adq +apy +afq +aII +asj +awc +aBC +aTU +awc +awc +awc +awc +awc +awc +aaa +aaa +apG +apG +apG +aVl +aTw +aTw +aTw +axB +apG +apG +apG +ayq +aax +aGJ +acy +aUz +anX +aeS +aax +aqK +aAX +aiW +apG +aoh +aXP +adw +apI +apG +aXb +auQ +ayi +apG +aaa +aaa +aFn +aBo +aBo +aBo +aBo +aBo +aBo +aBo +aBo +aBo +aBo +aBo +aFn +aaa "} (176,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -we -gl -aH -fg -MZ -mQ -GN -mQ -mQ -mQ -yU -wE -mC -zN -gk -mQ -mQ -pG -rj -Xb -vp -yi -rj -pG -wc -wc -vj -ic -lI -fJ -Up -wc -wc -wc -wc -wc -aa -aa -aa -aa -aa -aa -aa -aa -aa -pG -pG -uc -uc -uc -pG -pG -aa -pG -nt -GJ -GJ -GJ -aA -qK -qK -Bj -qK -qK -OA -pG -oh -Ic -Lq -pI -pG -Xb -TF -yi -pG -aa -aa -Fn -Bo -Bo -Bo -Bo -Bo -Bo -Bo -Bo -Bo -Bo -Bo -Fn -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +awe +agl +aaH +afg +aMZ +amQ +aGN +amQ +amQ +amQ +ayU +awE +amC +azN +agk +amQ +amQ +apG +arj +aXb +avp +ayi +arj +apG +awc +awc +avj +aic +alI +afJ +aUp +awc +awc +awc +awc +awc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +apG +apG +auc +auc +auc +apG +apG +aaa +apG +ant +aGJ +aGJ +aGJ +aaA +aqK +aqK +aBj +aqK +aqK +aOA +apG +aoh +aIc +aLq +apI +apG +aXb +aTF +ayi +apG +aaa +aaa +aFn +aBo +aBo +aBo +aBo +aBo +aBo +aBo +aBo +aBo +aBo +aBo +aFn +aaa "} (177,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dl -sY -Nb -Nb -YL -CM -GK -lH -vP -we -mQ -mQ -mQ -mQ -mQ -mQ -pG -pG -qw -Xb -TF -yi -pG -pG -wc -wc -Bh -rf -lI -zV -BY -wc -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -pG -sJ -gR -ZP -aE -Ql -gR -sJ -pG -pG -oy -GJ -GJ -GJ -aA -qK -qK -qK -qK -qK -gy -pG -oh -qK -qK -pI -pG -Xb -vp -yi -pG -aa -aa -Fn -vV -Bo -xs -Bo -Bo -Bo -Bo -Bo -xs -Bo -vV -Fn -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +adl +asY +aNb +aNb +aYL +aCM +aGK +alH +avP +awe +amQ +amQ +amQ +amQ +amQ +amQ +apG +apG +aqw +aXb +aTF +ayi +apG +apG +awc +awc +aBh +arf +alI +azV +aBY +awc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +apG +asJ +agR +aZP +aaE +aQl +agR +asJ +apG +apG +aoy +aGJ +aGJ +aGJ +aaA +aqK +aqK +aqK +aqK +aqK +agy +apG +aoh +aqK +aqK +apI +apG +aXb +avp +ayi +apG +aaa +aaa +aFn +avV +aBo +axs +aBo +aBo +aBo +aBo +aBo +axs +aBo +avV +aFn +aaa "} (178,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dl -NS -Nb -Nb -Nb -yj -CW -zp -we -we -Kq -mr -mr -cR -we -pG -pG -rj -rj -Xb -uQ -yi -pG -pG -wc -wc -wc -VX -zO -Rz -wc -wc -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -pG -ix -rj -Xb -TF -yi -rj -ix -pG -pG -Mj -qY -GJ -TJ -Uz -sP -kI -kI -kI -kI -xN -pG -pG -pG -pG -pG -pG -Xb -TF -yi -pG -pG -pG -pG -pG -Fn -Fn -Fn -Fn -Fn -Fn -Fn -Fn -Fn -Fn -Fn -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +adl +aNS +aNb +aNb +aNb +ayj +aCW +azp +awe +awe +aKq +amr +amr +acR +awe +apG +apG +arj +arj +aXb +auQ +ayi +apG +apG +awc +awc +awc +aVX +azO +aRz +awc +awc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +apG +aix +arj +aXb +aTF +ayi +arj +aix +apG +apG +aMj +aqY +aGJ +aTJ +aUz +asP +akI +akI +akI +akI +axN +apG +apG +apG +apG +apG +apG +aXb +aTF +ayi +apG +apG +apG +apG +apG +aFn +aFn +aFn +aFn +aFn +aFn +aFn +aFn +aFn +aFn +aFn +aaa "} (179,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dl -Vr -Nb -Nb -Nb -yj -Qm -vR -Rq -Ia -wG -kC -UY -zH -we -Mm -rj -rj -rj -Xb -uQ -Ct -pG -pG -wc -wc -wc -wc -wc -wc -wc -pG -pG -pG -pG -pG -pG -pG -pG -pG -pG -pG -pG -pG -pG -rj -rj -Xb -TF -yi -rj -rj -pG -pG -pG -Pb -GJ -DP -pG -pG -Br -tC -cG -Kb -pG -pG -pG -Mm -rj -rj -rj -Xb -uQ -yi -rj -rj -rj -FA -pG -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +adl +aVr +aNb +aNb +aNb +ayj +aQm +avR +aRq +aIa +awG +akC +aUY +azH +awe +aMm +arj +arj +arj +aXb +auQ +aCt +apG +apG +awc +awc +awc +awc +awc +awc +awc +apG +apG +apG +apG +apG +apG +apG +apG +apG +apG +apG +apG +apG +apG +arj +arj +aXb +aTF +ayi +arj +arj +apG +apG +apG +aPb +aGJ +aDP +apG +apG +aBr +atC +acG +aKb +apG +apG +apG +aMm +arj +arj +arj +aXb +auQ +ayi +arj +arj +arj +aFA +apG +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (180,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -we -gl -Nb -Nb -Nb -yj -CW -vS -zp -qB -tk -kC -tk -zI -WW -Ev -rj -bX -rj -Xb -uQ -yi -vk -rj -rj -OO -rj -rj -OO -rj -rj -rj -OO -rj -rj -rj -rj -rj -OO -rj -rj -MK -Ez -sc -OO -rj -rj -Xb -TF -yi -rj -rj -rj -rj -sJ -pG -am -pG -sJ -FA -it -RO -RO -lu -FA -pG -Ml -Ev -rj -bX -rj -Xb -uQ -yi -rj -bX -rj -rj -pG -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +awe +agl +aNb +aNb +aNb +ayj +aCW +avS +azp +aqB +atk +akC +atk +azI +aWW +aEv +arj +abX +arj +aXb +auQ +ayi +avk +arj +arj +aOO +arj +arj +aOO +arj +arj +arj +aOO +arj +arj +arj +arj +arj +aOO +arj +arj +aMK +aEz +asc +aOO +arj +arj +aXb +aTF +ayi +arj +arj +arj +arj +asJ +apG +aam +apG +asJ +aFA +ait +aRO +aRO +alu +aFA +apG +aMl +aEv +arj +abX +arj +aXb +auQ +ayi +arj +abX +arj +arj +apG +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (181,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -we -we -dl -we -we -gl -Nb -YL -yo -NR -fF -xq -Tl -cK -jE -cK -HI -WW -GS -bX -rj -ZP -qf -vp -NV -Ql -Kt -rj -rj -rj -rj -rj -rj -rj -rj -rj -rj -rj -rj -rj -rj -rj -rj -rj -MK -Ez -Sl -rj -rj -ZP -qf -vp -NV -Ql -rj -rj -rj -MK -uN -RA -lE -sJ -zf -JU -ri -Aj -iG -Xz -pG -nI -GS -bX -rj -rj -Xb -vp -yi -rj -rj -bX -rj -pG -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +aaa +aaa +aaa +aaa +aaa +aaa +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +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 +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 +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 +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 +aaa +awe +awe +adl +awe +awe +agl +aNb +aYL +ayo +aNR +afF +axq +aTl +acK +ajE +acK +aHI +aWW +aGS +abX +arj +aZP +aqf +avp +aNV +aQl +aKt +arj +arj +arj +arj +arj +arj +arj +arj +arj +arj +arj +arj +arj +arj +arj +arj +arj +aMK +aEz +aSl +arj +arj +aZP +aqf +avp +aNV +aQl +arj +arj +arj +aMK +auN +aRA +alE +asJ +azf +aJU +ari +aAj +aiG +aXz +apG +anI +aGS +abX +arj +arj +aXb +avp +ayi +arj +arj +abX +arj +apG +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (182,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -we -we -fg -UK -fg -we -we -Nb -YL -uw -vS -zp -we -we -aU -lZ -kN -Qs -WW -KN -rj -rj -Xb -Ml -FA -Ml -yi -nC -Cu -Cu -Cu -Cu -Cu -Cu -Cu -Cu -Cu -Cu -Cu -Cu -Cu -Cu -Cu -Cu -Cu -hi -Ez -EQ -rj -rj -Xb -Ml -FA -Ml -yi -OK -OK -OK -ZS -Xb -TF -yi -pG -pG -TC -TC -TC -TC -pG -pG -Ml -KN -rj -rj -ZP -TW -FA -FK -Ql -rj -rj -rj -pG -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +aaa +aaa +aaa +aaa +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +awe +awe +afg +aUK +afg +awe +awe +aNb +aYL +auw +avS +azp +awe +awe +aaU +alZ +akN +aQs +aWW +aKN +arj +arj +aXb +aMl +aFA +aMl +ayi +anC +aCu +aCu +aCu +aCu +aCu +aCu +aCu +aCu +aCu +aCu +aCu +aCu +aCu +aCu +aCu +aCu +aCu +ahi +aEz +aEQ +arj +arj +aXb +aMl +aFA +aMl +ayi +aOK +aOK +aOK +aZS +aXb +aTF +ayi +apG +apG +aTC +aTC +aTC +aTC +apG +apG +aMl +aKN +arj +arj +aZP +aTW +aFA +aFK +aQl +arj +arj +arj +apG +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (183,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dl -CQ -Nb -Nb -Nb -Zz -dl -Nb -sR -ux -vS -vR -lH -iM -rP -pw -gz -kN -Ar -ZP -aE -aE -qf -od -DC -ng -NV -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -Ql -oo -ZP -aE -qf -od -DC -ng -NV -aE -aE -aE -aE -qf -TF -NV -aE -aE -aE -aE -aE -aE -QY -Ql -gG -ZP -aE -aE -qf -od -DC -ng -NV -aE -aE -Ql -pG -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +aaa +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +adl +aCQ +aNb +aNb +aNb +aZz +adl +aNb +asR +aux +avS +avR +alH +aiM +arP +apw +agz +akN +aAr +aZP +aaE +aaE +aqf +aod +aDC +ang +aNV +aaE +aaE +aaE +aaE +aaE +aaE +aaE +aaE +aaE +aaE +aaE +aaE +aaE +aaE +aaE +aaE +aaE +aaE +aaE +aQl +aoo +aZP +aaE +aqf +aod +aDC +ang +aNV +aaE +aaE +aaE +aaE +aqf +aTF +aNV +aaE +aaE +aaE +aaE +aaE +aaE +aQY +aQl +agG +aZP +aaE +aaE +aqf +aod +aDC +ang +aNV +aaE +aaE +aQl +apG +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (184,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -we -jM -Nb -cu -Nb -XW -Cx -UA -FF -Re -vS -vS -mb -dl -rP -zk -zk -Lc -Ar -qh -uQ -uQ -vp -Qo -eT -nh -vp -uQ -uQ -vp -uQ -uQ -uQ -TF -vp -TF -uQ -uQ -uQ -TF -vp -TF -uQ -uQ -uQ -TF -qq -oo -XV -uQ -vp -Qo -eT -nh -vp -uQ -uQ -TF -vp -TF -uQ -uQ -uQ -TF -vp -TF -uQ -uQ -uQ -yi -fp -Xb -uQ -uQ -vp -Qo -YF -nh -vp -uQ -uQ -yi -pG -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +awe +ajM +aNb +acu +aNb +aXW +aCx +aUA +aFF +aRe +avS +avS +amb +adl +arP +azk +azk +aLc +aAr +aqh +auQ +auQ +avp +aQo +aeT +anh +avp +auQ +auQ +avp +auQ +auQ +auQ +aTF +avp +aTF +auQ +auQ +auQ +aTF +avp +aTF +auQ +auQ +auQ +aTF +aqq +aoo +aXV +auQ +avp +aQo +aeT +anh +avp +auQ +auQ +aTF +avp +aTF +auQ +auQ +auQ +aTF +avp +aTF +auQ +auQ +auQ +ayi +afp +aXb +auQ +auQ +avp +aQo +aYF +anh +avp +auQ +auQ +ayi +apG +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (185,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dl -CQ -Nb -Nb -Nb -FV -dl -Nb -sR -ux -vS -fF -vW -iM -rP -pw -HW -zK -Ar -JB -ET -ET -hI -Ky -rX -MG -Dj -ET -ET -ET -ET -ET -ET -ET -ET -ET -ET -ET -ET -ET -ET -ET -ET -ET -ET -ET -YX -oo -JB -ET -hI -Ky -rX -MG -Dj -ET -ET -ET -ET -ET -ET -ET -ET -ET -ET -ET -ET -ET -ET -YX -gG -JB -ET -ET -hI -Ky -rX -MG -Dj -ET -ET -YX -pG -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +adl +aCQ +aNb +aNb +aNb +aFV +adl +aNb +asR +aux +avS +afF +avW +aiM +arP +apw +aHW +azK +aAr +aJB +aET +aET +ahI +aKy +arX +aMG +aDj +aET +aET +aET +aET +aET +aET +aET +aET +aET +aET +aET +aET +aET +aET +aET +aET +aET +aET +aET +aYX +aoo +aJB +aET +ahI +aKy +arX +aMG +aDj +aET +aET +aET +aET +aET +aET +aET +aET +aET +aET +aET +aET +aET +aET +aYX +agG +aJB +aET +aET +ahI +aKy +arX +aMG +aDj +aET +aET +aYX +apG +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (186,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -we -we -fE -AO -fE -we -we -Nb -YL -Wv -vS -zp -we -we -Ib -qE -zK -JA -WW -Ev -rj -rj -Xb -Ml -FA -Ml -yi -ZB -rl -rl -rl -rl -rl -rl -rl -cg -cg -NO -cg -cg -Og -Ey -cS -Og -Wf -Pe -Ez -sc -rj -rj -Xb -Ml -FA -Ml -yi -rl -rl -rl -rl -rl -rl -rl -rl -rl -rl -rl -rl -rl -rl -pG -Ml -Ev -rj -rj -JB -Tr -FA -kO -YX -rj -rj -rj -pG -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +anV +anV +anV +axV +xSw +xSw +xSw +xSw +xSw +xSw +xSw +xSw +xSw +xSw +xSw +xSw +xSw +xSw +xSw +xSw +xSw +xSw +xSw +xSw +xSw +xSw +xSw +xSw +xSw +xSw +xSw +axV +anV +anV +anV +anV +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +awe +awe +afE +aAO +afE +awe +awe +aNb +aYL +aWv +avS +azp +awe +awe +aIb +aqE +azK +aJA +aWW +aEv +arj +arj +aXb +aMl +aFA +aMl +ayi +aZB +arl +arl +arl +arl +arl +arl +arl +acg +acg +aNO +acg +acg +aOg +aEy +acS +aOg +aWf +aPe +aEz +asc +arj +arj +aXb +aMl +aFA +aMl +ayi +arl +arl +arl +arl +arl +arl +arl +arl +arl +arl +arl +arl +arl +arl +apG +aMl +aEv +arj +arj +aJB +aTr +aFA +akO +aYX +arj +arj +arj +apG +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (187,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -we -we -dl -we -we -gl -Nb -YL -eK -hM -vR -Rq -Ia -mr -nv -mr -hm -WW -GS -bX -rj -JB -hI -vp -Dj -YX -Kt -rj -rj -rj -rj -rj -rj -rj -cg -ip -zU -Fe -cg -UB -MN -oW -Xz -Ba -it -Ez -Sl -rj -rj -JB -ET -ee -ET -YX -rj -rj -rj -rj -rj -rj -rj -rj -rj -rj -rj -rj -rj -rj -pG -nI -GS -bX -rj -rj -Xb -vp -yi -rj -rj -bX -rj -pG -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +anV +anV +anV +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +anV +anV +anV +anV +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +awe +awe +adl +awe +awe +agl +aNb +aYL +aeK +ahM +avR +aRq +aIa +amr +anv +amr +ahm +aWW +aGS +abX +arj +aJB +ahI +avp +aDj +aYX +aKt +arj +arj +arj +arj +arj +arj +arj +acg +aip +azU +aFe +acg +aUB +aMN +aoW +aXz +aBa +ait +aEz +aSl +arj +arj +aJB +aET +aee +aET +aYX +arj +arj +arj +arj +arj +arj +arj +arj +arj +arj +arj +arj +arj +arj +apG +anI +aGS +abX +arj +arj +aXb +avp +ayi +arj +arj +abX +arj +apG +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (188,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -we -gl -Nb -Nb -Nb -yj -CW -vS -zp -qB -tk -kC -tk -zI -WW -KN -rj -bX -rj -Xb -uQ -yi -ZB -rj -rj -rj -Hi -rj -rj -rj -rj -cg -Bt -FH -Pa -cg -SJ -UB -FA -yz -FA -ja -Ez -EQ -rj -rj -rj -Hi -rj -rj -rj -rj -rj -Hi -rj -rj -rj -Hi -rj -rj -rj -Hi -rj -rj -rj -pG -Ml -KN -rj -bX -rj -Xb -uQ -yi -rj -bX -rj -rj -pG -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anV +anV +anV +anV +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +aBs +anV +anV +anV +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 +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 +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 +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 +awe +agl +aNb +aNb +aNb +ayj +aCW +avS +azp +aqB +atk +akC +atk +azI +aWW +aKN +arj +abX +arj +aXb +auQ +ayi +aZB +arj +arj +arj +aHi +arj +arj +arj +arj +acg +aBt +aFH +aPa +acg +aSJ +aUB +aFA +ayz +aFA +aja +aEz +aEQ +arj +arj +arj +aHi +arj +arj +arj +arj +arj +aHi +arj +arj +arj +aHi +arj +arj +arj +aHi +arj +arj +arj +apG +aMl +aKN +arj +abX +arj +aXb +auQ +ayi +arj +abX +arj +arj +apG +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (189,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dl -Bu -Nb -Nb -Nb -yj -Qm -fF -xq -Tl -wK -kC -UY -zH -we -Mm -rj -rj -rj -Xb -uQ -Ct -cg -cg -cg -cg -cg -cg -cg -cg -cg -cg -NO -cg -NO -cg -cg -cg -cg -cg -cg -cg -cg -cg -cg -pG -pG -pG -pG -pG -pG -pG -pG -pG -pG -pG -pG -pG -pG -pG -pG -pG -pG -pG -pG -pG -pG -Mm -rj -rj -rj -JB -ET -YX -rj -rj -rj -FA -pG -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anV +anV +anV +axV +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +aBs +axV +anV +anV +anV +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +adl +aBu +aNb +aNb +aNb +ayj +aQm +afF +axq +aTl +awK +akC +aUY +azH +awe +aMm +arj +arj +arj +aXb +auQ +aCt +acg +acg +acg +acg +acg +acg +acg +acg +acg +acg +aNO +acg +aNO +acg +acg +acg +acg +acg +acg +acg +acg +acg +acg +apG +apG +apG +apG +apG +apG +apG +apG +apG +apG +apG +apG +apG +apG +apG +apG +apG +apG +apG +apG +apG +apG +aMm +arj +arj +arj +aJB +aET +aYX +arj +arj +arj +aFA +apG +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (190,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dl -NS -Nb -Nb -Nb -yj -CW -zp -we -we -OJ -cK -cK -us -we -pG -pG -rj -rj -Xb -uQ -yi -cg -bM -bM -FM -QX -gY -gY -gY -gY -MW -pN -zU -TS -ly -gY -gY -gY -gY -QX -FD -bM -bM -cg -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -pG -pG -pG -pG -pG -pG -pG -pG -pG -pG -pG -pG -pG -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anV +anV +anV +aBs +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +aBs +aBs +anV +anV +anV +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +adl +aNS +aNb +aNb +aNb +ayj +aCW +azp +awe +awe +aOJ +acK +acK +aus +awe +apG +apG +arj +arj +aXb +auQ +ayi +acg +abM +abM +aFM +aQX +agY +agY +agY +agY +aMW +apN +azU +aTS +aly +agY +agY +agY +agY +aQX +aFD +abM +abM +acg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +apG +apG +apG +apG +apG +apG +apG +apG +apG +apG +apG +apG +apG +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (191,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dl -RU -Nb -Nb -YL -Nq -ve -vW -vP -we -we -we -we -we -we -pG -pG -pG -rj -JB -ET -YX -cg -bM -Sa -FM -gY -gY -gY -gY -gY -gY -Tg -Qj -ml -gY -gY -gY -gY -gY -gY -FD -Sa -bM -cg -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anV +anV +anV +aBs +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +jhk +aBs +anV +anV +anV +anV +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +adl +aRU +aNb +aNb +aYL +aNq +ave +avW +avP +awe +awe +awe +awe +awe +awe +apG +apG +apG +arj +aJB +aET +aYX +acg +abM +aSa +aFM +agY +agY +agY +agY +agY +agY +aTg +aQj +aml +agY +agY +agY +agY +agY +agY +aFD +aSa +abM +acg +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (192,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -we -gl -ny -fE -MZ -we -we -we -we -we -aa -aa -aa -aa -aa -aa -aa -pG -pG -pG -pG -pG -cg -bM -bM -FM -gY -gY -gY -gY -gY -JN -Bt -FH -Pa -FL -gY -gY -gY -gY -gY -FD -bM -bM -cg -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anV +anV +anV +axV +jhk +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +aBs +aBs +axV +anV +anV +anV +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +awe +agl +any +afE +aMZ +awe +awe +awe +awe +awe +aaa +aaa +aaa +aaa +aaa +aaa +aaa +apG +apG +apG +apG +apG +acg +abM +abM +aFM +agY +agY +agY +agY +agY +aJN +aBt +aFH +aPa +aFL +agY +agY +agY +agY +agY +aFD +abM +abM +acg +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (193,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -we -we -we -we -we -we -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -cg -cg -cg -cg -cg -sV -sV -sV -sV -sV -sV -sV -sV -sV -sV -sV -sV -sV -cg -cg -cg -cg -cg -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anV +anV +anV +anV +anV +anV +anV +aBs +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +aBs +aBs +aBs +anV +anV +anV +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +awe +awe +awe +awe +awe +awe +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acg +acg +acg +acg +acg +asV +asV +asV +asV +asV +asV +asV +asV +asV +asV +asV +asV +asV +acg +acg +acg +acg +acg +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (194,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -uz -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anV +anV +anV +anV +anV +anV +anV +anV +anV +aBs +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +aBs +aBs +aBs +anV +anV +anV +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 +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 +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 +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 +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 +aaa +auz +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (195,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +aBs +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +aBs +aBs +aBs +axV +anV +anV +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (196,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +axV +jhk +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +aBs +aBs +aBs +anV +anV +anV +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (197,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +anV +anV +anV +anV +aaa +aaa +anV +anV +anV +anV +anV +anV +anV +anV +axV +axV +axV +axV +axV +anV +anV +aBs +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +jhk +aBs +anV +anV +anV +anV +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (198,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +axV +nKh +jFt +lNv +axV +axV +anV +aBs +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +aBs +aBs +anV +anV +anV +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (199,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +axV +axV +dGn +xiw +oHu +fFk +axV +anV +axV +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +aBs +axV +anV +anV +anV +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (200,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +axV +dqh +oHu +oHu +oHu +hJy +axV +anV +anV +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +nUK +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +aBs +anV +anV +anV +anV +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (201,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +anV +anV +anV +anV +axV +axV +fOu +axV +axV +axV +axV +axV +axV +anV +anV +anV +anV +anV +axV +axV +opw +oHu +axV +rdl +rdl +axV +axV +anV +qwu +qwu +qwu +qwu +qwu +qwu +qwu +eVz +eOz +tGO +rXO +kLl +hHJ +cIh +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +qwu +anV +anV +anV +anV +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (202,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +anV +anV +anV +anV +axV +wcn +ncQ +eCc +vJI +vhW +voA +rUo +axV +anV +anV +anV +aBs +aBs +aBs +axV +rdl +cKy +vJI +qwu +gXq +qwu +vJI +axV +axV +axV +axV +aBs +jhk +aBs +axV +axV +fgR +lwC +rXO +eQR +rQG +nYE +jhk +aBs +sRv +rHE +aBs +aBs +jhk +aBs +aBs +aBs +aBs +jhk +aBs +aBs +aBs +anV +anV +anV +anV +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (203,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +anV +anV +anV +axV +axV +sUM +hkm +dUR +dUR +dUR +tWT +wuw +axV +axV +bCO +bkY +bkY +bkY +hfj +axV +kyh +nIX +oHU +qwu +qwu +qwu +ekW +qCL +pwv +axV +bCO +bkY +bkY +bkY +hfj +axV +eiE +eHN +rXO +eHN +kLl +nYE +bKY +hAI +nIX +nIX +aBs +aBs +aBs +aBs +aBs +aBs +aBs +aBs +aBs +aBs +axV +anV +anV +anV +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (204,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +anV +anV +anV +axV +vPF +hCn +rJt +ifF +ifF +dUR +qaG +hCn +hCn +kUz +hCn +hCn +hCn +hCn +hCn +kqQ +hCn +hCn +ghD +dEH +dEH +dEH +eOH +hCn +hCn +kUz +hCn +hCn +hCn +hCn +hCn +kqQ +rXO +rXO +rXO +rXO +kLl +nYE +nIX +nIX +ofy +hFg +aBs +aBs +aBs +aBs +aBs +aBs +aBs +aBs +aBs +anV +anV +anV +anV +anV +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (205,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +anV +anV +anV +axV +eiE +iDX +dRD +bnQ +bBh +bBh +jce +iDX +rXO +eAb +iDX +iDX +iDX +iDX +iDX +nhm +rXO +iDX +iDX +iDX +iDX +iDX +iDX +iDX +rXO +eAb +iDX +iDX +iDX +iDX +iDX +nhm +rXO +npG +gFh +hAI +kLl +nYE +ofy +hFg +aBs +aBs +anV +anV +axV +anV +anV +aBs +aBs +aBs +anV +anV +anV +anV +anV +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (206,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +anV +anV +anV +axV +wQY +drE +qRZ +pDQ +dUR +bhR +bFO +iSx +hLJ +qwj +iSx +iSx +iSx +iSx +iSx +hVj +iSx +iSx +iSx +uAz +iDX +lBd +iSx +iSx +iSx +qwj +iSx +iSx +iSx +iSx +iSx +hVj +rXO +nIX +nIX +nIX +kLl +nYE +aBs +aBs +aBs +axV +anV +anV +anV +anV +anV +anV +axV +anV +anV +anV +anV +anV +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (207,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +anV +anV +anV +axV +axV +sCN +hkm +dUR +dUR +dUR +tWT +wTZ +axV +axV +nvZ +fEL +fEL +fEL +bTZ +axV +prl +mbG +oDh +sAG +iDX +lWT +xWM +hrx +gwo +axV +nvZ +fEL +fEL +fEL +bTZ +axV +eiE +vAz +vAz +hFg +kLl +nYE +aBs +aBs +aBs +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (208,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +anV +anV +anV +anV +axV +bip +tyZ +uGL +vJI +oxw +qgn +dxL +axV +anV +anV +aBs +aBs +anV +anV +jpy +axV +axV +vJI +sAG +rXO +lWT +vJI +axV +axV +axV +anV +aBs +aBs +anV +anV +axV +iKz +iKz +iKz +iKz +qKe +nYE +aBs +aBs +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (209,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +anV +anV +anV +anV +axV +axV +axV +axV +axV +axV +axV +axV +axV +anV +anV +anV +anV +anV +anV +anV +anV +anV +axV +qfa +wAD +uYh +axV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +fEL +fEL +fEL +fEL +uuc +aBs +axV +anV +anV +anV +anV +anV +anV +anV +anV +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (210,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +xrp +sAG +iDX +lWT +tYX +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +axV +aBs +aBs +aBs +anV +anV +anV +anV +anV +anV +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 +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 +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 +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 +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 +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 +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 +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 "} (211,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +aBs +pfR +sAG +iDX +lWT +nYE +aBs +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +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 +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 +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 +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 +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 +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 +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 +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 +aaa "} (212,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 -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +aBs +pfR +sAG +iDX +lWT +nYE +aBs +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +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 +aaa +aaa +aad +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 +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 +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 +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 +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 +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 +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 "} (213,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +pfR +sAG +iDX +lWT +nYE +aBs +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa "} (214,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +anV +anV +anV +anV +anV +anV +aaa +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +rQH +sAG +iDX +lWT +tGB +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (215,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anV +anV +anV +anV +anV +anV +anV +anV +axV +nWh +lbs +kqc +axV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (216,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anV +anV +anV +anV +anV +axV +axV +axV +sAG +rXO +lWT +axV +axV +axV +anV +anV +anV +anV +anV +anV +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (217,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anV +anV +anV +anV +anV +axV +viC +sco +sAG +iDX +lWT +sco +viC +axV +anV +anV +anV +anV +anV +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (218,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anV +anV +anV +anV +axV +vgV +plB +sAG +iDX +lWT +plB +tmF +axV +anV +anV +anV +anV +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (219,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anV +anV +anV +anV +axV +cyj +plB +sAG +iDX +lWT +plB +cyj +axV +anV +anV +anV +anV +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (220,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anV +anV +anV +anV +axV +vJI +xPB +sAG +cvB +lWT +xPB +vJI +axV +anV +anV +anV +anV +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (221,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anV +anV +anV +axV +cyj +plB +sAG +iDX +lWT +plB +cyj +axV +anV +anV +anV +anV +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (222,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anV +anV +anV +axV +xSI +plB +sAG +iDX +lWT +plB +tmF +axV +anV +anV +anV +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (223,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anV +anV +anV +axV +viC +sco +sAG +iDX +lWT +sco +viC +axV +anV +anV +anV +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (224,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anV +anV +anV +axV +axV +axV +cyj +rXO +cyj +axV +axV +axV +anV +anV +anV +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (225,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anV +anV +anV +anV +anV +axV +ojQ +iQV +sco +axV +anV +anV +anV +anV +anV +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (226,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anV +anV +anV +anV +axV +axV +axV +axV +axV +anV +anV +anV +anV +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (227,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (228,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +anV +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (229,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anV +anV +anV +anV +anV +anV +anV +anV +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (230,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (231,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (232,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (233,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (234,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (235,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (236,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (237,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (238,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (239,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (240,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (241,1,1) = {" -NP -NP -NP -ag -NP -NP -NP -aa -rD -rD -rD -BF -rD -rD -rD -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aNP +aNP +aNP +aag +aNP +aNP +aNP +aaa +arD +arD +arD +aBF +arD +arD +arD +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 +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa "} (242,1,1) = {" -NP -BZ -BZ -BZ -BZ -BZ -NP -aa -rD -HE -HE -HE -HE -HE -rD -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aNP +aBZ +aBZ +aBZ +aBZ +aBZ +aNP +aaa +arD +aHE +aHE +aHE +aHE +aHE +arD +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 +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa "} (243,1,1) = {" -NP -BZ -BZ -BZ -BZ -BZ -NP -aa -rD -HE -HE -HE -HE -HE -rD -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aNP +aBZ +aBZ +aBZ +aBZ +aBZ +aNP +aaa +arD +aHE +aHE +aHE +aHE +aHE +arD +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 +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa "} (244,1,1) = {" -NP -BZ -BZ -BZ -BZ -BZ -NP -aa -rD -HE -HE -HE -HE -HE -rD -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aNP +aBZ +aBZ +aBZ +aBZ +aBZ +aNP +aaa +arD +aHE +aHE +aHE +aHE +aHE +arD +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 +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa "} (245,1,1) = {" -NP -BZ -BZ -BZ -BZ -BZ -NP -aa -rD -HE -HE -HE -HE -HE -rD -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aNP +aBZ +aBZ +aBZ +aBZ +aBZ +aNP +aaa +arD +aHE +aHE +aHE +aHE +aHE +arD +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 +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa "} (246,1,1) = {" -NP -BZ -BZ -BZ -BZ -BZ -NP -aa -rD -HE -HE -HE -HE -HE -rD -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aNP +aBZ +aBZ +aBZ +aBZ +aBZ +aNP +aaa +arD +aHE +aHE +aHE +aHE +aHE +arD +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 +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa "} (247,1,1) = {" -NP -NP -NP -NP -NP -NP -NP -aa -rD -rD -rD -rD -rD -rD -rD -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aaa +arD +arD +arD +arD +arD +arD +arD +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 +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa "} (248,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +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 +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (249,1,1) = {" -oR -oR -oR -Et -oR -oR -oR -aa -VG -VG -VG -NX -VG -VG -VG -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aoR +aoR +aoR +aEt +aoR +aoR +aoR +aaa +aVG +aVG +aVG +aNX +aVG +aVG +aVG +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 +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa "} (250,1,1) = {" -oR -DW -DW -DW -DW -DW -oR -aa -VG -lV -lV -lV -lV -lV -VG -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aoR +aDW +aDW +aDW +aDW +aDW +aoR +aaa +aVG +alV +alV +alV +alV +alV +aVG +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 +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa "} (251,1,1) = {" -oR -DW -DW -DW -DW -DW -oR -aa -VG -lV -lV -lV -lV -lV -VG -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aoR +aDW +aDW +aDW +aDW +aDW +aoR +aaa +aVG +alV +alV +alV +alV +alV +aVG +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 +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa "} (252,1,1) = {" -oR -DW -DW -DW -DW -DW -oR -aa -VG -lV -lV -lV -lV -lV -VG -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aoR +aDW +aDW +aDW +aDW +aDW +aoR +aaa +aVG +alV +alV +alV +alV +alV +aVG +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 +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa "} (253,1,1) = {" -oR -DW -DW -DW -DW -DW -oR -aa -VG -lV -lV -lV -lV -lV -VG -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aoR +aDW +aDW +aDW +aDW +aDW +aoR +aaa +aVG +alV +alV +alV +alV +alV +aVG +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 +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa "} (254,1,1) = {" -oR -DW -DW -DW -DW -DW -oR -aa -VG -lV -lV -lV -lV -lV -VG -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aoR +aDW +aDW +aDW +aDW +aDW +aoR +aaa +aVG +alV +alV +alV +alV +alV +aVG +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 +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa "} (255,1,1) = {" -oR -oR -oR -oR -oR -oR -oR -aa -VG -VG -VG -VG -VG -VG -VG -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aoR +aoR +aoR +aoR +aoR +aoR +aoR +aaa +aVG +aVG +aVG +aVG +aVG +aVG +aVG +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 +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 +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 +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 +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 +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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa "} diff --git a/_maps/ouroboros.json b/_maps/ouroboros.json new file mode 100644 index 00000000000000..69c071ccb13dc9 --- /dev/null +++ b/_maps/ouroboros.json @@ -0,0 +1,30 @@ +{ + "version": 1, + "map_name": "Ouroboros", + "map_path": "map_files/Ouroboros", + "map_file": "Ouroboros.dmm", + "shuttles": { + "emergency": "emergency_nova", + "ferry": "ferry_fancy", + "mining": "mining_nova_large", + "cargo": "cargo_ouroboros", + "whiteship": "whiteship_ouroboros" + }, + "traits": [ + { + "Up": true, + "Baseturf": "/turf/open/misc/asteroid/moon/airless", + "Linkage": "Cross" + }, + { + "Down": true, + "Baseturf": "/turf/open/openspace", + "Linkage": "Cross" + } + ], + "job_changes": { + "Captain": { + "special_charter": "asteroid field" + } + } +} diff --git a/_maps/shuttles/nova/cargo_nova_delta.dmm b/_maps/shuttles/nova/cargo_nova_delta.dmm new file mode 100644 index 00000000000000..864872033a8fab --- /dev/null +++ b/_maps/shuttles/nova/cargo_nova_delta.dmm @@ -0,0 +1,337 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aK" = ( +/obj/structure/marker_beacon/burgundy, +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/supply) +"bh" = ( +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/supply) +"dO" = ( +/obj/structure/marker_beacon/burgundy, +/turf/closed/wall/mineral/titanium, +/area/shuttle/supply) +"fh" = ( +/obj/structure/fluff/metalpole/end{ + dir = 1; + pixel_y = 32 + }, +/turf/closed/wall/mineral/titanium/spaceship/nodiagonal, +/area/shuttle/supply) +"hv" = ( +/obj/effect/turf_decal/tile/neutral/diagonal_edge, +/obj/effect/turf_decal/tile/neutral/diagonal_centre, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/dark/diagonal, +/area/shuttle/supply) +"hC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/diagonal_edge, +/obj/effect/turf_decal/tile/neutral/diagonal_centre, +/turf/open/floor/iron/dark/diagonal, +/area/shuttle/supply) +"hV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/caution/white{ + dir = 4 + }, +/turf/open/floor/iron/shuttle/cargo{ + dir = 1 + }, +/area/shuttle/supply) +"kh" = ( +/turf/closed/wall/mineral/titanium/spaceship, +/area/shuttle/supply) +"lb" = ( +/obj/docking_port/mobile/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/grunge{ + name = "Supply Shuttle Airlock"; + req_access = list("cargo") + }, +/obj/effect/turf_decal/delivery/white, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/supply) +"oU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/diagonal_edge, +/obj/effect/turf_decal/tile/neutral/diagonal_centre, +/obj/effect/turf_decal/box/white/corners{ + dir = 8 + }, +/turf/open/floor/iron/dark/diagonal, +/area/shuttle/supply) +"pD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/diagonal_edge, +/obj/effect/turf_decal/tile/neutral/diagonal_centre, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/dark/diagonal, +/area/shuttle/supply) +"sN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/diagonal_edge, +/obj/effect/turf_decal/tile/neutral/diagonal_centre, +/obj/effect/turf_decal/box/white/corners, +/turf/open/floor/iron/dark/diagonal, +/area/shuttle/supply) +"sR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/shuttle/cargo{ + dir = 1 + }, +/area/shuttle/supply) +"uB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/diagonal_edge, +/obj/effect/turf_decal/tile/neutral/diagonal_centre, +/obj/effect/turf_decal/box/white/corners, +/obj/effect/turf_decal/box/white/corners{ + dir = 8 + }, +/turf/open/floor/iron/dark/diagonal, +/area/shuttle/supply) +"vd" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "cargounload" + }, +/obj/machinery/door/poddoor{ + id = "cargounload"; + name = "Supply Dock Unloading Door" + }, +/turf/open/floor/plating, +/area/shuttle/supply) +"wI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/loading_area/white{ + dir = 4 + }, +/turf/open/floor/iron/shuttle/cargo{ + dir = 1 + }, +/area/shuttle/supply) +"zx" = ( +/turf/closed/wall/mineral/titanium/spaceship/nodiagonal, +/area/shuttle/supply) +"zP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/diagonal_edge, +/obj/effect/turf_decal/tile/neutral/diagonal_centre, +/obj/effect/turf_decal/box/white/corners{ + dir = 1 + }, +/obj/effect/turf_decal/box/white/corners{ + dir = 4 + }, +/obj/structure/sign/warning/directional/west, +/turf/open/floor/iron/dark/diagonal, +/area/shuttle/supply) +"CR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/power/shuttle_engine/propulsion{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/shuttle/supply) +"Gf" = ( +/obj/machinery/door/poddoor{ + id = "cargoload"; + name = "Supply Dock Loading Door" + }, +/obj/machinery/conveyor{ + dir = 4; + id = "cargoload" + }, +/turf/open/floor/plating, +/area/shuttle/supply) +"Ow" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/diagonal_edge, +/obj/effect/turf_decal/tile/neutral/diagonal_centre, +/obj/effect/turf_decal/box/white/corners{ + dir = 4 + }, +/turf/open/floor/iron/dark/diagonal, +/area/shuttle/supply) +"PH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/diagonal_edge, +/obj/effect/turf_decal/tile/neutral/diagonal_centre, +/obj/structure/sign/warning/no_smoking/circle/directional/east, +/turf/open/floor/iron/dark/diagonal, +/area/shuttle/supply) +"SL" = ( +/obj/structure/marker_beacon/olive, +/turf/closed/wall/mineral/titanium, +/area/shuttle/supply) +"Uj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/loading_area/white{ + dir = 8 + }, +/turf/open/floor/iron/shuttle/cargo{ + dir = 1 + }, +/area/shuttle/supply) +"UC" = ( +/obj/machinery/button/door/directional/west{ + id = "cargoload"; + name = "Loading Doors"; + pixel_y = -8 + }, +/obj/machinery/button/door/directional/west{ + id = "cargounload"; + name = "Loading Doors"; + pixel_y = 8 + }, +/obj/machinery/light/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/shuttle/cargo{ + dir = 1 + }, +/area/shuttle/supply) +"UX" = ( +/obj/structure/marker_beacon/olive, +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/supply) +"VP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/diagonal_edge, +/obj/effect/turf_decal/tile/neutral/diagonal_centre, +/obj/effect/turf_decal/box/white/corners{ + dir = 1 + }, +/turf/open/floor/iron/dark/diagonal, +/area/shuttle/supply) +"Xb" = ( +/obj/machinery/door/airlock/grunge{ + name = "Supply Shuttle Airlock"; + req_access = list("cargo") + }, +/obj/effect/turf_decal/delivery/white, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/supply) +"Xe" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/power/shuttle_engine/heater{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/shuttle/supply) +"Zh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/power/shuttle_engine/propulsion{ + dir = 1 + }, +/obj/structure/fluff/metalpole/end{ + dir = 1; + pixel_y = 32 + }, +/turf/open/floor/plating/airless, +/area/shuttle/supply) + +(1,1,1) = {" +kh +zx +UX +vd +lb +bh +Xb +Gf +bh +bh +bh +SL +"} +(2,1,1) = {" +Zh +Xe +sR +Uj +hV +UC +hV +wI +zP +hv +uB +bh +"} +(3,1,1) = {" +CR +Xe +sR +sR +sR +sR +sR +sR +sR +sR +sR +bh +"} +(4,1,1) = {" +fh +zx +VP +hC +hC +oU +sR +VP +hC +hC +oU +bh +"} +(5,1,1) = {" +CR +Xe +hC +hC +hC +hC +sR +hC +hC +hC +hC +bh +"} +(6,1,1) = {" +Zh +Xe +Ow +pD +hC +sN +sR +Ow +PH +pD +sN +bh +"} +(7,1,1) = {" +kh +zx +aK +bh +bh +bh +bh +bh +bh +bh +bh +dO +"} diff --git a/_maps/shuttles/nova/cargo_ouroboros.dmm b/_maps/shuttles/nova/cargo_ouroboros.dmm new file mode 100644 index 00000000000000..ab03de2038005f --- /dev/null +++ b/_maps/shuttles/nova/cargo_ouroboros.dmm @@ -0,0 +1,220 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/open/floor/catwalk_floor/iron, +/area/shuttle/supply) +"d" = ( +/obj/machinery/light/cold/no_nightlight/directional/south, +/turf/open/floor/catwalk_floor/iron, +/area/shuttle/supply) +"e" = ( +/obj/machinery/conveyor{ + id = "QMLoad2"; + dir = 4 + }, +/obj/structure/fans/tiny/invisible, +/obj/machinery/door/poddoor{ + id = "QMLoaddoor3"; + name = "Supply Shuttle Loading Door" + }, +/turf/open/floor/plating, +/area/shuttle/supply) +"f" = ( +/obj/machinery/light/cold/no_nightlight/directional/north, +/turf/open/floor/catwalk_floor/iron, +/area/shuttle/supply) +"g" = ( +/obj/machinery/light/cold/no_nightlight/directional/west, +/turf/open/floor/catwalk_floor/iron, +/area/shuttle/supply) +"h" = ( +/obj/structure/railing, +/turf/open/floor/catwalk_floor/iron, +/area/shuttle/supply) +"i" = ( +/obj/structure/marker_beacon/bronze, +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/supply) +"j" = ( +/obj/machinery/light/cold/no_nightlight/directional/east, +/obj/machinery/button/door/directional/east{ + id = "QMLoaddoor3"; + name = "Supply Shuttle Loading Door" + }, +/turf/open/floor/catwalk_floor/iron, +/area/shuttle/supply) +"m" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "QMLoad" + }, +/turf/open/floor/plating, +/area/shuttle/supply) +"s" = ( +/obj/machinery/power/shuttle_engine/heater, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/shuttle/supply) +"v" = ( +/turf/closed/wall/mineral/titanium/spaceship/nodiagonal, +/area/shuttle/supply) +"y" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/power/shuttle_engine/propulsion, +/turf/open/floor/plating/airless, +/area/shuttle/supply) +"z" = ( +/obj/machinery/light/cold/no_nightlight/directional/east, +/turf/open/floor/catwalk_floor/iron, +/area/shuttle/supply) +"B" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "QMLoad" + }, +/obj/machinery/door/poddoor{ + id = "QMLoaddoor3"; + name = "Supply Shuttle Loading Door" + }, +/obj/structure/fans/tiny/invisible, +/turf/open/floor/plating, +/area/shuttle/supply) +"C" = ( +/obj/machinery/conveyor{ + id = "QMLoad2"; + dir = 4 + }, +/turf/open/floor/plating, +/area/shuttle/supply) +"D" = ( +/obj/structure/marker_beacon/burgundy, +/turf/closed/wall/mineral/titanium/spaceship/nodiagonal, +/area/shuttle/supply) +"F" = ( +/turf/open/floor/iron/half{ + dir = 1 + }, +/area/shuttle/supply) +"M" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Supply Shuttle Airlock" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/docking_port/mobile/supply, +/turf/open/floor/plating, +/area/shuttle/supply) +"Q" = ( +/obj/structure/marker_beacon/bronze, +/turf/closed/wall/mineral/titanium, +/area/shuttle/supply) +"S" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Supply Shuttle Airlock" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/turf/open/floor/plating, +/area/shuttle/supply) +"X" = ( +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/supply) + +(1,1,1) = {" +Q +X +X +X +i +X +X +X +i +v +v +D +"} +(2,1,1) = {" +X +a +F +a +g +a +F +a +g +a +s +y +"} +(3,1,1) = {" +X +a +F +a +a +a +F +a +a +a +s +y +"} +(4,1,1) = {" +X +f +F +a +a +a +F +a +a +d +v +v +"} +(5,1,1) = {" +X +a +F +a +a +a +F +a +a +a +s +y +"} +(6,1,1) = {" +X +h +C +a +j +a +m +a +z +a +s +y +"} +(7,1,1) = {" +Q +X +e +S +i +M +B +X +i +v +v +D +"} diff --git a/_maps/shuttles/nova/goldeneye_cruiser.dmm b/_maps/shuttles/nova/goldeneye_cruiser.dmm new file mode 100644 index 00000000000000..67dfb45aaacd66 --- /dev/null +++ b/_maps/shuttles/nova/goldeneye_cruiser.dmm @@ -0,0 +1,1328 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ab" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/rglass{ + amount = 30; + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/stack/sheet/rglass{ + amount = 30; + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/storage/toolbox/electrical, +/obj/item/storage/box/lights, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/hallway) +"ah" = ( +/obj/machinery/recharge_station, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/hallway) +"bf" = ( +/obj/machinery/goldeneye_upload_terminal, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/brig) +"bg" = ( +/obj/effect/turf_decal/tile/neutral/diagonal_edge, +/obj/effect/turf_decal/tile/neutral/diagonal_centre, +/obj/effect/turf_decal/box/white/corners{ + dir = 8 + }, +/turf/open/floor/iron/dark/diagonal, +/area/shuttle/syndicate/cruiser/brig) +"bk" = ( +/obj/machinery/light/no_nightlight/directional/east, +/turf/open/floor/iron/smooth_large, +/area/shuttle/syndicate/cruiser/armory) +"bw" = ( +/obj/structure/chair/comfy/shuttle/tactical{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/hallway) +"bx" = ( +/obj/effect/turf_decal/bot_white, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/brig) +"bW" = ( +/obj/effect/turf_decal/bot_white, +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/light/no_nightlight/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/brig) +"ce" = ( +/obj/effect/turf_decal/tile/neutral/diagonal_edge, +/obj/effect/turf_decal/tile/neutral/diagonal_centre, +/obj/structure/chair/stool/directional/east, +/turf/open/floor/iron/dark/diagonal, +/area/shuttle/syndicate/cruiser/brig) +"cl" = ( +/obj/structure/chair/comfy/shuttle/tactical{ + dir = 1 + }, +/turf/open/floor/iron/smooth_large, +/area/shuttle/syndicate/cruiser/bridge) +"cu" = ( +/obj/structure/rack/shelf, +/obj/item/storage/medkit/toxin{ + pixel_y = 10 + }, +/obj/item/storage/medkit/o2{ + pixel_y = 5 + }, +/obj/item/storage/medkit/regular, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/medical) +"cw" = ( +/obj/machinery/door/poddoor/preopen{ + id = "syndicatecruiserwindows" + }, +/obj/effect/spawner/structure/window/reinforced/shuttle, +/turf/open/floor/plating, +/area/shuttle/syndicate/cruiser/medical) +"cN" = ( +/obj/machinery/porta_turret/syndicate/assaultops/shuttle{ + name = "Defense System Turret"; + system_id = "cruiser_turrets_outer" + }, +/obj/structure/fluff/metalpole/end{ + dir = 1; + pixel_y = 32 + }, +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/syndicate/cruiser/bridge) +"de" = ( +/obj/structure/rack/shelf, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/armory) +"dz" = ( +/turf/closed/wall/mineral/titanium/spaceship/nodiagonal, +/area/shuttle/syndicate/cruiser) +"dF" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "syndicatecruiserwindows"; + name = "Window Blast Doors"; + pixel_x = -5; + pixel_y = 7; + req_access = list("syndicate") + }, +/obj/machinery/button/door{ + id = "syndicatecruiserarmory"; + name = "Armory Blast Doors"; + pixel_x = -5; + pixel_y = -6; + req_access = list("syndicate") + }, +/obj/machinery/button/door{ + id = "syndicatecruiserhall"; + name = "Hall Shutters"; + pixel_x = 8; + req_access = list("syndicate") + }, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/bridge) +"dQ" = ( +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/syndicate/cruiser/brig) +"dR" = ( +/obj/machinery/computer/operating{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/medical) +"dT" = ( +/obj/structure/fans/tiny, +/obj/machinery/door/airlock/external/glass, +/obj/effect/mapping_helpers/airlock/cutaiwire, +/obj/effect/mapping_helpers/airlock/access/any/syndicate/general, +/obj/machinery/button/door{ + id = "syndicatecruiserhatchesright"; + name = "hatches"; + pixel_y = 32; + req_access = list("syndicate") + }, +/obj/machinery/door/poddoor{ + id = "syndicatecruiserhatchesright" + }, +/obj/docking_port/mobile{ + dir = 8; + hidden = 1; + shuttle_id = "goldeneye_cruiser"; + movement_force = list("KNOCKDOWN"=0,"THROW"=0); + name = "goldeneye cruiser"; + port_direction = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/hallway) +"eh" = ( +/obj/structure/closet/crate, +/obj/item/storage/toolbox/syndicate, +/obj/item/storage/toolbox/syndicate, +/obj/item/storage/toolbox/syndicate, +/obj/item/construction/rcd/loaded, +/obj/item/inducer/syndicate, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/hallway) +"er" = ( +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/syndicate/cruiser/bridge) +"et" = ( +/obj/effect/turf_decal/delivery/white, +/obj/machinery/door/airlock/medical{ + name = "Medbay" + }, +/obj/effect/mapping_helpers/airlock/cutaiwire, +/obj/effect/mapping_helpers/airlock/access/any/syndicate/general, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/medical) +"eU" = ( +/obj/machinery/light/no_nightlight/directional/south, +/turf/open/floor/iron/smooth_large, +/area/shuttle/syndicate/cruiser/hallway) +"fo" = ( +/obj/structure/rack/shelf, +/obj/item/suppressor{ + pixel_y = 5 + }, +/obj/item/suppressor, +/obj/item/suppressor{ + pixel_y = -4 + }, +/obj/effect/turf_decal/bot_white, +/obj/item/pinpointer/crew/contractor, +/obj/item/pinpointer/crew/contractor{ + pixel_y = 11 + }, +/obj/item/pinpointer/crew/contractor{ + pixel_y = -9 + }, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/armory) +"fH" = ( +/obj/machinery/computer/monitor{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/bridge) +"gO" = ( +/obj/structure/rack/shelf, +/obj/item/storage/box/bodybags, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/brig) +"ha" = ( +/obj/structure/closet/crate/freezer{ + name = "universal blood storage" + }, +/obj/machinery/iv_drip, +/obj/item/reagent_containers/blood/o_minus, +/obj/item/reagent_containers/blood/o_minus, +/obj/item/reagent_containers/blood/o_minus, +/obj/item/reagent_containers/blood/o_minus, +/obj/item/reagent_containers/blood/o_minus, +/obj/item/reagent_containers/blood/o_minus, +/obj/item/reagent_containers/blood/o_minus, +/obj/item/reagent_containers/blood/o_minus, +/obj/item/reagent_containers/blood/ethereal, +/obj/item/reagent_containers/blood/ethereal, +/obj/item/reagent_containers/blood/lizard, +/obj/item/reagent_containers/blood/lizard, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/medical) +"hk" = ( +/obj/structure/rack/shelf, +/obj/item/storage/box/handcuffs{ + pixel_y = -3 + }, +/obj/item/storage/box/handcuffs{ + pixel_y = 4 + }, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/armory) +"hy" = ( +/obj/effect/turf_decal/tile/neutral/diagonal_edge, +/obj/effect/turf_decal/tile/neutral/diagonal_centre, +/obj/effect/turf_decal/box/white/corners{ + dir = 1 + }, +/obj/effect/turf_decal/box/white/corners{ + dir = 8 + }, +/obj/structure/table, +/obj/structure/reagent_dispensers/servingdish, +/turf/open/floor/iron/dark/diagonal, +/area/shuttle/syndicate/cruiser/brig) +"iU" = ( +/obj/effect/turf_decal/tile/neutral/diagonal_edge, +/obj/effect/turf_decal/tile/neutral/diagonal_centre, +/obj/effect/turf_decal/box/white/corners{ + dir = 4 + }, +/obj/effect/turf_decal/box/white/corners, +/turf/open/floor/iron/dark/diagonal, +/area/shuttle/syndicate/cruiser/brig) +"ke" = ( +/obj/structure/bed/maint, +/obj/effect/turf_decal/tile/neutral/diagonal_edge, +/obj/effect/turf_decal/tile/neutral/diagonal_centre, +/obj/effect/turf_decal/box/white/corners{ + dir = 1 + }, +/obj/effect/turf_decal/box/white/corners{ + dir = 8 + }, +/obj/item/bedsheet/grey, +/obj/item/instrument/harmonica, +/turf/open/floor/iron/dark/diagonal, +/area/shuttle/syndicate/cruiser/brig) +"kh" = ( +/obj/effect/turf_decal/bot_white, +/obj/structure/tank_holder/anesthetic, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/medical) +"ks" = ( +/obj/machinery/power/shuttle_engine/propulsion, +/obj/effect/turf_decal/stripes/line, +/obj/structure/fluff/metalpole/end{ + pixel_y = -32 + }, +/turf/open/floor/plating/airless, +/area/shuttle/syndicate/cruiser) +"lO" = ( +/obj/machinery/computer/camera_advanced/syndie{ + dir = 8 + }, +/obj/machinery/light/no_nightlight/directional/east, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/bridge) +"mP" = ( +/obj/machinery/door/poddoor/preopen{ + id = "syndicatecruiserwindows" + }, +/obj/effect/spawner/structure/window/reinforced/shuttle, +/turf/open/floor/plating, +/area/shuttle/syndicate/cruiser/bridge) +"nZ" = ( +/turf/open/floor/mineral/titanium/tiled/white, +/area/shuttle/syndicate/cruiser/medical) +"ol" = ( +/obj/machinery/door/airlock/external/glass, +/obj/effect/mapping_helpers/airlock/cutaiwire, +/obj/effect/mapping_helpers/airlock/access/any/syndicate/general, +/obj/machinery/button/door{ + id = "syndicatecruiserhatchesright"; + name = "hatches"; + pixel_y = 32; + req_access = list("syndicate") + }, +/obj/machinery/door/poddoor{ + id = "syndicatecruiserhatchesright" + }, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/hallway) +"oH" = ( +/obj/structure/tank_holder/extinguisher, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/hallway) +"pg" = ( +/obj/effect/turf_decal/tile/neutral/diagonal_edge, +/obj/effect/turf_decal/tile/neutral/diagonal_centre, +/obj/effect/turf_decal/box/white/corners{ + dir = 4 + }, +/obj/structure/chair/stool/directional/west, +/turf/open/floor/iron/dark/diagonal, +/area/shuttle/syndicate/cruiser/brig) +"pE" = ( +/obj/machinery/power/shuttle_engine/heater, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/shuttle/syndicate/cruiser) +"pX" = ( +/obj/machinery/porta_turret/syndicate/assaultops/shuttle{ + name = "Defense System Turret"; + system_id = "cruiser_turrets_outer" + }, +/turf/closed/wall/mineral/titanium/spaceship, +/area/shuttle/syndicate/cruiser) +"ql" = ( +/obj/structure/closet/secure_closet{ + name = "Secure Storage"; + req_access = list("syndicate") + }, +/obj/item/storage/box/handcuffs{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/storage/box/zipties{ + pixel_x = -2 + }, +/obj/item/storage/box/bodybags, +/obj/item/stack/sticky_tape, +/obj/item/melee/baton/security/loaded, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/hallway) +"qG" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/bridge) +"qU" = ( +/obj/machinery/door/airlock/external/glass, +/obj/effect/mapping_helpers/airlock/cutaiwire, +/obj/effect/mapping_helpers/airlock/access/any/syndicate/general, +/obj/machinery/button/door{ + id = "syndicatecruiserhatches"; + name = "hatches"; + pixel_y = 32; + req_access = list("syndicate") + }, +/obj/machinery/door/poddoor{ + id = "syndicatecruiserhatches" + }, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/hallway) +"rj" = ( +/obj/machinery/light/no_nightlight/directional/east, +/turf/open/floor/mineral/titanium/tiled/white, +/area/shuttle/syndicate/cruiser/medical) +"rk" = ( +/turf/closed/wall/mineral/titanium, +/area/shuttle/syndicate/cruiser/medical) +"ru" = ( +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/syndicate/cruiser/hallway) +"rA" = ( +/obj/machinery/power/shuttle_engine/propulsion, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/fluff/metalpole/end{ + pixel_y = -32 + }, +/turf/open/floor/plating/airless, +/area/shuttle/syndicate/cruiser) +"rF" = ( +/obj/machinery/computer/records/security/syndie{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/bridge) +"sP" = ( +/obj/machinery/computer/crew/syndie{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/bridge) +"sX" = ( +/obj/effect/spawner/random/vending/snackvend, +/obj/item/storage/box/donkpockets/donkpocketteriyaki{ + pixel_y = 18; + pixel_x = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/bridge) +"ts" = ( +/obj/structure/chair/comfy/shuttle/tactical{ + dir = 8 + }, +/turf/open/floor/iron/smooth_large, +/area/shuttle/syndicate/cruiser/bridge) +"uo" = ( +/obj/machinery/porta_turret/syndicate/assaultops/shuttle{ + name = "Defense System Turret"; + system_id = "cruiser_turrets_outer" + }, +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/syndicate/cruiser/hallway) +"ur" = ( +/obj/machinery/autolathe/hacked, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/hallway) +"uS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters{ + id = "syndicatecruisercargo" + }, +/turf/open/floor/engine, +/area/shuttle/syndicate/cruiser/brig) +"vZ" = ( +/obj/machinery/sleeper/syndie/fullupgrade{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/medical) +"wb" = ( +/obj/structure/table/optable, +/obj/effect/turf_decal/bot, +/obj/machinery/defibrillator_mount/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/medical) +"ws" = ( +/obj/structure/tank_holder/oxygen/yellow, +/obj/effect/turf_decal/bot_white, +/obj/machinery/light/no_nightlight/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/hallway) +"wI" = ( +/obj/structure/fluff/metalpole/end{ + dir = 1; + pixel_y = 32 + }, +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/syndicate/cruiser/medical) +"xL" = ( +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/syndicate/cruiser/medical) +"xT" = ( +/obj/effect/turf_decal/tile/neutral/diagonal_edge, +/obj/effect/turf_decal/tile/neutral/diagonal_centre, +/turf/open/floor/iron/dark/diagonal, +/area/shuttle/syndicate/cruiser/brig) +"xX" = ( +/obj/effect/turf_decal/tile/neutral/diagonal_edge, +/obj/effect/turf_decal/tile/neutral/diagonal_centre, +/obj/effect/turf_decal/box/white/corners{ + dir = 1 + }, +/obj/effect/turf_decal/box/white/corners{ + dir = 8 + }, +/obj/machinery/space_heater, +/turf/open/floor/iron/dark/diagonal, +/area/shuttle/syndicate/cruiser/brig) +"yT" = ( +/obj/structure/bed/maint, +/obj/item/bedsheet/grey, +/obj/machinery/light/no_nightlight/directional/south, +/turf/open/floor/iron/smooth_large, +/area/shuttle/syndicate/cruiser/brig) +"zh" = ( +/obj/machinery/porta_turret/syndicate/assaultops/shuttle{ + name = "Defense System Turret"; + system_id = "cruiser_turrets_outer" + }, +/obj/structure/fluff/metalpole/end{ + dir = 1; + pixel_y = 32 + }, +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/syndicate/cruiser/medical) +"zo" = ( +/obj/machinery/door/airlock/external/glass, +/obj/effect/mapping_helpers/airlock/cutaiwire, +/obj/effect/mapping_helpers/airlock/access/any/syndicate/general, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/brig) +"zL" = ( +/turf/template_noop, +/area/template_noop) +"AM" = ( +/obj/effect/turf_decal/delivery/white, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge" + }, +/obj/effect/mapping_helpers/airlock/access/any/syndicate/general, +/obj/effect/mapping_helpers/airlock/cutaiwire, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/bridge) +"Bd" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/hallway) +"Bx" = ( +/obj/effect/turf_decal/bot_white, +/obj/structure/tank_holder, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/brig) +"CH" = ( +/turf/open/floor/iron/smooth_large, +/area/shuttle/syndicate/cruiser/hallway) +"CI" = ( +/obj/structure/table/reinforced, +/obj/item/radio/intercom{ + freerange = 1; + name = "Syndicate Radio Intercom" + }, +/obj/machinery/turretid{ + name = "DANGER: Outer Turret Control"; + pixel_x = -28; + req_access = list("syndicate"); + system_id = "cruiser_turrets_outer" + }, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/bridge) +"CT" = ( +/obj/effect/turf_decal/tile/neutral/diagonal_edge, +/obj/effect/turf_decal/tile/neutral/diagonal_centre, +/obj/effect/turf_decal/box/white/corners, +/turf/open/floor/iron/dark/diagonal, +/area/shuttle/syndicate/cruiser/brig) +"Ei" = ( +/obj/machinery/porta_turret/syndicate/assaultops/shuttle{ + name = "Defense System Turret"; + system_id = "cruiser_turrets_outer" + }, +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/syndicate/cruiser/brig) +"El" = ( +/obj/machinery/porta_turret/syndicate/assaultops/shuttle{ + name = "Defense System Turret"; + system_id = "cruiser_turrets_outer" + }, +/turf/closed/wall/mineral/titanium, +/area/shuttle/syndicate/cruiser/hallway) +"EL" = ( +/obj/effect/turf_decal/tile/neutral/diagonal_edge, +/obj/effect/turf_decal/tile/neutral/diagonal_centre, +/obj/structure/table, +/obj/effect/spawner/random/entertainment/dice, +/obj/machinery/light/no_nightlight/directional/north, +/turf/open/floor/iron/dark/diagonal, +/area/shuttle/syndicate/cruiser/brig) +"Fv" = ( +/obj/structure/marker_beacon/burgundy, +/turf/closed/wall/mineral/titanium, +/area/shuttle/syndicate/cruiser/hallway) +"FA" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/pen/screwdriver, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/bridge) +"FH" = ( +/obj/machinery/sleeper/syndie/fullupgrade{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/no_nightlight/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/medical) +"FJ" = ( +/obj/structure/closet/crate/medical, +/obj/item/storage/medkit/emergency, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/brig) +"FM" = ( +/obj/machinery/smartfridge/chemistry/preloaded, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/medical) +"FO" = ( +/turf/open/floor/catwalk_floor/iron_dark, +/area/shuttle/syndicate/cruiser/hallway) +"Gz" = ( +/obj/machinery/door/poddoor/preopen{ + id = "syndicatecruiserwindows" + }, +/obj/effect/spawner/structure/window/reinforced/shuttle, +/turf/open/floor/plating, +/area/shuttle/syndicate/cruiser/brig) +"GD" = ( +/obj/structure/marker_beacon/olive, +/turf/closed/wall/mineral/titanium, +/area/shuttle/syndicate/cruiser/brig) +"GN" = ( +/obj/machinery/vending/medical/syndicate_access, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/medical) +"Hd" = ( +/obj/effect/turf_decal/bot_white, +/obj/structure/tank_holder/extinguisher, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/hallway) +"Hm" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/hallway) +"Hq" = ( +/obj/structure/marker_beacon/olive, +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/syndicate/cruiser/medical) +"HE" = ( +/turf/closed/wall/mineral/titanium/spaceship, +/area/shuttle/syndicate/cruiser) +"Ih" = ( +/obj/machinery/interrogator, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/brig) +"JA" = ( +/obj/structure/fans/tiny, +/obj/machinery/door/airlock/external/glass, +/obj/effect/mapping_helpers/airlock/cutaiwire, +/obj/effect/mapping_helpers/airlock/access/any/syndicate/general, +/obj/machinery/button/door{ + id = "syndicatecruiserhatches"; + name = "hatches"; + pixel_y = 32; + req_access = list("syndicate") + }, +/obj/machinery/door/poddoor{ + id = "syndicatecruiserhatches" + }, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/hallway) +"JF" = ( +/obj/structure/rack/shelf, +/obj/item/bodybag/environmental/prisoner/syndicate, +/obj/item/bodybag/environmental/prisoner/syndicate{ + pixel_y = 7 + }, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/armory) +"JN" = ( +/obj/item/hand_item/circlegame, +/turf/open/floor/circuit/red/anim, +/area/shuttle/syndicate/cruiser) +"JW" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Terminal Chamber" + }, +/obj/effect/mapping_helpers/airlock/cutaiwire, +/obj/effect/mapping_helpers/airlock/access/any/syndicate/general, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/brig) +"JY" = ( +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/syndicate/cruiser/armory) +"KN" = ( +/obj/structure/tank_dispenser/oxygen, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/hallway) +"LI" = ( +/obj/structure/marker_beacon/olive, +/turf/closed/wall/mineral/titanium/spaceship/nodiagonal, +/area/shuttle/syndicate/cruiser) +"Ma" = ( +/obj/structure/marker_beacon/burgundy, +/turf/closed/wall/mineral/titanium/spaceship/nodiagonal, +/area/shuttle/syndicate/cruiser) +"MD" = ( +/turf/open/floor/catwalk_floor/iron_dark, +/area/shuttle/syndicate/cruiser/brig) +"MO" = ( +/obj/structure/marker_beacon/burgundy, +/turf/closed/wall/mineral/titanium, +/area/shuttle/syndicate/cruiser/bridge) +"Nq" = ( +/obj/structure/rack/shelf, +/obj/item/binoculars, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/bridge) +"NE" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/light/no_nightlight/directional/west, +/obj/machinery/button/door/directional/east{ + id = "syndicatecruisercargo"; + name = "Cargo Bay External Shutters" + }, +/turf/open/floor/iron/smooth_large, +/area/shuttle/syndicate/cruiser/hallway) +"Om" = ( +/obj/machinery/power/shuttle_engine/propulsion, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/shuttle/syndicate/cruiser) +"Oy" = ( +/obj/machinery/power/shuttle_engine/heater, +/turf/open/floor/plating/airless, +/area/shuttle/syndicate/cruiser) +"Pj" = ( +/obj/machinery/ammo_workbench/unlocked, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/armory) +"Py" = ( +/obj/structure/closet/secure_closet{ + name = "Prisoner Locker"; + req_access = list("syndicate") + }, +/obj/item/clothing/under/rank/prisoner/skirt/syndicate, +/obj/item/clothing/under/rank/prisoner/skirt/syndicate, +/obj/item/clothing/under/rank/prisoner/skirt/syndicate, +/obj/item/clothing/under/rank/prisoner/skirt/syndicate, +/obj/item/clothing/under/rank/prisoner/skirt/syndicate, +/obj/item/clothing/under/rank/prisoner/skirt/syndicate, +/obj/item/clothing/under/rank/prisoner/syndicate, +/obj/item/clothing/under/rank/prisoner/syndicate, +/obj/item/clothing/under/rank/prisoner/syndicate, +/obj/item/clothing/under/rank/prisoner/syndicate, +/obj/item/clothing/under/rank/prisoner/syndicate, +/obj/item/clothing/under/rank/prisoner/syndicate, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/hallway) +"PB" = ( +/obj/structure/bed/maint, +/obj/item/bedsheet/grey{ + dir = 1 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/shuttle/syndicate/cruiser/brig) +"PL" = ( +/obj/machinery/power/shuttle_engine/heater, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plating/airless, +/area/shuttle/syndicate/cruiser) +"QP" = ( +/obj/machinery/porta_turret/syndicate/assaultops/internal, +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/syndicate/cruiser/hallway) +"QU" = ( +/obj/machinery/turretid{ + name = "Internal Turret Control"; + pixel_y = 30; + req_access = list("syndicate"); + system_id = "cruiser_turrets_internal" + }, +/obj/machinery/light/no_nightlight/directional/north, +/turf/open/floor/iron/smooth_large, +/area/shuttle/syndicate/cruiser/hallway) +"QV" = ( +/obj/effect/turf_decal/tile/neutral/diagonal_edge, +/obj/effect/turf_decal/tile/neutral/diagonal_centre, +/obj/structure/table, +/obj/effect/spawner/random/entertainment/deck, +/turf/open/floor/iron/dark/diagonal, +/area/shuttle/syndicate/cruiser/brig) +"Re" = ( +/obj/machinery/computer/shuttle/goldeneye_cruiser, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/bridge) +"RB" = ( +/obj/effect/turf_decal/tile/neutral/diagonal_edge, +/obj/effect/turf_decal/tile/neutral/diagonal_centre, +/obj/effect/turf_decal/box/white/corners{ + dir = 4 + }, +/obj/effect/turf_decal/box/white/corners, +/obj/structure/table, +/obj/structure/bedsheetbin, +/turf/open/floor/iron/dark/diagonal, +/area/shuttle/syndicate/cruiser/brig) +"SI" = ( +/obj/machinery/door/airlock/hatch{ + name = "Armory" + }, +/obj/effect/mapping_helpers/airlock/cutaiwire, +/obj/effect/mapping_helpers/airlock/access/any/syndicate/general, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/armory) +"SK" = ( +/obj/effect/turf_decal/tile/neutral/diagonal_edge, +/obj/effect/turf_decal/tile/neutral/diagonal_centre, +/obj/effect/turf_decal/box/white/corners{ + dir = 4 + }, +/obj/effect/turf_decal/box/white/corners, +/obj/structure/table, +/obj/item/reagent_containers/cup/bowl, +/obj/item/reagent_containers/cup/bowl{ + pixel_y = 5 + }, +/obj/item/reagent_containers/cup/bowl{ + pixel_y = 10 + }, +/turf/open/floor/iron/dark/diagonal, +/area/shuttle/syndicate/cruiser/brig) +"Tr" = ( +/obj/structure/chair, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/brig) +"TJ" = ( +/obj/structure/rack/gunrack, +/obj/item/gun/energy/ionrifle, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/armory) +"Ua" = ( +/obj/effect/turf_decal/tile/neutral/diagonal_edge, +/obj/effect/turf_decal/tile/neutral/diagonal_centre, +/obj/effect/turf_decal/box/white/corners{ + dir = 1 + }, +/obj/structure/chair/stool/directional/east, +/turf/open/floor/iron/dark/diagonal, +/area/shuttle/syndicate/cruiser/brig) +"Ud" = ( +/obj/structure/closet/crate/medical, +/mob/living/basic/bot/medbot{ + faction = list("Syndicate"); + name = "James T. Kirk"; + radio_channel = "Syndicate" + }, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/hallway) +"Vm" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/iron/smooth_large, +/area/shuttle/syndicate/cruiser/hallway) +"VU" = ( +/turf/open/floor/iron/smooth_large, +/area/shuttle/syndicate/cruiser/armory) +"Wb" = ( +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/syndicate/cruiser) +"Wk" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/light/blacklight/directional/east, +/turf/open/floor/catwalk_floor/iron_dark, +/area/shuttle/syndicate/cruiser/brig) +"Wz" = ( +/turf/closed/wall/mineral/titanium, +/area/shuttle/syndicate/cruiser/bridge) +"WF" = ( +/obj/machinery/power/shuttle_engine/propulsion, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/fluff/metalpole/end{ + pixel_y = -32 + }, +/turf/open/floor/plating/airless, +/area/shuttle/syndicate/cruiser) +"Xu" = ( +/obj/machinery/computer/camera_advanced/shuttle_docker/goldeneye_cruiser, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/bridge) +"Yk" = ( +/turf/open/floor/iron/smooth_large, +/area/shuttle/syndicate/cruiser/bridge) +"YJ" = ( +/turf/open/floor/catwalk_floor/iron_smooth, +/area/shuttle/syndicate/cruiser/brig) +"Zf" = ( +/obj/machinery/space_heater, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/hallway) +"Zm" = ( +/turf/open/floor/iron/smooth_large, +/area/shuttle/syndicate/cruiser/brig) +"Zy" = ( +/obj/machinery/porta_turret/syndicate/assaultops/shuttle{ + name = "Defense System Turret"; + system_id = "cruiser_turrets_outer" + }, +/turf/closed/wall/mineral/titanium/spaceship/nodiagonal, +/area/shuttle/syndicate/cruiser) +"ZC" = ( +/obj/structure/rack/shelf, +/obj/effect/turf_decal/bot_white, +/obj/item/defibrillator/loaded, +/obj/item/storage/backpack/duffelbag/syndie/surgery, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/syndicate/cruiser/medical) + +(1,1,1) = {" +zL +zL +zL +zL +zL +zL +zL +El +ru +JA +ru +El +zL +zL +zL +Fv +ru +ru +ru +ru +ru +uo +Ma +HE +zL +zL +zL +"} +(2,1,1) = {" +zL +zL +zL +MO +mP +mP +er +er +ah +FO +ws +ru +ru +ru +ru +ru +Bd +Hm +ru +ah +ql +ru +ru +dz +dz +pX +zL +"} +(3,1,1) = {" +cN +mP +mP +er +fH +rF +FA +er +ru +qU +QP +ru +ur +eh +ab +ru +CH +CH +NE +CH +CH +Py +ru +dz +Oy +ks +zL +"} +(4,1,1) = {" +mP +Xu +dF +CI +ts +Yk +qG +er +oH +CH +CH +Vm +CH +CH +CH +CH +CH +Hd +dQ +Gz +zo +dQ +dQ +dz +Oy +Om +zL +"} +(5,1,1) = {" +mP +Re +cl +Yk +Yk +Yk +Yk +AM +CH +CH +ru +ru +Ud +eU +dQ +dQ +JW +dQ +dQ +bx +MD +bW +dQ +dz +dz +pE +WF +"} +(6,1,1) = {" +Wz +mP +er +Nq +sP +lO +sX +er +Zf +CH +bw +ru +KN +CH +dQ +Tr +MD +Ih +dQ +Gz +zo +dQ +dQ +JN +dz +Oy +Om +"} +(7,1,1) = {" +zL +zL +Wz +xL +xL +xL +xL +xL +xL +QU +bw +JY +JY +SI +dQ +bf +Wk +gO +dQ +xX +Zm +hy +dQ +Wb +dz +dz +Zy +"} +(8,1,1) = {" +zL +zL +zL +wI +dR +ZC +FH +vZ +cw +CH +bw +JY +TJ +VU +dQ +dQ +dQ +dQ +dQ +RB +Zm +SK +dQ +Wb +dz +Oy +Om +"} +(9,1,1) = {" +zL +zL +zL +xL +wb +nZ +nZ +nZ +et +CH +CH +SI +VU +VU +hk +dQ +Ua +ce +bg +YJ +yT +dQ +dQ +dz +dz +PL +rA +"} +(10,1,1) = {" +zL +zL +zL +xL +cu +nZ +kh +ha +xL +CH +Zf +JY +de +VU +JF +dQ +EL +QV +xT +YJ +YJ +ke +dQ +dz +Oy +Om +zL +"} +(11,1,1) = {" +zL +zL +rk +xL +GN +rj +FM +xL +xL +ol +QP +JY +Pj +bk +fo +dQ +pg +xT +CT +PB +Zm +iU +dQ +dz +Oy +ks +zL +"} +(12,1,1) = {" +zL +zL +zh +Hq +xL +xL +xL +xL +ah +FO +ws +JY +JY +JY +JY +dQ +FJ +Zm +Zm +Zm +Bx +dQ +dQ +dz +dz +pX +zL +"} +(13,1,1) = {" +zL +zL +zL +zL +zL +zL +zL +El +ru +dT +ru +El +zL +zL +zL +GD +dQ +uS +uS +uS +dQ +Ei +LI +HE +zL +zL +zL +"} diff --git a/_maps/shuttles/nova/mining_nova_large.dmm b/_maps/shuttles/nova/mining_nova_large.dmm new file mode 100644 index 00000000000000..cae935a931dd09 --- /dev/null +++ b/_maps/shuttles/nova/mining_nova_large.dmm @@ -0,0 +1,542 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"dl" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/external/ruin{ + name = "Mining Shuttle External Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/iron/shuttle/exploration/textured_flat, +/area/shuttle/mining/large) +"dN" = ( +/turf/closed/wall/mineral/titanium/shuttle_wall/mining_large{ + icon_state = "2,1" + }, +/area/shuttle/mining/large) +"eI" = ( +/turf/closed/wall/mineral/titanium/shuttle_wall/mining_large, +/area/shuttle/mining/large) +"gl" = ( +/obj/effect/turf_decal/shuttle/exploration/hazardstripe, +/obj/effect/turf_decal/shuttle/exploration/hazardstripe{ + dir = 1 + }, +/obj/effect/turf_decal/shuttle/exploration/airlock, +/obj/structure/cable, +/turf/open/floor/iron/shuttle/exploration, +/area/shuttle/mining/large) +"hn" = ( +/obj/machinery/computer/shuttle/mining, +/obj/effect/turf_decal/shuttle/exploration/hazardstripe, +/turf/open/floor/iron/shuttle/exploration/side, +/area/shuttle/mining/large) +"iL" = ( +/turf/closed/wall/mineral/titanium/shuttle_wall/mining_large{ + icon_state = "6,4" + }, +/area/shuttle/mining/large) +"iN" = ( +/obj/effect/turf_decal/shuttle/exploration/hazardstripe, +/obj/structure/cable, +/turf/open/floor/iron/shuttle/exploration/doubleinvertcorner{ + dir = 1 + }, +/area/shuttle/mining/large) +"jP" = ( +/turf/closed/wall/mineral/titanium/shuttle_wall/mining_large{ + icon_state = "4,1" + }, +/area/shuttle/mining/large) +"kU" = ( +/obj/structure/table/reinforced, +/turf/open/floor/iron/shuttle/exploration/side, +/area/shuttle/mining/large) +"mX" = ( +/turf/closed/wall/mineral/titanium/shuttle_wall/mining_large{ + icon_state = "1,1" + }, +/area/shuttle/mining/large) +"ne" = ( +/turf/open/floor/iron/shuttle/exploration/corner{ + dir = 1 + }, +/area/shuttle/mining/large) +"nE" = ( +/turf/closed/wall/mineral/titanium/shuttle_wall/mining_large{ + icon_state = "0,6" + }, +/area/shuttle/mining/large) +"nQ" = ( +/turf/closed/wall/mineral/titanium/shuttle_wall/mining_large{ + icon_state = "4,5" + }, +/area/shuttle/mining/large) +"pa" = ( +/obj/machinery/light/small/directional/south, +/obj/item/radio/intercom{ + pixel_y = -29 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/shuttle/exploration/side{ + dir = 1 + }, +/area/shuttle/mining/large) +"pe" = ( +/turf/closed/wall/mineral/titanium/shuttle_wall/window/mining_large{ + icon_state = "1,0" + }, +/area/shuttle/mining/large) +"pA" = ( +/turf/closed/wall/mineral/titanium/shuttle_wall/window/mining_large, +/area/shuttle/mining/large) +"qb" = ( +/turf/open/floor/iron/shuttle/exploration/side, +/area/shuttle/mining/large) +"rw" = ( +/turf/closed/wall/mineral/titanium/shuttle_wall/mining_large{ + icon_state = "1,9" + }, +/area/shuttle/mining/large) +"rM" = ( +/turf/closed/wall/mineral/titanium/shuttle_wall/mining_large{ + icon_state = "6,1" + }, +/area/shuttle/mining/large) +"sG" = ( +/turf/closed/wall/mineral/titanium/shuttle_wall/mining_large{ + icon_state = "0,9" + }, +/area/shuttle/mining/large) +"sM" = ( +/turf/closed/wall/mineral/titanium/shuttle_wall/mining_large{ + icon_state = "4,0" + }, +/area/shuttle/mining/large) +"sQ" = ( +/obj/structure/cable, +/turf/open/floor/iron/shuttle/exploration/invertcorner_side_flipped{ + dir = 8 + }, +/area/shuttle/mining/large) +"ts" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/external/ruin{ + name = "Mining Shuttle External Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/docking_port/mobile{ + shuttle_id = "mining"; + name = "mining shuttle"; + port_direction = 2 + }, +/turf/open/floor/iron/shuttle/exploration/flat, +/area/shuttle/mining/large) +"xn" = ( +/obj/machinery/status_display/evac, +/turf/closed/wall/mineral/titanium/shuttle_wall/mining_large{ + icon_state = "2,5" + }, +/area/shuttle/mining/large) +"xr" = ( +/obj/structure/table/reinforced, +/obj/item/stack/ore/iron{ + pixel_x = -2; + pixel_y = -8 + }, +/obj/item/stack/ore/iron{ + pixel_x = 6; + pixel_y = 4 + }, +/turf/open/floor/iron/shuttle/exploration/corner{ + dir = 8 + }, +/area/shuttle/mining/large) +"yQ" = ( +/turf/closed/wall/mineral/titanium/shuttle_wall/mining_large{ + icon_state = "5,1" + }, +/area/shuttle/mining/large) +"zb" = ( +/obj/structure/cable, +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron/shuttle/exploration/side{ + dir = 1 + }, +/area/shuttle/mining/large) +"zQ" = ( +/obj/machinery/door/airlock/mining{ + name = "Mining Shuttle Cockpit" + }, +/turf/open/floor/iron/shuttle/exploration/textured_flat, +/area/shuttle/mining/large) +"Aq" = ( +/turf/closed/wall/mineral/titanium/shuttle_wall/window/mining_large{ + icon_state = "4-2,9" + }, +/area/shuttle/mining/large) +"Cq" = ( +/turf/closed/wall/mineral/titanium/shuttle_wall/window/mining_large{ + icon_state = "6,0" + }, +/area/shuttle/mining/large) +"Dt" = ( +/turf/closed/wall/mineral/titanium/shuttle_wall/mining_large{ + icon_state = "2,0" + }, +/area/shuttle/mining/large) +"ER" = ( +/obj/structure/table/reinforced, +/obj/item/screwdriver{ + pixel_y = 18 + }, +/obj/item/stock_parts/cell/high, +/turf/open/floor/iron/shuttle/exploration/side{ + dir = 8 + }, +/area/shuttle/mining/large) +"ET" = ( +/turf/closed/wall/mineral/titanium/shuttle_wall/window/mining_large{ + icon_state = "0,3" + }, +/area/shuttle/mining/large) +"Gl" = ( +/obj/structure/ore_box, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/shuttle/exploration/corner{ + dir = 8 + }, +/area/shuttle/mining/large) +"Gv" = ( +/turf/closed/wall/mineral/titanium/shuttle_wall/mining_large{ + icon_state = "1,5" + }, +/area/shuttle/mining/large) +"Ir" = ( +/turf/closed/wall/mineral/titanium/shuttle_wall/mining_large{ + icon_state = "5,5" + }, +/area/shuttle/mining/large) +"Iv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/shuttle/exploration/invertcorner_side{ + dir = 4 + }, +/area/shuttle/mining/large) +"ID" = ( +/turf/closed/wall/mineral/titanium/shuttle_wall/mining_large{ + icon_state = "6,5" + }, +/area/shuttle/mining/large) +"IG" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/iron/shuttle/exploration/side, +/area/shuttle/mining/large) +"IX" = ( +/turf/closed/wall/mineral/titanium/shuttle_wall/mining_large{ + icon_state = "6,6" + }, +/area/shuttle/mining/large) +"IY" = ( +/turf/closed/wall/mineral/titanium/shuttle_wall/window/mining_large{ + icon_state = "0,0" + }, +/area/shuttle/mining/large) +"Jw" = ( +/turf/closed/wall/mineral/titanium/shuttle_wall/mining_large{ + icon_state = "6,7" + }, +/area/shuttle/mining/large) +"KF" = ( +/turf/closed/wall/mineral/titanium/shuttle_wall/mining_large{ + icon_state = "0,4" + }, +/area/shuttle/mining/large) +"KR" = ( +/turf/closed/wall/mineral/titanium/shuttle_wall/mining_large{ + icon_state = "6,9" + }, +/area/shuttle/mining/large) +"LL" = ( +/turf/closed/wall/mineral/titanium/shuttle_wall/mining_large{ + icon_state = "0,5" + }, +/area/shuttle/mining/large) +"LO" = ( +/obj/effect/turf_decal/shuttle/exploration/bot, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/shuttle/exploration/uside{ + dir = 1 + }, +/area/shuttle/mining/large) +"Nr" = ( +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/head/utility/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/utility/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/utility/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/utility/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/utility/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/structure/closet/crate/internals, +/obj/item/pickaxe/emergency, +/obj/item/pickaxe/emergency, +/turf/open/floor/iron/shuttle/exploration/corner, +/area/shuttle/mining/large) +"NL" = ( +/obj/structure/table/reinforced, +/obj/item/storage/medkit/regular, +/turf/open/floor/iron/shuttle/exploration/corner, +/area/shuttle/mining/large) +"Oa" = ( +/turf/closed/wall/mineral/titanium/shuttle_wall/mining_large{ + icon_state = "4,2" + }, +/area/shuttle/mining/large) +"Of" = ( +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron/shuttle/exploration/side{ + dir = 1 + }, +/area/shuttle/mining/large) +"Pw" = ( +/turf/closed/wall/mineral/titanium/shuttle_wall/mining_large{ + icon_state = "3,9" + }, +/area/shuttle/mining/large) +"Qw" = ( +/obj/effect/turf_decal/shuttle/exploration/hazardstripe{ + dir = 1 + }, +/turf/open/floor/iron/shuttle/exploration/doubleinvertcorner, +/area/shuttle/mining/large) +"QT" = ( +/turf/closed/wall/mineral/titanium/shuttle_wall/mining_large{ + icon_state = "6,8" + }, +/area/shuttle/mining/large) +"Rb" = ( +/turf/closed/wall/mineral/titanium/shuttle_wall/mining_large{ + icon_state = "0,7" + }, +/area/shuttle/mining/large) +"Rj" = ( +/turf/closed/wall/mineral/titanium/shuttle_wall/mining_large{ + icon_state = "0,1" + }, +/area/shuttle/mining/large) +"Rx" = ( +/turf/closed/wall/mineral/titanium/shuttle_wall/mining_large{ + icon_state = "6,2" + }, +/area/shuttle/mining/large) +"TL" = ( +/obj/effect/turf_decal/shuttle/exploration/bot, +/obj/structure/closet/shuttle/mining{ + dir = 1 + }, +/turf/open/floor/iron/shuttle/exploration/uside{ + dir = 1 + }, +/area/shuttle/mining/large) +"Ur" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/effect/turf_decal/shuttle/exploration/bot, +/turf/open/floor/iron/shuttle/exploration/blanktile, +/area/shuttle/mining/large) +"UF" = ( +/turf/closed/wall/mineral/titanium/shuttle_wall/mining_large{ + icon_state = "0,8" + }, +/area/shuttle/mining/large) +"US" = ( +/obj/structure/table/reinforced, +/obj/item/folder/yellow, +/obj/item/pen, +/turf/open/floor/iron/shuttle/exploration/side{ + dir = 4 + }, +/area/shuttle/mining/large) +"Wv" = ( +/turf/closed/wall/mineral/titanium/shuttle_wall/mining_large{ + icon_state = "0,2" + }, +/area/shuttle/mining/large) +"WR" = ( +/turf/closed/wall/mineral/titanium/shuttle_wall/mining_large{ + icon_state = "5,9" + }, +/area/shuttle/mining/large) +"YH" = ( +/obj/effect/turf_decal/shuttle/exploration/hazardstripe, +/turf/open/floor/iron/shuttle/exploration/doubleinvertcorner{ + dir = 1 + }, +/area/shuttle/mining/large) +"YL" = ( +/turf/open/floor/iron/shuttle/exploration/corner{ + dir = 4 + }, +/area/shuttle/mining/large) +"ZS" = ( +/turf/closed/wall/mineral/titanium/shuttle_wall/window/mining_large{ + icon_state = "5,0" + }, +/area/shuttle/mining/large) + +(1,1,1) = {" +sG +UF +Rb +nE +LL +KF +ET +Wv +Rj +IY +"} +(2,1,1) = {" +rw +NL +US +YL +Gv +Nr +Iv +TL +mX +pe +"} +(3,1,1) = {" +Aq +IG +Ur +Of +xn +qb +Of +eI +dN +Dt +"} +(4,1,1) = {" +Pw +hn +Ur +YH +zQ +Qw +iN +dl +gl +ts +"} +(5,1,1) = {" +Aq +kU +Ur +pa +nQ +qb +zb +Oa +jP +sM +"} +(6,1,1) = {" +WR +xr +ER +ne +Ir +Gl +sQ +LO +yQ +ZS +"} +(7,1,1) = {" +KR +QT +Jw +IX +ID +iL +pA +Rx +rM +Cq +"} diff --git a/_maps/shuttles/nova/whiteship_ouroboros.dmm b/_maps/shuttles/nova/whiteship_ouroboros.dmm new file mode 100644 index 00000000000000..6a04f0f1c3951d --- /dev/null +++ b/_maps/shuttles/nova/whiteship_ouroboros.dmm @@ -0,0 +1,964 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"bl" = ( +/obj/machinery/suit_storage_unit/spaceruin, +/obj/effect/turf_decal/bot_white, +/obj/machinery/light/warm/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/abandoned) +"bp" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/vending/dinnerware, +/obj/machinery/light/warm/directional/west, +/turf/open/floor/iron/large, +/area/shuttle/abandoned) +"bv" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Kitchen Access" + }, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/cutaiwire, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/abandoned) +"by" = ( +/obj/structure/table/wood, +/turf/open/floor/wood/tile, +/area/shuttle/abandoned) +"cx" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plating, +/area/shuttle/abandoned) +"cz" = ( +/obj/machinery/computer/order_console/cook{ + dir = 8 + }, +/obj/effect/turf_decal/box/white, +/turf/open/floor/iron/dark/small, +/area/shuttle/abandoned/bridge) +"di" = ( +/obj/machinery/atmospherics/components/tank/air{ + dir = 4 + }, +/turf/open/floor/plating, +/area/shuttle/abandoned/engine) +"dN" = ( +/obj/item/storage/box/coffeepack/robusta{ + pixel_x = 6 + }, +/obj/item/storage/box/coffeepack/robusta{ + pixel_x = -6 + }, +/obj/item/storage/box/coffeepack/robusta{ + pixel_y = 3 + }, +/obj/item/storage/box/coffeepack{ + pixel_y = -3; + pixel_x = 6 + }, +/obj/item/storage/box/coffeepack{ + pixel_y = -3; + pixel_x = -6 + }, +/obj/item/storage/box/coffeepack{ + pixel_y = -6 + }, +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate, +/turf/open/floor/plating, +/area/shuttle/abandoned/engine) +"dY" = ( +/obj/effect/spawner/structure/window/reinforced/shuttle, +/obj/machinery/door/poddoor{ + id = "whiteship_windows"; + name = "Exterior Window Blast Door" + }, +/turf/open/floor/plating, +/area/shuttle/abandoned/bridge) +"ea" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/caution{ + dir = 1 + }, +/turf/open/floor/iron/large, +/area/shuttle/abandoned) +"eR" = ( +/obj/machinery/button/door{ + id = "whiteship_windows"; + name = "Blast Door Control"; + pixel_x = -24 + }, +/obj/machinery/computer/camera_advanced/shuttle_docker/whiteship, +/obj/effect/turf_decal/box/white, +/turf/open/floor/iron/dark/small, +/area/shuttle/abandoned/bridge) +"eW" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/blood/innards, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 10 + }, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 8 + }, +/obj/effect/mob_spawn/corpse/human/assistant{ + name = "Jim Nortons Employee" + }, +/turf/open/floor/wood/tile, +/area/shuttle/abandoned) +"fd" = ( +/obj/machinery/microwave, +/obj/structure/table/reinforced/titaniumglass, +/turf/open/floor/iron/large, +/area/shuttle/abandoned) +"fq" = ( +/turf/open/floor/iron/large, +/area/shuttle/abandoned) +"fr" = ( +/obj/structure/chair/wood{ + dir = 1 + }, +/turf/open/floor/wood/tile, +/area/shuttle/abandoned) +"ft" = ( +/turf/closed/wall/mineral/plastitanium/nodiagonal, +/area/shuttle/abandoned/engine) +"gf" = ( +/obj/structure/table/reinforced/titaniumglass, +/turf/open/floor/iron/large, +/area/shuttle/abandoned) +"gD" = ( +/obj/structure/chair/wood, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/turf/open/floor/wood/tile, +/area/shuttle/abandoned) +"hH" = ( +/turf/open/floor/wood/tile, +/area/shuttle/abandoned) +"ix" = ( +/turf/template_noop, +/area/template_noop) +"iH" = ( +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/obj/item/clothing/head/soft/green{ + color = "#00a62e"; + desc = "It's a baseball hat in a tasteful green colour."; + name = "Jim Norton's Quebecois Coffee cap" + }, +/obj/effect/mob_spawn/corpse/human/assistant{ + name = "Jim Nortons Employee" + }, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/abandoned) +"iW" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/spawner/random/trash/mess, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 9 + }, +/obj/effect/decal/cleanable/blood/gibs, +/obj/effect/mob_spawn/corpse/human/cook{ + mob_name = "Jimothiar Norton" + }, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/plating, +/area/shuttle/abandoned/engine) +"iX" = ( +/obj/machinery/power/shuttle_engine/heater{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/north, +/turf/open/floor/plating/airless, +/area/shuttle/abandoned/engine) +"iY" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/wood/tile, +/area/shuttle/abandoned) +"kN" = ( +/obj/item/coffee_cartridge/decaf{ + pixel_x = -5; + pixel_y = 10 + }, +/obj/item/coffee_cartridge/bootleg{ + pixel_x = -5; + pixel_y = 15 + }, +/obj/item/coffee_cartridge/fancy{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/coffee_cartridge{ + pixel_y = 9; + pixel_x = 6 + }, +/obj/item/storage/fancy/coffee_condi_display{ + pixel_y = -4 + }, +/obj/structure/table/reinforced/titaniumglass, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/abandoned) +"lq" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/wood/tile, +/area/shuttle/abandoned) +"ls" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/blood/tracks, +/obj/item/plate/small{ + pixel_y = 1 + }, +/obj/item/clothing/head/soft/green{ + color = "#00a62e"; + desc = "It's a baseball hat in a tasteful green colour."; + name = "Jim Norton's Quebecois Coffee cap"; + pixel_x = 16 + }, +/turf/open/floor/wood/tile, +/area/shuttle/abandoned) +"lX" = ( +/obj/effect/decal/cleanable/blood/gibs, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/machinery/button/door/directional/south, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 10 + }, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/abandoned) +"mk" = ( +/obj/machinery/digital_clock, +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/abandoned) +"ml" = ( +/turf/closed/wall/mineral/titanium, +/area/shuttle/abandoned) +"mT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/machinery/light/warm/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/abandoned) +"nk" = ( +/obj/item/chair/wood{ + pixel_y = -6; + dir = 1 + }, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 6 + }, +/turf/open/floor/wood/tile, +/area/shuttle/abandoned) +"nt" = ( +/obj/machinery/griddle, +/turf/open/floor/iron/large, +/area/shuttle/abandoned) +"oC" = ( +/obj/effect/spawner/structure/window/reinforced/shuttle, +/obj/machinery/door/poddoor{ + id = "whiteship_windows"; + name = "Exterior Window Blast Door" + }, +/turf/open/floor/plating, +/area/shuttle/abandoned) +"oP" = ( +/obj/effect/decal/cleanable/blood/footprints{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/wood/tile, +/area/shuttle/abandoned) +"pD" = ( +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/abandoned) +"rp" = ( +/obj/machinery/smartfridge/food, +/turf/open/floor/iron/large, +/area/shuttle/abandoned) +"rU" = ( +/turf/closed/wall/mineral/titanium, +/area/shuttle/abandoned/bridge) +"sM" = ( +/obj/machinery/power/shuttle_engine/heater{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/floor/plating/airless, +/area/shuttle/abandoned/engine) +"tL" = ( +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/abandoned/bridge) +"tY" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/shuttle/abandoned/bridge) +"vc" = ( +/obj/machinery/oven, +/turf/open/floor/iron/large, +/area/shuttle/abandoned) +"vO" = ( +/obj/effect/spawner/structure/window/reinforced/shuttle, +/obj/machinery/door/poddoor{ + id = "whiteship_windows"; + name = "Interior Window Blast Door" + }, +/turf/open/floor/plating, +/area/shuttle/abandoned) +"vQ" = ( +/obj/item/plate{ + pixel_y = 2 + }, +/obj/item/food/poutine{ + pixel_y = 3 + }, +/obj/item/food/poutine{ + pixel_y = 6; + pixel_x = 4 + }, +/obj/item/food/poutine{ + pixel_y = 6; + pixel_x = -4 + }, +/obj/item/food/poutine{ + pixel_y = 7 + }, +/obj/structure/table/reinforced/titaniumglass, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/abandoned) +"we" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/abandoned) +"wt" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/turf_decal/bot_white, +/obj/machinery/suit_storage_unit/open, +/obj/machinery/light/warm/directional/east, +/turf/open/floor/iron/dark/small, +/area/shuttle/abandoned/bridge) +"ye" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/turf/open/floor/carpet/green, +/area/shuttle/abandoned/bridge) +"yi" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/wood/tile, +/area/shuttle/abandoned) +"yM" = ( +/obj/machinery/power/shuttle_engine/heater{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/plating/airless, +/area/shuttle/abandoned/engine) +"Bq" = ( +/obj/machinery/holopad/secure, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/abandoned) +"Cc" = ( +/obj/structure/table/reinforced/titaniumglass, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/abandoned) +"Ci" = ( +/obj/machinery/door/poddoor{ + id = "whiteship_windows"; + name = "Interior Window Blast Door" + }, +/obj/effect/spawner/structure/window/reinforced/plasma/plastitanium, +/turf/open/floor/plating, +/area/shuttle/abandoned/engine) +"Cy" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/structure/sink/kitchen/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/abandoned) +"Dm" = ( +/obj/item/chair/wood{ + pixel_y = -6 + }, +/turf/open/floor/wood/tile, +/area/shuttle/abandoned) +"Dq" = ( +/obj/structure/sign/poster/official/jim_nortons, +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/abandoned) +"DB" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/abandoned) +"DC" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Cockpit" + }, +/obj/effect/mapping_helpers/airlock/cutaiwire, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/machinery/door/poddoor{ + id = "whiteship_windows"; + name = "Interior Window Blast Door" + }, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/abandoned/bridge) +"DM" = ( +/obj/machinery/coffeemaker/impressa{ + pixel_y = 4 + }, +/obj/structure/table/reinforced/titaniumglass, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/abandoned) +"Ev" = ( +/obj/effect/decal/cleanable/blood/tracks, +/obj/effect/decal/cleanable/blood/drip, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/abandoned) +"Fe" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/hitsplatter{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cutaiwire, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/machinery/door/airlock/hatch{ + name = "Maintenance Hatch" + }, +/turf/open/floor/plating, +/area/shuttle/abandoned/engine) +"FQ" = ( +/obj/item/reagent_containers/condiment/sugar{ + pixel_y = 4; + pixel_x = -6 + }, +/obj/item/reagent_containers/condiment/sugar{ + pixel_x = -6 + }, +/obj/item/reagent_containers/condiment/flour{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/reagent_containers/condiment/flour{ + pixel_x = 6 + }, +/obj/item/reagent_containers/condiment/flour{ + pixel_x = 6; + pixel_y = -3 + }, +/obj/item/reagent_containers/condiment/flour{ + pixel_x = 6; + pixel_y = -6 + }, +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plating, +/area/shuttle/abandoned/engine) +"FZ" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/cutaiwire, +/obj/docking_port/mobile{ + callTime = 250; + can_move_docking_ports = 1; + shuttle_id = "whiteship"; + launch_status = 0; + movement_force = list("KNOCKDOWN"=0,"THROW"=0); + name = "Jim Nortons White Ship" + }, +/obj/machinery/door/airlock/external/ruin{ + name = "Jim Nortons Delivery Ship" + }, +/turf/open/floor/plating, +/area/shuttle/abandoned) +"Ge" = ( +/obj/machinery/oven, +/obj/machinery/light/warm/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/abandoned) +"Gr" = ( +/obj/machinery/atmospherics/components/tank/air, +/obj/machinery/button/door{ + id = "whiteship_windows"; + name = "Blast Door Control"; + pixel_x = 24 + }, +/obj/machinery/light/cold/dim/directional/north, +/turf/open/floor/plating, +/area/shuttle/abandoned/engine) +"GX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/machinery/holopad/secure, +/turf/open/floor/carpet/green, +/area/shuttle/abandoned/bridge) +"Hk" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/drip, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/iron/large, +/area/shuttle/abandoned) +"HD" = ( +/obj/item/plate/small{ + pixel_y = 5; + pixel_x = -7 + }, +/obj/item/plate/small{ + pixel_y = -1 + }, +/obj/item/plate/small{ + pixel_y = 1 + }, +/obj/item/plate/small{ + pixel_y = 3 + }, +/obj/structure/table/reinforced/titaniumglass, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/abandoned) +"IE" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/mapping_helpers/airlock/cutaiwire, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden{ + dir = 1 + }, +/obj/machinery/door/airlock/external/ruin{ + name = "Jim Nortons Delivery Ship" + }, +/turf/open/floor/plating, +/area/shuttle/abandoned) +"IK" = ( +/obj/machinery/power/smes/engineering{ + charge = 1e+006 + }, +/obj/structure/cable, +/obj/machinery/light/cold/dim/directional/south, +/turf/open/floor/plating, +/area/shuttle/abandoned/engine) +"IO" = ( +/obj/effect/decal/cleanable/blood/tracks, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/iron/large, +/area/shuttle/abandoned) +"Jj" = ( +/obj/machinery/power/shuttle_engine/propulsion/right{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/shuttle/abandoned/engine) +"JS" = ( +/obj/effect/spawner/structure/window/reinforced/shuttle, +/obj/machinery/door/poddoor{ + id = "whiteship_windows"; + name = "Interior Window Blast Door" + }, +/turf/open/floor/plating, +/area/shuttle/abandoned/bridge) +"Kt" = ( +/obj/effect/decal/cleanable/blood/footprints, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/wood/tile, +/area/shuttle/abandoned) +"Lm" = ( +/obj/effect/spawner/structure/window/reinforced/shuttle, +/obj/machinery/door/poddoor{ + id = "whiteship_windows"; + name = "Exterior Window Blast Door" + }, +/obj/effect/decal/cleanable/blood/splatter/over_window, +/turf/open/floor/plating, +/area/shuttle/abandoned) +"Mk" = ( +/obj/structure/tank_dispenser, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/large, +/area/shuttle/abandoned) +"MH" = ( +/obj/machinery/griddle, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/abandoned) +"Na" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/iron/large, +/area/shuttle/abandoned) +"NM" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/shuttle/abandoned/engine) +"Ou" = ( +/obj/item/reagent_containers/cup/glass/bottle/juice/cream{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/reagent_containers/cup/glass/bottle/juice/cream{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/reagent_containers/cup/glass/bottle/juice/cream{ + pixel_y = 3 + }, +/obj/item/reagent_containers/condiment/milk{ + pixel_x = 6 + }, +/obj/item/reagent_containers/condiment/milk{ + pixel_x = -6 + }, +/obj/item/reagent_containers/condiment/milk{ + pixel_y = -3 + }, +/obj/item/reagent_containers/condiment/soymilk{ + pixel_y = -6; + pixel_x = 6 + }, +/obj/item/reagent_containers/condiment/soymilk{ + pixel_y = -6; + pixel_x = -6 + }, +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate/freezer{ + name = "milk freezer" + }, +/turf/open/floor/plating, +/area/shuttle/abandoned/engine) +"PB" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/iron/large, +/area/shuttle/abandoned) +"PV" = ( +/obj/effect/mapping_helpers/airlock/cutaiwire, +/obj/machinery/door/airlock/hatch{ + name = "Maintenance Hatch" + }, +/turf/open/floor/plating, +/area/shuttle/abandoned/engine) +"QS" = ( +/obj/effect/decal/cleanable/blood/tracks, +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/item/clothing/head/soft/green{ + color = "#00a62e"; + desc = "It's a baseball hat in a tasteful green colour."; + name = "Jim Norton's Quebecois Coffee cap"; + pixel_x = 16 + }, +/obj/effect/mob_spawn/corpse/human/assistant{ + name = "Jim Nortons Employee" + }, +/turf/open/floor/wood/tile, +/area/shuttle/abandoned) +"SC" = ( +/obj/machinery/computer/shuttle/white_ship/bridge, +/obj/effect/turf_decal/box/white, +/turf/open/floor/iron/dark/small, +/area/shuttle/abandoned/bridge) +"SG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 5 + }, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 6 + }, +/turf/open/floor/iron/large, +/area/shuttle/abandoned) +"SH" = ( +/obj/structure/table/wood, +/obj/item/plate/small{ + pixel_y = 1 + }, +/turf/open/floor/wood/tile, +/area/shuttle/abandoned) +"Ty" = ( +/obj/machinery/power/shuttle_engine/propulsion/left{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/shuttle/abandoned/engine) +"TG" = ( +/obj/machinery/power/port_gen/pacman, +/obj/item/stack/sheet/mineral/plasma/five, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/shuttle/abandoned/engine) +"TW" = ( +/obj/item/reagent_containers/cup/glass/mug{ + pixel_y = 12 + }, +/obj/item/reagent_containers/cup/glass/mug{ + pixel_y = 7; + pixel_x = -6 + }, +/obj/item/reagent_containers/cup/glass/mug{ + pixel_y = 7; + pixel_x = 4 + }, +/obj/structure/table/reinforced/titaniumglass, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/abandoned) +"UO" = ( +/mob/living/simple_animal/bot/mulebot, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/shuttle/abandoned/engine) +"WB" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/iron/large, +/area/shuttle/abandoned) +"ZF" = ( +/obj/structure/table, +/turf/open/floor/iron/dark/small, +/area/shuttle/abandoned/bridge) + +(1,1,1) = {" +ix +Ty +Jj +ix +ix +Ty +Jj +ix +"} +(2,1,1) = {" +ft +sM +sM +Ty +Jj +sM +sM +ft +"} +(3,1,1) = {" +ft +di +UO +iX +yM +Ou +TG +ft +"} +(4,1,1) = {" +ft +Gr +iW +FQ +dN +NM +IK +ft +"} +(5,1,1) = {" +ft +ft +Fe +Ci +Ci +PV +ft +ft +"} +(6,1,1) = {" +ml +pD +Cy +gf +MH +WB +pD +ml +"} +(7,1,1) = {" +Dq +Ge +PB +vQ +nt +iH +bp +Dq +"} +(8,1,1) = {" +pD +vc +DB +IO +Ev +SG +lX +pD +"} +(9,1,1) = {" +oC +DM +Na +Bq +fd +HD +Hk +Lm +"} +(10,1,1) = {" +oC +kN +TW +gf +Cc +rp +bv +oC +"} +(11,1,1) = {" +oC +SH +QS +iY +Kt +nk +yi +oC +"} +(12,1,1) = {" +pD +by +fr +Dm +lq +eW +ls +pD +"} +(13,1,1) = {" +Dq +by +fr +hH +oP +gD +by +Dq +"} +(14,1,1) = {" +ml +mk +bl +fq +mT +pD +vO +pD +"} +(15,1,1) = {" +ix +pD +Mk +we +ea +IE +cx +FZ +"} +(16,1,1) = {" +ix +tL +tL +JS +DC +tL +tL +tL +"} +(17,1,1) = {" +ix +dY +eR +ye +GX +tY +tL +rU +"} +(18,1,1) = {" +ix +dY +SC +ZF +wt +cz +tL +ix +"} +(19,1,1) = {" +ix +tL +dY +dY +tL +tL +rU +ix +"} diff --git a/_maps/voidraptor.json b/_maps/voidraptor.json new file mode 100644 index 00000000000000..df22350c3a73f8 --- /dev/null +++ b/_maps/voidraptor.json @@ -0,0 +1,22 @@ +{ + "version": 1, + "map_name": "Void Raptor", + "map_path": "map_files/Voidraptor", + "map_file": "VoidRaptor.dmm", + "shuttles": { + "emergency": "emergency_nova", + "ferry": "ferry_fancy", + "mining": "mining_nova_large", + "cargo": "cargo_nova_delta", + "whiteship": "whiteship_delta" + }, + "orbit_shift_replacement": "Attention crew, it appears that someone has shifted your ship into more dangerous territory.", + "job_changes": { + "Cook": { + "additional_cqc_areas": ["/area/station/service/cafeteria"] + }, + "Captain": { + "special_charter": "ship" + } + } +} diff --git a/_maps/~monkestation/unique/eclipse.dmm b/_maps/~monkestation/unique/eclipse.dmm new file mode 100644 index 00000000000000..a5dd0a4d8db90a --- /dev/null +++ b/_maps/~monkestation/unique/eclipse.dmm @@ -0,0 +1,32922 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/open/genturf, +/area/forestplanet/outdoors/unexplored/deep) +"b" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/misc/asteroid/forest, +/area/forestplanet/outdoors) +"c" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 9 + }, +/turf/open/openspace/forest, +/area/forestplanet/outdoors) +"d" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 6 + }, +/obj/effect/turf_decal/weather/dirt{ + dir = 5 + }, +/turf/open/openspace/forest, +/area/forestplanet/outdoors) +"f" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 6 + }, +/turf/open/misc/asteroid/forest, +/area/forestplanet/outdoors) +"g" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 6 + }, +/turf/open/openspace/forest, +/area/forestplanet/outdoors) +"j" = ( +/obj/effect/turf_decal/weather/dirt, +/turf/open/misc/asteroid/forest, +/area/forestplanet/outdoors) +"o" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 10 + }, +/turf/open/openspace/forest, +/area/forestplanet/outdoors) +"p" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 5 + }, +/turf/open/misc/asteroid/forest, +/area/forestplanet/outdoors) +"r" = ( +/turf/closed/indestructible/event/rock, +/area/forestplanet/outdoors) +"t" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 10 + }, +/turf/open/misc/asteroid/forest, +/area/forestplanet/outdoors) +"x" = ( +/obj/effect/turf_decal/weather/dirt, +/turf/open/openspace/forest, +/area/forestplanet/outdoors) +"z" = ( +/obj/effect/mob_spawn/ghost_role/human/hermit, +/turf/open/misc/asteroid/forest, +/area/forestplanet/outdoors) +"A" = ( +/turf/open/misc/dirt/forest, +/area/forestplanet/outdoors) +"C" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 8 + }, +/turf/open/misc/asteroid/forest, +/area/forestplanet/outdoors) +"D" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 8 + }, +/turf/open/openspace/forest, +/area/forestplanet/outdoors) +"E" = ( +/obj/structure/closet/crate/colony_starter, +/turf/open/misc/asteroid/forest, +/area/forestplanet/outdoors) +"G" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 4 + }, +/turf/open/misc/asteroid/forest, +/area/forestplanet/outdoors) +"H" = ( +/obj/structure/flora/tree/jungle/style_random, +/turf/open/misc/dirt/forest, +/area/forestplanet/outdoors) +"I" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 5 + }, +/turf/open/openspace/forest, +/area/forestplanet/outdoors) +"J" = ( +/turf/open/misc/asteroid/forest, +/area/forestplanet/outdoors) +"L" = ( +/obj/structure/flora/tree/jungle/style_random, +/turf/open/misc/asteroid/forest, +/area/forestplanet/outdoors) +"M" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 4 + }, +/turf/open/openspace/forest, +/area/forestplanet/outdoors) +"P" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 1 + }, +/turf/open/misc/asteroid/forest, +/area/forestplanet/outdoors) +"R" = ( +/turf/open/openspace/forest, +/area/forestplanet/outdoors) +"S" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 10 + }, +/obj/structure/flora/tree/jungle/style_random, +/turf/open/misc/asteroid/forest, +/area/forestplanet/outdoors) +"T" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 4 + }, +/obj/structure/flora/tree/jungle/style_random, +/turf/open/misc/asteroid/forest, +/area/forestplanet/outdoors) +"U" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 1 + }, +/turf/open/openspace/forest, +/area/forestplanet/outdoors) +"W" = ( +/turf/open/genturf/blue, +/area/forestplanet/outdoors/unexplored) +"Y" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 9 + }, +/turf/open/misc/asteroid/forest, +/area/forestplanet/outdoors) + +(1,1,1) = {" +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +"} +(2,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(3,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(4,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(5,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(6,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(7,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(8,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(9,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(10,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(11,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(12,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(13,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(14,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(15,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(16,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(17,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(18,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(19,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(20,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(21,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(22,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(23,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(24,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(25,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(26,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(27,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(28,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(29,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(30,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(31,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(32,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(33,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(34,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(35,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(36,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(37,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(38,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(39,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(40,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(41,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(42,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(43,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(44,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(45,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(46,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(47,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(48,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(49,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(50,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(51,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(52,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(53,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(54,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(55,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(56,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(57,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(58,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(59,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(60,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(61,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(62,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(63,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(64,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(65,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(66,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(67,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(68,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(69,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(70,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(71,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(72,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(73,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(74,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(75,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(76,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(77,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(78,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(79,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(80,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(81,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(82,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(83,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(84,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(85,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(86,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(87,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(88,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(89,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(90,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(91,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(92,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(93,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(94,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(95,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(96,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(97,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(98,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(99,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(100,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(101,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(102,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(103,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(104,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(105,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(106,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(107,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(108,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(109,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(110,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(111,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(112,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(113,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(114,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(115,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(116,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(117,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(118,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(119,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(120,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(121,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(122,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(123,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(124,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(125,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(126,1,1) = {" +r +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +"} +(127,1,1) = {" +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +"} + +(1,1,2) = {" +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +"} +(2,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(3,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(4,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(5,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(6,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(7,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(8,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(9,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(10,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(11,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(12,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(13,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(14,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(15,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(16,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(17,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(18,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(19,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(20,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(21,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(22,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(23,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(24,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(25,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(26,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(27,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(28,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(29,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(30,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(31,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(32,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(33,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(34,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(35,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(36,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(37,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(38,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(39,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(40,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(41,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(42,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(43,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(44,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +J +G +G +G +T +G +G +G +J +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(45,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +J +J +J +j +A +A +A +A +A +A +A +p +G +J +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(46,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +z +J +J +J +f +H +c +D +D +D +o +A +A +A +p +L +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(47,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +z +J +J +J +j +A +A +U +R +R +R +R +D +o +A +A +P +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(48,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +J +E +b +J +j +A +c +R +R +R +R +R +R +R +o +A +P +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(49,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +z +J +J +J +f +A +U +R +R +R +R +R +R +R +x +A +P +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(50,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +z +J +j +A +A +U +R +R +R +R +R +R +R +g +A +P +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(51,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +j +H +c +R +R +R +R +R +R +R +x +A +A +P +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(52,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +j +A +U +R +R +R +R +R +R +R +x +H +Y +J +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(53,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +j +A +I +R +R +R +R +R +R +R +x +A +P +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(54,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +j +A +A +U +R +R +R +R +R +R +x +A +P +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(55,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +J +t +A +I +R +R +R +R +R +R +g +A +P +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(56,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +j +A +A +I +M +R +R +R +x +A +A +P +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(57,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +J +t +A +A +A +I +M +R +g +A +Y +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(58,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +J +S +A +A +A +A +d +A +A +P +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(59,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +J +C +C +t +A +H +A +A +P +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(60,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +J +C +C +C +C +J +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(61,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(62,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(63,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(64,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(65,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(66,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(67,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(68,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(69,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(70,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(71,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(72,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(73,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(74,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(75,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(76,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(77,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(78,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(79,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(80,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(81,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(82,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(83,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(84,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(85,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(86,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(87,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(88,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(89,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(90,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(91,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(92,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(93,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(94,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(95,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(96,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(97,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(98,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(99,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(100,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(101,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(102,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(103,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(104,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(105,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(106,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(107,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(108,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(109,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(110,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(111,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(112,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(113,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(114,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(115,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(116,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(117,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(118,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(119,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(120,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(121,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(122,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(123,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(124,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(125,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(126,1,2) = {" +r +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +W +r +"} +(127,1,2) = {" +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +"} diff --git a/code/__DEFINES/dcs/signals/signals_mob/signals_mob_spawner.dm b/code/__DEFINES/dcs/signals/signals_mob/signals_mob_spawner.dm index 6ff8b1e8d61d40..2f4c07fd5038fb 100644 --- a/code/__DEFINES/dcs/signals/signals_mob/signals_mob_spawner.dm +++ b/code/__DEFINES/dcs/signals/signals_mob/signals_mob_spawner.dm @@ -2,5 +2,11 @@ /// called when a spawner spawns a mob #define COMSIG_SPAWNER_SPAWNED "spawner_spawned" +/// Called when a spawner spawns a mob in a turf peel, but we need to use the default case. +#define COMSIG_SPAWNER_SPAWNED_DEFAULT "spawner_spawned_default" + /// called when a ghost clicks a spawner role: (mob/living) #define COMSIG_GHOSTROLE_SPAWNED "ghostrole_spawned" + +#define COMSIG_SPAWNER_STOP_SPAWNING "stop_spawner_spawn" +#define COMSIG_SPAWNER_START_SPAWNING "start_spawner_spawn" diff --git a/code/__DEFINES/extraction.dm b/code/__DEFINES/extraction.dm new file mode 100644 index 00000000000000..16060ff2687c3a --- /dev/null +++ b/code/__DEFINES/extraction.dm @@ -0,0 +1,11 @@ +#define DOAFTER_SOURCE_PIPE_CONSTRUCTION "doafter_pipe_construction" + +//defines for liquid plasma pipes +#define PIPE_STATE_UNBUILT 0 +#define PIPE_STATE_DAMAGED 1 +#define PIPE_STATE_FINE 2 + +#define PIPE_STATUS_OFF 0 +#define PIPE_STATUS_ON 1 + +#define MAX_PIPE_DISTANCE 10 diff --git a/code/__DEFINES/flags.dm b/code/__DEFINES/flags.dm index 5c941e3689ab83..c9b4aa597b57d6 100644 --- a/code/__DEFINES/flags.dm +++ b/code/__DEFINES/flags.dm @@ -113,6 +113,9 @@ GLOBAL_LIST_INIT(bitflags, list(1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 204 #define NO_CLEARING (1<<7) #define TURF_WEATHER (1<<8) //monkestation edit +/// This atom is a pseudo-floor that blocks map generation's checkPlaceAtom() from placing things like trees ontop of it. +#define TURF_BLOCKS_POPULATE_TERRAIN_FLORAFEATURES (1<<9) + ////////////////Area flags\\\\\\\\\\\\\\ /// If it's a valid territory for cult summoning or the CRAB-17 phone to spawn #define VALID_TERRITORY (1<<0) diff --git a/code/__DEFINES/icon_smoothing.dm b/code/__DEFINES/icon_smoothing.dm index c96f2b1ac4f60b..3a6fb062bb730d 100644 --- a/code/__DEFINES/icon_smoothing.dm +++ b/code/__DEFINES/icon_smoothing.dm @@ -114,7 +114,9 @@ DEFINE_BITFIELD(smoothing_flags, list( #define SMOOTH_GROUP_LOWERED_PLASTEEL S_TURF(61) #define SMOOTH_GROUP_FISSURE S_TURF(62) -#define MAX_S_TURF 62 //Always match this value with the one above it. +#define SMOOTH_GROUP_MUSHROOM S_TURF(63) + +#define MAX_S_TURF 63 //Always match this value with the one above it. #define S_OBJ(num) ("-" + #num + ",") /* /obj included */ diff --git a/code/__DEFINES/layers.dm b/code/__DEFINES/layers.dm index 89016109408653..879c26626aad7d 100644 --- a/code/__DEFINES/layers.dm +++ b/code/__DEFINES/layers.dm @@ -19,23 +19,29 @@ //Not ever visible, place beneath everything #define WEATHER_OVERLAY_PLANE -70 #define WEATHER_RENDER_TARGET "*WEATHER_OVERLAY_PLANE" + +#define WEATHER_OVERLAY_PLANE_ECLIPSE -71 +#define WEATHER_ECLIPSE_RENDER_TARGET "*WEATHER_OVERLAY_PLANE_ECLIPSE" + //monkestation end -#define GRAVITY_PULSE_PLANE -14 +#define GRAVITY_PULSE_PLANE -16 #define GRAVITY_PULSE_RENDER_TARGET "*GRAVPULSE_RENDER_TARGET" -#define RENDER_PLANE_TRANSPARENT -13 //Transparent plane that shows openspace underneath the floor +#define RENDER_PLANE_TRANSPARENT -15 //Transparent plane that shows openspace underneath the floor -#define TRANSPARENT_FLOOR_PLANE -12 +#define TRANSPARENT_FLOOR_PLANE -14 -#define FLOOR_PLANE -11 +#define FLOOR_PLANE -13 -#define WALL_PLANE -10 -#define GAME_PLANE -9 -#define GAME_PLANE_FOV_HIDDEN -8 -#define GAME_PLANE_UPPER -7 -#define WALL_PLANE_UPPER -6 -#define GAME_PLANE_UPPER_FOV_HIDDEN -5 +#define WALL_PLANE -12 +#define GAME_PLANE -11 +#define GAME_PLANE_FOV_HIDDEN -10 +#define GAME_PLANE_UPPER -9 +#define WALL_PLANE_UPPER -8 +#define GAME_PLANE_UPPER_FOV_HIDDEN -7 +#define WEATHER_EFFECT_PLANE_ECLIPSE -6 +#define WEATHER_EFFECT_PLANE_MISC -5 #define WEATHER_EFFECT_PLANE -4 // monkestation edit ///Slightly above the game plane but does not catch mouse clicks. Useful for certain visuals that should be clicked through, like seethrough trees diff --git a/code/__DEFINES/maps.dm b/code/__DEFINES/maps.dm index 322eb40fd6d1b6..63434cc49d5f69 100644 --- a/code/__DEFINES/maps.dm +++ b/code/__DEFINES/maps.dm @@ -178,11 +178,13 @@ Always compile, always use that verb, and always make sure that it works for wha #define BIOME_LOW_HEAT "low_heat" #define BIOME_LOWMEDIUM_HEAT "lowmedium_heat" +#define BIOME_MEDIUM_HEAT "medium_heat" #define BIOME_HIGHMEDIUM_HEAT "highmedium_heat" #define BIOME_HIGH_HEAT "high_heat" #define BIOME_LOW_HUMIDITY "low_humidity" #define BIOME_LOWMEDIUM_HUMIDITY "lowmedium_humidity" +#define BIOME_MEDIUM_HUMIDITY "medium_humidity" #define BIOME_HIGHMEDIUM_HUMIDITY "highmedium_humidity" #define BIOME_HIGH_HUMIDITY "high_humidity" @@ -223,6 +225,8 @@ Always compile, always use that verb, and always make sure that it works for wha //monkestation start #define ZTRAIT_OSHAN "OshanTrait" +#define ZTRAIT_ECLIPSE "Eclipse" + ///Z level traits for Lavaland #define ZTRAITS_TRENCH list(\ ZTRAIT_GRAVITY = TRUE, \ @@ -240,3 +244,28 @@ Always compile, always use that verb, and always make sure that it works for wha #define PARTICLEWEATHER_DUST "weather_dust" #define PARTICLEWEATHER_RADS "weather_rads" //monkestation end + +#define ZTRAITS_ECLIPSE list(\ + list(\ + ZTRAIT_LINKAGE = CROSSLINKED, \ + ZTRAIT_UP = TRUE, \ + ZTRAIT_GRAVITY = TRUE, \ + ZTRAIT_MINING = TRUE, \ + ZTRAIT_NOPARALLAX = TRUE, \ + ZTRAIT_DAYCYCLE = TRUE, \ + ZTRAIT_BOMBCAP_MULTIPLIER = 2, \ + ZTRAIT_BASETURF = /turf/open/misc/dirt/forest, \ + ZTRAIT_ECLIPSE = TRUE, \ + ), \ + list(\ + ZTRAIT_LINKAGE = CROSSLINKED, \ + ZTRAIT_DOWN = TRUE, \ + ZTRAIT_GRAVITY = TRUE, \ + ZTRAIT_MINING = TRUE, \ + ZTRAIT_NOPARALLAX = TRUE, \ + ZTRAIT_DAYCYCLE = TRUE, \ + ZTRAIT_BOMBCAP_MULTIPLIER = 2, \ + ZTRAIT_BASETURF = /turf/open/openspace/forest, \ + ZTRAIT_ECLIPSE = TRUE, \ + )\ +) diff --git a/code/__DEFINES/role_preferences.dm b/code/__DEFINES/role_preferences.dm index f1c8bc7a14d343..90a4d75dc87296 100644 --- a/code/__DEFINES/role_preferences.dm +++ b/code/__DEFINES/role_preferences.dm @@ -17,6 +17,8 @@ #define ROLE_TRAITOR "Traitor" #define ROLE_WIZARD "Wizard" #define ROLE_CLOCK_CULTIST "Clock Cultist" //monkestation edit +#define ROLE_OPFOR_CANDIDATE "OPFOR Candidate" +#define ROLE_ASSAULT_OPERATIVE "Assault Operative" // Midround roles #define ROLE_ABDUCTOR "Abductor" @@ -131,6 +133,7 @@ GLOBAL_LIST_INIT(special_roles, list( ROLE_WIZARD = 14, ROLE_CLOCK_CULTIST = 14, ROLE_BLOODSUCKER = 0, + ROLE_ASSAULT_OPERATIVE = 14, // Midround ROLE_ABDUCTOR = 0, diff --git a/code/__DEFINES/rust_g.dm b/code/__DEFINES/rust_g.dm index 24f6d3125a9031..db6114a05fb1fd 100644 --- a/code/__DEFINES/rust_g.dm +++ b/code/__DEFINES/rust_g.dm @@ -104,6 +104,23 @@ #define rustg_cnoise_generate(percentage, smoothing_iterations, birth_limit, death_limit, width, height) \ RUSTG_CALL(RUST_G, "cnoise_generate")(percentage, smoothing_iterations, birth_limit, death_limit, width, height) +/** + * This proc generates a grid of perlin-like noise + * + * Returns a single string that goes row by row, with values of 1 representing an turned on cell, and a value of 0 representing a turned off cell. + * + * Arguments: + * * seed: seed for the function + * * accuracy: how close this is to the original perlin noise, as accuracy approaches infinity, the noise becomes more and more perlin-like + * * stamp_size: Size of a singular stamp used by the algorithm, think of this as the same stuff as frequency in perlin noise + * * world_size: size of the returned grid. + * * lower_range: lower bound of values selected for. (inclusive) + * * upper_range: upper bound of values selected for. (exclusive) + */ +#define rustg_dbp_generate(seed, accuracy, stamp_size, world_size, lower_range, upper_range) \ + RUSTG_CALL(RUST_G, "dbp_generate")(seed, accuracy, stamp_size, world_size, lower_range, upper_range) + + #define rustg_dmi_strip_metadata(fname) RUSTG_CALL(RUST_G, "dmi_strip_metadata")(fname) #define rustg_dmi_create_png(path, width, height, data) RUSTG_CALL(RUST_G, "dmi_create_png")(path, width, height, data) #define rustg_dmi_resize_png(path, width, height, resizetype) RUSTG_CALL(RUST_G, "dmi_resize_png")(path, width, height, resizetype) @@ -156,6 +173,16 @@ #define rustg_noise_get_at_coordinates(seed, x, y) RUSTG_CALL(RUST_G, "noise_get_at_coordinates")(seed, x, y) +/* + * Takes in a string and json_encode()"d lists to produce a sanitized string. + * This function operates on whitelists, there is currently no way to blacklist. + * Args: + * * text: the string to sanitize. + * * attribute_whitelist_json: a json_encode()'d list of HTML attributes to allow in the final string. + * * tag_whitelist_json: a json_encode()'d list of HTML tags to allow in the final string. + */ +#define rustg_sanitize_html(text, attribute_whitelist_json, tag_whitelist_json) RUSTG_CALL(RUST_G, "sanitize_html")(text, attribute_whitelist_json, tag_whitelist_json) + #define rustg_sql_connect_pool(options) RUSTG_CALL(RUST_G, "sql_connect_pool")(options) #define rustg_sql_query_async(handle, query, params) RUSTG_CALL(RUST_G, "sql_query_async")(handle, query, params) #define rustg_sql_query_blocking(handle, query, params) RUSTG_CALL(RUST_G, "sql_query_blocking")(handle, query, params) diff --git a/code/__DEFINES/sound.dm b/code/__DEFINES/sound.dm index 5bcb7917b94eaa..8e9ef199a65449 100644 --- a/code/__DEFINES/sound.dm +++ b/code/__DEFINES/sound.dm @@ -126,6 +126,7 @@ #define ANNOUNCER_SHUTTLEDOCK "announcer_shuttledock" #define ANNOUNCER_SHUTTLERECALLED "announcer_shuttlerecalled" #define ANNOUNCER_SPANOMALIES "announcer_spanomalies" +#define ANNOUNCER_ICARUS "announcer_icarus" /// Global list of all of our announcer keys. GLOBAL_LIST_INIT(announcer_keys, list( @@ -145,6 +146,7 @@ GLOBAL_LIST_INIT(announcer_keys, list( ANNOUNCER_SHUTTLEDOCK, ANNOUNCER_SHUTTLERECALLED, ANNOUNCER_SPANOMALIES, + ANNOUNCER_ICARUS, )) /// List of all of our sound keys. diff --git a/code/__DEFINES/~monkestation/assault.dm b/code/__DEFINES/~monkestation/assault.dm new file mode 100644 index 00000000000000..7d67f562f19802 --- /dev/null +++ b/code/__DEFINES/~monkestation/assault.dm @@ -0,0 +1,19 @@ +/// Full operative win - goldeneye activated and all ops alive +#define ASSAULT_RESULT_WIN 0 +/// Partial operative win - Goldeneye was activated and some ops alive +#define ASSAULT_RESULT_PARTIAL_WIN 1 +/// Stalemate - Goldeneye not activated and ops still alive +#define ASSAULT_RESULT_STALEMATE 2 +/// Hearty win - Goldeneye activated but no ops alive +#define ASSAULT_RESULT_HEARTY_WIN 3 +/// Crew win - Goldeneye not activated and no ops alive +#define ASSAULT_RESULT_LOSS 4 + +// Conditions for ops to be considered alive +#define ASSAULTOPS_ALL_DEAD 0 +#define ASSAULTOPS_PARTLY_DEAD 1 +#define ASSAULTOPS_ALL_ALIVE 2 + +#define GOLDENEYE_REQUIRED_KEYS_MAXIMUM 3 + +#define TRACK_GOLDENEYE 4 diff --git a/code/__DEFINES/~monkestation/atmospherics.dm b/code/__DEFINES/~monkestation/atmospherics.dm new file mode 100644 index 00000000000000..78184de5902d9b --- /dev/null +++ b/code/__DEFINES/~monkestation/atmospherics.dm @@ -0,0 +1,2 @@ +//ATMOS MIX IDS +#define FOREST_DEFAULT_ATMOS "FOREST_ATMOS" diff --git a/code/__DEFINES/~monkestation/blackboard.dm b/code/__DEFINES/~monkestation/blackboard.dm new file mode 100644 index 00000000000000..c95133d79638ca --- /dev/null +++ b/code/__DEFINES/~monkestation/blackboard.dm @@ -0,0 +1,29 @@ + +// Hiding AI blackboard keys + +/// Whether or not the mob is currently hiding. +#define BB_HIDING_HIDDEN "BB_hiding_hidden" +/// The typecache (populated on `Initialize()` with the first argument of +/// `/datum/element/can_hide/basic/New()`) of turfs that our mob can hide onto. +#define BB_HIDING_CAN_HIDE_ON "BB_hiding_can_hide_on" +/// The aggro range the mob has when hiding. +#define BB_HIDING_AGGRO_RANGE "BB_hiding_aggro_range" +/// The aggro range the mob has when NOT hiding (set dynamically). +#define BB_HIDING_AGGRO_RANGE_NOT_HIDING "BB_hiding_aggro_range_not_hiding" +/// The cooldown before the mob can hide again (set dynamically). +#define BB_HIDING_COOLDOWN_BEFORE_HIDING "BB_hiding_cooldown_before_hiding" +/// The cooldown before the mob can stop hiding (set dynamically). +#define BB_HIDING_COOLDOWN_BEFORE_STOP_HIDING "BB_hiding_cooldown_before_stop_hiding" +/// The minimum value for the cooldown before the mob can hide / come out of hiding again. +#define BB_HIDING_COOLDOWN_MINIMUM "BB_hiding_cooldown_minimum" +/// The maximum value for the cooldown before the mob can hide / come out of hiding again. +#define BB_HIDING_COOLDOWN_MAXIMUM "BB_hiding_cooldown_maximum" +/// The probability (in %) that the mob will stop hiding randomly every process. +#define BB_HIDING_RANDOM_STOP_HIDING_CHANCE "BB_hiding_random_stop_hiding_chance" + +/// The default vision range when hiding, if none is specified. +#define DEFAULT_HIDING_AGGRO_RANGE 2 +/// The default chance to get out of hiding for every random hiding subtree process. +#define DEFAULT_RANDOM_STOP_HIDING_CHANCE 2 + +#define BB_TEMPORARY_TARGET "BB_targetting_temporary" diff --git a/code/__DEFINES/~monkestation/colors.dm b/code/__DEFINES/~monkestation/colors.dm index e47cb8ddfddd67..60cd738f7873b5 100644 --- a/code/__DEFINES/~monkestation/colors.dm +++ b/code/__DEFINES/~monkestation/colors.dm @@ -1 +1,13 @@ #define LIGHT_COLOR_CLOCKWORK "#BE8700" + +//Colors for Bioluminescence plant traits. +#define COLOR_BIOLUMINESCENCE_STANDARD "#C3E381" +#define COLOR_BIOLUMINESCENCE_SHADOW "#AAD84B" +#define COLOR_BIOLUMINESCENCE_YELLOW "#FFFF66" +#define COLOR_BIOLUMINESCENCE_GREEN "#99FF99" +#define COLOR_BIOLUMINESCENCE_BLUE "#6699FF" +#define COLOR_BIOLUMINESCENCE_PURPLE "#D966FF" +#define COLOR_BIOLUMINESCENCE_PINK "#FFB3DA" + +#define LIGHT_RANGE_FIRE_BLOSSOM_HARVESTED 2.7 +#define LIGHT_POWER_FIRE_BLOSSOM_HARVESTED 1.5 diff --git a/code/__DEFINES/~monkestation/dcs/signals/signals_atom.dm b/code/__DEFINES/~monkestation/dcs/signals/signals_atom.dm index e73c3218e22c03..06147b9dbd4dae 100644 --- a/code/__DEFINES/~monkestation/dcs/signals/signals_atom.dm +++ b/code/__DEFINES/~monkestation/dcs/signals/signals_atom.dm @@ -1,3 +1,8 @@ +/// The signal sent when an atom/movable should try to toggle their hiding. +/// Gets called on the target, with (hiding, play_feedback = TRUE) as its args. +/// Used for `/datum/element/can_hide` +#define COMSIG_MOVABLE_TOGGLE_HIDING "movable_toggle_hiding" + /// from base of atom/ratvar_act() #define COMSIG_ATOM_RATVAR_ACT "atom_ratvar_act" diff --git a/code/__DEFINES/~monkestation/optfor.dm b/code/__DEFINES/~monkestation/optfor.dm index a77a41ce29c0ce..db0ec80970cf11 100644 --- a/code/__DEFINES/~monkestation/optfor.dm +++ b/code/__DEFINES/~monkestation/optfor.dm @@ -78,6 +78,5 @@ // Category for uncategorized items #define OPFOR_EQUIPMENT_CATEGORY_OTHER "Other" -#define ROLE_OPFOR_CANDIDATE "OPFOR Candidate" #define BAN_OPFOR "OPFOR ban" #define ADMIN_PASS_OPFOR(src) "(PASS)" diff --git a/code/__DEFINES/~monkestation/traits.dm b/code/__DEFINES/~monkestation/traits.dm index 907cb2805e4550..a32ae1ded82728 100644 --- a/code/__DEFINES/~monkestation/traits.dm +++ b/code/__DEFINES/~monkestation/traits.dm @@ -48,3 +48,6 @@ #define TRAIT_COVERED_BY_METEOR_SHIELD "covered_by_meteor_shield" /// Liquids cannot spread over this turf. #define TRAIT_BLOCK_LIQUID_SPREAD "block_liquid_spread" + +///added to structures we want the mobs to be able to target. +#define TRAIT_MOB_DESTROYABLE "mob_destroyable" diff --git a/code/__HELPERS/areas.dm b/code/__HELPERS/areas.dm index 557c64f23f51a9..bb688b4655fb7e 100644 --- a/code/__HELPERS/areas.dm +++ b/code/__HELPERS/areas.dm @@ -174,6 +174,7 @@ GLOBAL_LIST_INIT(typecache_powerfailure_safe_areas, typecacheof(list( if(!isarea(area_choice) && newA.static_lighting) newA.create_area_lighting_objects() + newA.ambient_buzz = null //no //convert map to list var/list/area/area_list = list() for(var/area_name in affected_areas) diff --git a/code/__HELPERS/spatial_info.dm b/code/__HELPERS/spatial_info.dm index f5d0155343cacd..a5de9abfcab465 100644 --- a/code/__HELPERS/spatial_info.dm +++ b/code/__HELPERS/spatial_info.dm @@ -412,3 +412,34 @@ if(our_area == get_area(carbon)) return FALSE return TRUE + +/** + * Behaves like the orange() proc, but only looks in the outer range of the function (The "peel" of the orange). + * This is useful for things like checking if a mob is in a certain range, but not within a smaller range. + * + * @params outer_range - The outer range of the cicle to pull from. + * @params inner_range - The inner range of the circle to NOT pull from. + * @params center - The center of the circle to pull from, can be an atom (we'll apply get_turf() to it within circle_x_turfs procs.) + * @params view_based - If TRUE, we'll use circle_view_turfs instead of circle_range_turfs procs. + */ +/proc/turf_peel(outer_range, inner_range, center, view_based = FALSE) + if(inner_range > outer_range) // If the inner range is larger than the outer range, you're using this wrong. + CRASH("Turf peel inner range is larger than outer range!") + var/list/peel = list() + var/list/outer + var/list/inner + if(view_based) + outer = circle_view_turfs(center, outer_range) + inner = circle_view_turfs(center, inner_range) + else + outer = circle_range_turfs(center, outer_range) + inner = circle_range_turfs(center, inner_range) + for(var/turf/possible_spawn as anything in outer) + if(possible_spawn in inner) + continue + peel += possible_spawn + + if(!length(peel)) + return center //Offer the center only as a default case when we don't have a valid circle. + return peel + diff --git a/code/_globalvars/~monkestation/lists/mobs.dm b/code/_globalvars/~monkestation/lists/mobs.dm index f4c55088f1bf3d..a50b35617a1db9 100644 --- a/code/_globalvars/~monkestation/lists/mobs.dm +++ b/code/_globalvars/~monkestation/lists/mobs.dm @@ -1,2 +1,3 @@ ///List of ckeys that have seen a blurb of a given key. GLOBAL_LIST_EMPTY(blurb_witnesses) +GLOBAL_LIST_EMPTY(assault_operative_start) diff --git a/code/controllers/subsystem/mapping.dm b/code/controllers/subsystem/mapping.dm index 6b806a9921f7e2..0ab3a068233e04 100644 --- a/code/controllers/subsystem/mapping.dm +++ b/code/controllers/subsystem/mapping.dm @@ -161,9 +161,11 @@ SUBSYSTEM_DEF(mapping) #endif // Run map generation after ruin generation to prevent issues - run_map_generation() + run_map_terrain_generation() // Generate our rivers, we do this here so the map doesn't load on top of them setup_rivers() + // now that the terrain is generated, including rivers, we can safely populate it with objects and mobs + run_map_terrain_population() // Add the first transit level var/datum/space_level/base_transit = add_reservation_zlevel() require_area_resort() @@ -552,6 +554,8 @@ Used by the AI doomsday and the self-destruct nuke. LoadGroup(FailedZs, "Trench", "map_files/Mining", "Oshan.dmm", default_traits = ZTRAITS_TRENCH) else if (!isnull(config.minetype) && config.minetype != "none") INIT_ANNOUNCE("WARNING: An unknown minetype '[config.minetype]' was set! This is being ignored! Update the maploader code!") + if(CONFIG_GET(flag/eclipse)) + LoadGroup(FailedZs, "Eclipse", "~monkestation/unique", "eclipse.dmm", traits = ZTRAITS_ECLIPSE) #endif if(LAZYLEN(FailedZs)) //but seriously, unless the server's filesystem is messed up this will never happen @@ -589,9 +593,15 @@ GLOBAL_LIST_EMPTY(the_station_areas) if(!GLOB.the_station_areas.len) log_world("ERROR: Station areas list failed to generate!") -/datum/controller/subsystem/mapping/proc/run_map_generation() +/// Generate the turfs of the area +/datum/controller/subsystem/mapping/proc/run_map_terrain_generation() for(var/area/A as anything in GLOB.areas) - A.RunGeneration() + A.RunTerrainGeneration() + +/// Populate the turfs of the area +/datum/controller/subsystem/mapping/proc/run_map_terrain_population() + for(var/area/A as anything in GLOB.areas) + A.RunTerrainPopulation() /datum/controller/subsystem/mapping/proc/maprotate() if(map_voted || SSmapping.next_map_config) //If voted or set by other means. diff --git a/code/controllers/subsystem/shuttle.dm b/code/controllers/subsystem/shuttle.dm index 5f7dc3f52b89ea..753546b411e9da 100644 --- a/code/controllers/subsystem/shuttle.dm +++ b/code/controllers/subsystem/shuttle.dm @@ -871,6 +871,7 @@ SUBSYSTEM_DEF(shuttle) // truthy value means that it cannot dock for some reason // but we can ignore the someone else docked error because we'll // be moving into their place shortly + if((result != SHUTTLE_CAN_DOCK) && (result != SHUTTLE_SOMEONE_ELSE_DOCKED)) CRASH("Template shuttle [preview_shuttle] cannot dock at [dest_dock] ([result]).") diff --git a/code/controllers/subsystem/ticker.dm b/code/controllers/subsystem/ticker.dm index b86f718a9e5d91..4c19a9231c71b7 100755 --- a/code/controllers/subsystem/ticker.dm +++ b/code/controllers/subsystem/ticker.dm @@ -39,7 +39,7 @@ SUBSYSTEM_DEF(ticker) var/start_at var/gametime_offset = 432000 //Deciseconds to add to world.time for station time. - var/station_time_rate_multiplier = 24 //factor of station time progressal vs real time. + var/station_time_rate_multiplier = 128 //factor of station time progressal vs real time. /// Num of players, used for pregame stats on statpanel var/totalPlayers = 0 diff --git a/code/datums/ai/basic_mobs/basic_ai_behaviors/targeting.dm b/code/datums/ai/basic_mobs/basic_ai_behaviors/targeting.dm index 245bac0eab7be0..8ad59ba2bf15ff 100644 --- a/code/datums/ai/basic_mobs/basic_ai_behaviors/targeting.dm +++ b/code/datums/ai/basic_mobs/basic_ai_behaviors/targeting.dm @@ -76,7 +76,7 @@ GLOBAL_LIST_INIT(target_interested_atoms, typecacheof(list(/mob, /obj/machinery/ /datum/ai_behavior/find_potential_targets/proc/failed_to_find_anyone(datum/ai_controller/controller, target_key, targeting_strategy_key, hiding_location_key) var/aggro_range = controller.blackboard[aggro_range_key] || vision_range // takes the larger between our range() input and our implicit hearers() input (world.view) - aggro_range = max(aggro_range, ROUND_UP(max(getviewsize(world.view)) / 2)) + // aggro_range = max(aggro_range, ROUND_UP(max(getviewsize(world.view)) / 2)) MAPEXPANSION CHANGE: Stillcaps // Alright, here's the interesting bit // We're gonna use this max range to hook into a proximity field so we can just await someone interesting to come along // Rather then trying to check every few seconds diff --git a/code/datums/ai/basic_mobs/targeting_strategies/basic_targeting_strategy.dm b/code/datums/ai/basic_mobs/targeting_strategies/basic_targeting_strategy.dm index 2505b87a717f96..26bc69ae733517 100644 --- a/code/datums/ai/basic_mobs/targeting_strategies/basic_targeting_strategy.dm +++ b/code/datums/ai/basic_mobs/targeting_strategies/basic_targeting_strategy.dm @@ -37,6 +37,11 @@ if(container.resistance_flags & INDESTRUCTIBLE) return FALSE + if(isstructure(the_target)) + if(!HAS_TRAIT(the_target, TRAIT_MOB_DESTROYABLE)) + return FALSE + return TRUE + if(ismob(the_target)) //Target is in godmode, ignore it. if(living_mob.loc == the_target) return FALSE // We've either been eaten or are shapeshifted, let's assume the latter because we're still alive diff --git a/code/datums/announcers/default_announcer.dm b/code/datums/announcers/default_announcer.dm index 830471615cbb57..2c1b84036a8d5f 100644 --- a/code/datums/announcers/default_announcer.dm +++ b/code/datums/announcers/default_announcer.dm @@ -19,4 +19,5 @@ ANNOUNCER_SHUTTLECALLED = 'sound/ai/default/shuttlecalled.ogg', ANNOUNCER_SHUTTLEDOCK = 'sound/ai/default/shuttledock.ogg', ANNOUNCER_SHUTTLERECALLED = 'sound/ai/default/shuttlerecalled.ogg', + ANNOUNCER_ICARUS = 'monkestation/code/modules/assault_ops/sound/icarus_alarm.ogg', ANNOUNCER_SPANOMALIES = 'sound/ai/default/spanomalies.ogg') diff --git a/code/datums/components/lock_on_cursor.dm b/code/datums/components/lock_on_cursor.dm index 4f7a535751c31e..a6caae4953f971 100644 --- a/code/datums/components/lock_on_cursor.dm +++ b/code/datums/components/lock_on_cursor.dm @@ -22,6 +22,8 @@ var/lock_cursor_range /// Weakrefs to current locked targets var/list/locked_weakrefs + /// Callback to call when the mob clicks. + var/datum/callback/on_click_callback /// Callback to call when we have decided on our targets, is passed the list of final targets var/datum/callback/on_lock /// Callback to call in order to validate a potential target @@ -38,6 +40,7 @@ list/immune = list(), icon = 'icons/mob/silicon/cameramob.dmi', icon_state = "marker", + datum/callback/on_click_callback, datum/callback/on_lock, datum/callback/can_target_callback, ) @@ -47,6 +50,7 @@ CRASH("Invalid range or amount argument") src.lock_cursor_range = lock_cursor_range src.target_typecache = target_typecache + src.on_click_callback = on_click_callback src.lock_amount = lock_amount src.on_lock = on_lock src.can_target_callback = can_target_callback ? can_target_callback : CALLBACK(src, PROC_REF(can_target)) @@ -60,11 +64,15 @@ var/mob/owner = parent mouse_tracker = owner.overlay_fullscreen("lock_on", /atom/movable/screen/fullscreen/cursor_catcher/lock_on, 0) mouse_tracker.assign_to_mob(owner) + if(on_click_callback) + RegisterSignal(mouse_tracker, COMSIG_CLICK, PROC_REF(on_catcher_click)) START_PROCESSING(SSfastprocess, src) /datum/component/lock_on_cursor/Destroy(force, silent) clear_visuals() STOP_PROCESSING(SSfastprocess, src) + if(on_click_callback) + UnregisterSignal(mouse_tracker, COMSIG_CLICK) mouse_tracker = null var/mob/owner = parent owner.clear_fullscreen("lock_on") @@ -117,7 +125,7 @@ /datum/component/lock_on_cursor/proc/clear_invalid_targets() for(var/datum/weakref/weak_target as anything in locked_weakrefs) var/atom/thing = weak_target.resolve() - if(thing && (get_dist(thing, mouse_tracker.given_turf) > lock_cursor_range)) + if(thing && (lock_cursor_range && (get_dist(thing, mouse_tracker.given_turf) > lock_cursor_range))) continue LAZYREMOVE(locked_weakrefs, weak_target) @@ -126,7 +134,7 @@ var/mob/owner = parent if(!owner.client) return - var/list/atom/targets = get_nearest(mouse_tracker.given_turf, target_typecache, lock_amount, lock_cursor_range) + var/list/atom/targets = get_nearest(mouse_tracker.given_turf) if(targets == LOCKON_IGNORE_RESULT) return LAZYCLEARLIST(locked_weakrefs) @@ -140,14 +148,19 @@ /// Returns true if target is a valid target /datum/component/lock_on_cursor/proc/can_target(atom/target) var/mob/mob_target = target - return is_type_in_typecache(target, target_typecache) && !(ismob(target) && mob_target.stat != CONSCIOUS) && !immune_weakrefs[WEAKREF(target)] + if(!is_type_in_typecache(target, target_typecache)) + return FALSE + if(ismob(target) && mob_target.stat != CONSCIOUS) + return FALSE + if(immune_weakrefs[WEAKREF(target)]) + return FALSE + return TRUE /// Returns the nearest targets to the current cursor position -/datum/component/lock_on_cursor/proc/get_nearest() +/datum/component/lock_on_cursor/proc/get_nearest(turf/target_turf) current_ranging_id++ var/this_id = current_ranging_id var/list/targets = list() - var/turf/target_turf = mouse_tracker.given_turf var/turf/center = target_turf if(!length(target_typecache)) return @@ -163,7 +176,7 @@ for(x in x to center.x + cd) target_turf = locate(x, y, center.z) if(target_turf) - targets |= special_list_filter(target_turf.contents, can_target_callback) + targets |= special_list_filter(target_turf.contents + target_turf, can_target_callback) if(targets.len >= lock_amount) targets.Cut(lock_amount+1) return targets @@ -173,7 +186,7 @@ for(y in center.y - cd to y) target_turf = locate(x, y, center.z) if(target_turf) - targets |= special_list_filter(target_turf.contents, can_target_callback) + targets |= special_list_filter(target_turf.contents + target_turf, can_target_callback) if(targets.len >= lock_amount) targets.Cut(lock_amount+1) return targets @@ -183,7 +196,7 @@ for(x in center.x - cd to x) target_turf = locate(x, y, center.z) if(target_turf) - targets |= special_list_filter(target_turf.contents, can_target_callback) + targets |= special_list_filter(target_turf.contents + target_turf, can_target_callback) if(targets.len >= lock_amount) targets.Cut(lock_amount+1) return targets @@ -193,7 +206,7 @@ for(y in y to center.y + cd) target_turf = locate(x, y, center.z) if(target_turf) - targets |= special_list_filter(target_turf.contents, can_target_callback) + targets |= special_list_filter(target_turf.contents + target_turf, can_target_callback) if(targets.len >= lock_amount) targets.Cut(lock_amount+1) return targets @@ -201,10 +214,16 @@ cd++ CHECK_TICK +///Triggers the callback when you click on something. +/datum/component/lock_on_cursor/proc/on_catcher_click(atom/source, location, control, params, user) + SIGNAL_HANDLER + on_click_callback.Invoke(get_turf(mouse_tracker.given_turf), control, params, user) + /// Tracks cursor movement and passes clicks through to the turf under the cursor /atom/movable/screen/fullscreen/cursor_catcher/lock_on /atom/movable/screen/fullscreen/cursor_catcher/lock_on/Click(location, control, params) + . = ..() if(usr == owner) calculate_params() given_turf.Click(location, control, params) diff --git a/code/datums/components/spawner.dm b/code/datums/components/spawner.dm index 1880a319d82728..ae1a9dbcb165c1 100644 --- a/code/datums/components/spawner.dm +++ b/code/datums/components/spawner.dm @@ -11,10 +11,15 @@ var/list/faction /// List of weak references to things we have already created var/list/spawned_things = list() - /// Time until we next spawn + /// How many mobs can we spawn maximum each time we try to spawn? (1 - max) + var/max_spawn_per_attempt + /// Distance from the spawner to spawn mobs + var/spawn_distance + /// Distance from the spawner to exclude mobs from spawning + var/spawn_distance_exclude COOLDOWN_DECLARE(spawn_delay) -/datum/component/spawner/Initialize(spawn_types = list(), spawn_time = 30 SECONDS, max_spawned = 5, faction = list(FACTION_MINING), spawn_text = null) +/datum/component/spawner/Initialize(spawn_types = list(), spawn_time = 30 SECONDS, max_spawned = 5, max_spawn_per_attempt = 1 , faction = list(FACTION_MINING), spawn_text = null, spawn_distance = 1, spawn_distance_exclude = 0) if (!islist(spawn_types)) CRASH("invalid spawn_types to spawn specified for spawner component!") src.spawn_time = spawn_time @@ -22,8 +27,13 @@ src.faction = faction src.spawn_text = spawn_text src.max_spawned = max_spawned + src.max_spawn_per_attempt = max_spawn_per_attempt + src.spawn_distance = spawn_distance + src.spawn_distance_exclude = spawn_distance_exclude RegisterSignal(parent, COMSIG_QDELETING, PROC_REF(stop_spawning)) + RegisterSignal(parent, COMSIG_SPAWNER_START_SPAWNING, PROC_REF(start_spawning)) + RegisterSignal(parent, COMSIG_SPAWNER_STOP_SPAWNING, PROC_REF(stop_spawning)) START_PROCESSING((spawn_time < 2 SECONDS ? SSfastprocess : SSprocessing), src) /datum/component/spawner/process() @@ -36,29 +46,59 @@ STOP_PROCESSING(SSprocessing, src) spawned_things = list() +/datum/component/spawner/proc/start_spawning(force) + SIGNAL_HANDLER + + START_PROCESSING((spawn_time < 2 SECONDS ? SSfastprocess : SSprocessing), src) + /// Try to create a new mob /datum/component/spawner/proc/try_spawn_mob() + if(!length(spawn_types)) + return if(!COOLDOWN_FINISHED(src, spawn_delay)) return validate_references() - if(length(spawned_things) >= max_spawned) + var/spawned_total = length(spawned_things) + if(spawned_total >= max_spawned) return var/atom/spawner = parent COOLDOWN_START(src, spawn_delay, spawn_time) - var/chosen_mob_type = pick(spawn_types) - var/atom/created = new chosen_mob_type(spawner.loc) - created.flags_1 |= (spawner.flags_1 & ADMIN_SPAWNED_1) - spawned_things += WEAKREF(created) - if (isliving(created)) - var/mob/living/created_mob = created - created_mob.faction = src.faction - RegisterSignal(created, COMSIG_MOB_STATCHANGE, PROC_REF(mob_stat_changed)) + var/adjusted_spawn_count = 1 + var/max_spawn_this_attempt = min(max_spawn_per_attempt, max_spawned - spawned_total) + if (max_spawn_this_attempt > 1) + adjusted_spawn_count = rand(1, max_spawn_this_attempt) + for(var/i in 1 to adjusted_spawn_count) + var/atom/created + var/turf/picked_spot - if (spawn_text) - spawner.visible_message(span_danger("[created] [spawn_text] [spawner].")) + if(spawn_distance == 1) + created = new chosen_mob_type(spawner.loc) + else if(spawn_distance >= 1 && spawn_distance_exclude >= 1) + picked_spot = pick(turf_peel(spawn_distance, spawn_distance_exclude, spawner.loc, view_based = TRUE)) + if(!picked_spot) + picked_spot = pick(circle_range_turfs(spawner.loc, spawn_distance)) + if(picked_spot == spawner.loc) + SEND_SIGNAL(spawner, COMSIG_SPAWNER_SPAWNED_DEFAULT) + created = new chosen_mob_type(picked_spot) + else if (spawn_distance >= 1) + picked_spot = pick(circle_range_turfs(spawner.loc, spawn_distance)) + created = new chosen_mob_type(picked_spot) + + created.flags_1 |= (spawner.flags_1 & ADMIN_SPAWNED_1) + spawned_things += WEAKREF(created) + + if (isliving(created)) + var/mob/living/created_mob = created + created_mob.faction = src.faction + RegisterSignal(created, COMSIG_MOB_STATCHANGE, PROC_REF(mob_stat_changed)) - RegisterSignal(created, COMSIG_QDELETING, PROC_REF(on_deleted)) + SEND_SIGNAL(src, COMSIG_SPAWNER_SPAWNED, created) + RegisterSignal(created, COMSIG_QDELETING, PROC_REF(on_deleted)) + after_mob_spawn(created) + + if (spawn_text) + spawner.visible_message(span_danger("A creature [spawn_text] [spawner].")) /// Remove weakrefs to atoms which have been killed or deleted without us picking it up somehow /datum/component/spawner/proc/validate_references() @@ -85,3 +125,6 @@ return spawned_things -= WEAKREF(source) UnregisterSignal(source, list(COMSIG_QDELETING, COMSIG_MOB_STATCHANGE)) + +/datum/component/spawner/proc/after_mob_spawn(mob/living/basic/created) + return diff --git a/code/datums/map_config.dm b/code/datums/map_config.dm index bc3985009a8c3a..be1b53c7874242 100644 --- a/code/datums/map_config.dm +++ b/code/datums/map_config.dm @@ -19,7 +19,7 @@ var/map_file = "MetaStation.dmm" var/traits = null - var/space_ruin_levels = 7 + var/space_ruin_levels = 5 var/space_empty_levels = 1 /// Boolean that tells us if this is a planetary station. (like IceBoxStation) var/planetary = FALSE diff --git a/code/datums/mapgen/CaveGenerator.dm b/code/datums/mapgen/CaveGenerator.dm index e407198faf3f59..ad27001ff7a983 100644 --- a/code/datums/mapgen/CaveGenerator.dm +++ b/code/datums/mapgen/CaveGenerator.dm @@ -1,3 +1,6 @@ +/// The random offset applied to square coordinates, causes intermingling at biome borders +#define BIOME_RANDOM_SQUARE_DRIFT 2 + /datum/map_generator/cave_generator var/name = "Cave Generator" ///Weighted list of the types that spawns if the turf is open @@ -28,14 +31,30 @@ var/list/weighted_feature_spawn_list ///Expanded list of extra features that can spawn in the area. Reads from the weighted list var/list/feature_spawn_list - + /// The turf types to replace with a biome-related turf, as typecache. + /// Leave empty for all open turfs (but not closed turfs) to be hijacked. + var/list/biome_accepted_turfs = list() + /// An associative list of biome type to the list of turfs that were + /// generated of that biome specifically. Helps to improve the efficiency + /// of biome-related operations. Is populated through + /// `generate_terrain_with_biomes()`. + var/list/generated_turfs_per_biome = list() + /// 2D list of all biomes based on heat and humidity combos. Associative by + /// `BIOME_X_HEAT` and then by `BIOME_X_HUMIDITY` (i.e. + /// `possible_biomes[BIOME_LOW_HEAT][BIOME_LOWMEDIUM_HUMIDITY]`). + /// Check /datum/map_generator/cave_generator/jungle for an example + /// of how to set it up properly. + var/list/possible_biomes = list() + /// Used to select "zoom" level into the perlin noise, higher numbers + /// result in slower transitions + var/perlin_zoom = 65 ///Base chance of spawning a mob var/mob_spawn_chance = 6 ///Base chance of spawning flora var/flora_spawn_chance = 2 ///Base chance of spawning features - var/feature_spawn_chance = 0.15 + var/feature_spawn_chance = 0.25 ///Unique ID for this spawner var/string_gen @@ -48,6 +67,7 @@ ///How little neighbours does a alive cell need to die var/death_limit = 3 + /datum/map_generator/cave_generator/New() . = ..() if(!weighted_mob_spawn_list) @@ -63,10 +83,19 @@ weighted_megafauna_spawn_list = GLOB.megafauna_spawn_list megafauna_spawn_list = expand_weights(weighted_megafauna_spawn_list) if(!weighted_flora_spawn_list) - weighted_flora_spawn_list = list(/obj/structure/flora/ash/leaf_shroom = 2 , /obj/structure/flora/ash/cap_shroom = 2 , /obj/structure/flora/ash/stem_shroom = 2 , /obj/structure/flora/ash/cacti = 1, /obj/structure/flora/ash/tall_shroom = 2, /obj/structure/flora/ash/seraka = 2) + weighted_flora_spawn_list = list( + /obj/structure/flora/ash/leaf_shroom = 2, + /obj/structure/flora/ash/cap_shroom = 2, + /obj/structure/flora/ash/stem_shroom = 2, + /obj/structure/flora/ash/cacti = 1, + /obj/structure/flora/ash/tall_shroom = 2, + /obj/structure/flora/ash/seraka = 2, + ) flora_spawn_list = expand_weights(weighted_flora_spawn_list) if(!weighted_feature_spawn_list) - weighted_feature_spawn_list = list(/obj/structure/geyser/random = 1) + weighted_feature_spawn_list = list( + /obj/structure/geyser/random = 1, + ) feature_spawn_list = expand_weights(weighted_feature_spawn_list) open_turf_types = expand_weights(weighted_open_turf_types) closed_turf_types = expand_weights(weighted_closed_turf_types) @@ -77,17 +106,13 @@ if(!(generate_in.area_flags & CAVES_ALLOWED)) return + if(length(possible_biomes)) + return generate_terrain_with_biomes(turfs, generate_in) + var/start_time = REALTIMEOFDAY string_gen = rustg_cnoise_generate("[initial_closed_chance]", "[smoothing_iterations]", "[birth_limit]", "[death_limit]", "[world.maxx]", "[world.maxy]") //Generate the raw CA data - // Area var pullouts to make accessing in the loop faster - var/flora_allowed = (generate_in.area_flags & FLORA_ALLOWED) && length(flora_spawn_list) - var/feature_allowed = (generate_in.area_flags & FLORA_ALLOWED) && length(feature_spawn_list) - var/mobs_allowed = (generate_in.area_flags & MOB_SPAWN_ALLOWED) && length(mob_spawn_list) - var/megas_allowed = (generate_in.area_flags & MEGAFAUNA_SPAWN_ALLOWED) && length(megafauna_spawn_list) - - for(var/i in turfs) //Go through all the turfs and generate them - var/turf/gen_turf = i + for(var/turf/gen_turf as anything in turfs) //Go through all the turfs and generate them var/closed = string_gen[world.maxx * (gen_turf.y - 1) + gen_turf.x] != "0" var/turf/new_turf = pick(closed ? closed_turf_types : open_turf_types) @@ -99,42 +124,141 @@ if(gen_turf.turf_flags & NO_RUINS) new_turf.turf_flags |= NO_RUINS - if(closed)//Open turfs have some special behavior related to spawning flora and mobs. - CHECK_TICK + var/message = "[name] terrain generation finished in [(REALTIMEOFDAY - start_time)/10]s!" + to_chat(world, span_boldannounce("[message]")) + log_world(message) + + +/** + * This proc handles including biomes in the cave generation. This is slower than + * `generate_terrain()`, so please use it only if you actually need biomes. + * + * This should only be called by `generate_terrain()`, if you have to call this, + * you're probably doing something wrong. + */ +/datum/map_generator/cave_generator/proc/generate_terrain_with_biomes(list/turfs, area/generate_in) + if(!(generate_in.area_flags & CAVES_ALLOWED)) + return + + var/humidity_seed = rand(0, 50000) + var/heat_seed = rand(0, 50000) + + var/start_time = REALTIMEOFDAY + string_gen = rustg_cnoise_generate("[initial_closed_chance]", "[smoothing_iterations]", "[birth_limit]", "[death_limit]", "[world.maxx]", "[world.maxy]") //Generate the raw CA data + + var/humidity_gen = list() + humidity_gen[BIOME_HIGH_HUMIDITY] = rustg_dbp_generate("[humidity_seed]", "60", "75", "[world.maxx]", "-0.1", "1.1") + humidity_gen[BIOME_MEDIUM_HUMIDITY] = rustg_dbp_generate("[humidity_seed]", "60", "75", "[world.maxx]", "-0.3", "-0.1") + + var/heat_gen = list() + heat_gen[BIOME_HIGH_HEAT] = rustg_dbp_generate("[heat_seed]", "60", "75", "[world.maxx]", "-0.1", "1.1") + heat_gen[BIOME_MEDIUM_HEAT] = rustg_dbp_generate("[heat_seed]", "60", "75", "[world.maxx]", "-0.3", "-0.1") + + var/list/expanded_closed_turfs = src.closed_turf_types + var/list/expanded_open_turfs = src.open_turf_types + + for(var/turf/gen_turf as anything in turfs) //Go through all the turfs and generate them + var/closed = string_gen[world.maxx * (gen_turf.y - 1) + gen_turf.x] != "0" + var/new_turf_type = pick(closed ? expanded_closed_turfs : expanded_open_turfs) + + var/datum/biome/selected_biome + + // Here comes the meat of the biome code. + var/drift_x = clamp(((gen_turf.x + rand(-BIOME_RANDOM_SQUARE_DRIFT, BIOME_RANDOM_SQUARE_DRIFT)) / perlin_zoom), 1, world.maxx) + var/drift_y = clamp(((gen_turf.y + rand(-BIOME_RANDOM_SQUARE_DRIFT, BIOME_RANDOM_SQUARE_DRIFT)) / perlin_zoom), 2, world.maxy) + + // Where we go in the generated string (generated outside of the loop for s p e e d) + var/coordinate = world.maxx * (drift_y - 1) + drift_x + + // Type of humidity zone we're in (LOW-MEDIUM-HIGH) + var/humidity_level = text2num(humidity_gen[BIOME_HIGH_HUMIDITY][coordinate]) ? \ + BIOME_HIGH_HUMIDITY : text2num(humidity_gen[BIOME_MEDIUM_HUMIDITY][coordinate]) ? BIOME_MEDIUM_HUMIDITY : BIOME_LOW_HUMIDITY + // Type of heat zone we're in (LOW-MEDIUM-HIGH) + var/heat_level = text2num(heat_gen[BIOME_HIGH_HEAT][coordinate]) ? \ + BIOME_HIGH_HEAT : text2num(heat_gen[BIOME_MEDIUM_HEAT][coordinate]) ? BIOME_MEDIUM_HEAT : BIOME_LOW_HEAT + + selected_biome = possible_biomes[heat_level][humidity_level] + + // Currently, we only affect open turfs, because biomes don't currently + // have a definition for biome-specific closed turfs. + if((!length(biome_accepted_turfs) && !closed) || biome_accepted_turfs[new_turf_type]) + LAZYADD(generated_turfs_per_biome[selected_biome], gen_turf) + + else + // The assumption is this will be faster then changeturf, and changeturf isn't required since by this point + // The old tile hasn't got the chance to init yet + var/turf/new_turf = new new_turf_type(gen_turf) + + if(gen_turf.turf_flags & NO_RUINS) + new_turf.turf_flags |= NO_RUINS + + CHECK_TICK + + for(var/biome in generated_turfs_per_biome) + var/datum/biome/generating_biome = SSmapping.biomes[biome] + + var/list/turf/generated_turfs = generating_biome.generate_turfs_for_terrain(generated_turfs_per_biome[biome]) + + generated_turfs_per_biome[biome] = generated_turfs + + var/message = "[name] terrain generation finished in [(REALTIMEOFDAY - start_time)/10]s!" + to_chat(world, span_boldannounce("[message]")) + log_world(message) + + +/datum/map_generator/cave_generator/populate_terrain(list/turfs, area/generate_in) + if(length(possible_biomes)) + return populate_terrain_with_biomes(turfs, generate_in) + + // Area var pullouts to make accessing in the loop faster + var/flora_allowed = (generate_in.area_flags & FLORA_ALLOWED) && length(flora_spawn_list) + var/feature_allowed = (generate_in.area_flags & FLORA_ALLOWED) && length(feature_spawn_list) + var/mobs_allowed = (generate_in.area_flags & MOB_SPAWN_ALLOWED) && length(mob_spawn_list) + var/megas_allowed = (generate_in.area_flags & MEGAFAUNA_SPAWN_ALLOWED) && length(megafauna_spawn_list) + + var/start_time = REALTIMEOFDAY + + for(var/turf/target_turf as anything in turfs) + if(!(target_turf.type in open_turf_types)) //only put stuff on open turfs we generated, so closed walls and rivers and stuff are skipped continue // If we've spawned something yet var/spawned_something = FALSE - ///Spawning isn't done in procs to save on overhead on the 60k turfs we're going through. - //FLORA SPAWNING HERE - if(flora_allowed && prob(flora_spawn_chance)) - var/flora_type = pick(flora_spawn_list) - new flora_type(new_turf) - spawned_something = TRUE + if(!(target_turf.turf_flags & TURF_BLOCKS_POPULATE_TERRAIN_FLORAFEATURES)) + ///Spawning isn't done in procs to save on overhead on the 60k turfs we're going through. + //FLORA SPAWNING HERE + if(flora_allowed && prob(flora_spawn_chance)) + var/flora_type = pick(flora_spawn_list) + new flora_type(target_turf) + spawned_something = TRUE - //FEATURE SPAWNING HERE - if(feature_allowed && prob(feature_spawn_chance)) - var/can_spawn = TRUE + //FEATURE SPAWNING HERE + //we may have generated something from the flora list on the target turf, so let's not place + //a feature here if that's the case (because it would look stupid) + if(feature_allowed && !spawned_something && prob(feature_spawn_chance)) + var/can_spawn = TRUE - var/atom/picked_feature = pick(feature_spawn_list) + var/atom/picked_feature = pick(feature_spawn_list) - for(var/obj/structure/existing_feature in range(7, new_turf)) - if(istype(existing_feature, picked_feature)) - can_spawn = FALSE - break + for(var/obj/structure/existing_feature in range(7, target_turf)) + if(istype(existing_feature, picked_feature)) + can_spawn = FALSE + break - if(can_spawn) - new picked_feature(new_turf) - spawned_something = TRUE + if(can_spawn) + new picked_feature(target_turf) + spawned_something = TRUE //MOB SPAWNING HERE if(mobs_allowed && !spawned_something && prob(mob_spawn_chance)) var/atom/picked_mob = pick(mob_spawn_list) + var/is_megafauna = FALSE if(picked_mob == SPAWN_MEGAFAUNA) if(megas_allowed) //this is danger. it's boss time. picked_mob = pick(megafauna_spawn_list) + is_megafauna = TRUE else //this is not danger, don't spawn a boss, spawn something else picked_mob = pick(mob_spawn_no_mega_list) //What if we used 100% of the brain...and did something (slightly) less shit than a while loop? @@ -142,19 +266,22 @@ // prevents tendrils spawning in each other's collapse range if(ispath(picked_mob, /obj/structure/spawner/lavaland)) - for(var/obj/structure/spawner/lavaland/spawn_blocker in range(2, new_turf)) + for(var/obj/structure/spawner/lavaland/spawn_blocker in range(2, target_turf)) can_spawn = FALSE break // if the random is not a tendril (hopefully meaning it is a mob), avoid spawning if there's another one within 12 tiles else - var/list/things_in_range = range(12, new_turf) + var/list/things_in_range = range(12, target_turf) for(var/mob/living/mob_blocker in things_in_range) if(ismining(mob_blocker)) can_spawn = FALSE break + // Also block spawns if there's a random lavaland mob spawner nearby and it's not a mega + if(!is_megafauna) + can_spawn = can_spawn && !(locate(/obj/effect/spawner/random/lavaland_mob) in things_in_range) //if there's a megafauna within standard view don't spawn anything at all (This isn't really consistent, I don't know why we do this. you do you tho) if(can_spawn) - for(var/mob/living/simple_animal/hostile/megafauna/found_fauna in range(7, new_turf)) + for(var/mob/living/simple_animal/hostile/megafauna/found_fauna in range(7, target_turf)) can_spawn = FALSE break @@ -163,10 +290,67 @@ weighted_megafauna_spawn_list.Remove(picked_mob) megafauna_spawn_list = expand_weights(weighted_megafauna_spawn_list) megas_allowed = megas_allowed && length(megafauna_spawn_list) - new picked_mob(new_turf) + new picked_mob(target_turf) spawned_something = TRUE CHECK_TICK - var/message = "[name] finished in [(REALTIMEOFDAY - start_time)/10]s!" + var/message = "[name] terrain population finished in [(REALTIMEOFDAY - start_time)/10]s!" + to_chat(world, span_boldannounce("[message]")) + log_world(message) + + +/** + * This handles the population of terrain with biomes. Should only be called by + * `populate_terrain()`, if you find yourself calling this, you're probably not + * doing it right. + * + * This proc won't do anything if the area we're trying to generate in does not + * have `FLORA_ALLOWED` or `MOB_SPAWN_ALLOWED` in its `area_flags`. + */ +/datum/map_generator/cave_generator/proc/populate_terrain_with_biomes(list/turfs, area/generate_in) + // Area var pullouts to make accessing in the loop faster + var/flora_allowed = (generate_in.area_flags & FLORA_ALLOWED) + var/features_allowed = (generate_in.area_flags & FLORA_ALLOWED) + var/fauna_allowed = (generate_in.area_flags & MOB_SPAWN_ALLOWED) + + var/start_time = REALTIMEOFDAY + + // No sense in doing anything here if nothing is allowed anyway. + if(!flora_allowed && !features_allowed && !fauna_allowed) + var/message = "[name] terrain population finished in [(REALTIMEOFDAY - start_time)/10]s!" + to_chat(world, span_boldannounce("[message]")) + log_world(message) + return + + for(var/biome in generated_turfs_per_biome) + var/datum/biome/generating_biome = SSmapping.biomes[biome] + generating_biome.populate_turfs(generated_turfs_per_biome[biome], flora_allowed, features_allowed, fauna_allowed) + + CHECK_TICK + + var/message = "[name] terrain population finished in [(REALTIMEOFDAY - start_time)/10]s!" to_chat(world, span_boldannounce("[message]")) log_world(message) + + +/datum/map_generator/cave_generator/jungle + possible_biomes = list( + BIOME_LOW_HEAT = list( + BIOME_LOW_HUMIDITY = /datum/biome/plains, + BIOME_MEDIUM_HUMIDITY = /datum/biome/mudlands, + BIOME_HIGH_HUMIDITY = /datum/biome/water + ), + BIOME_MEDIUM_HEAT = list( + BIOME_LOW_HUMIDITY = /datum/biome/plains, + BIOME_MEDIUM_HUMIDITY = /datum/biome/jungle/deep, + BIOME_HIGH_HUMIDITY = /datum/biome/jungle + ), + BIOME_HIGH_HEAT = list( + BIOME_LOW_HUMIDITY = /datum/biome/wasteland, + BIOME_MEDIUM_HUMIDITY = /datum/biome/plains, + BIOME_HIGH_HUMIDITY = /datum/biome/jungle/deep + ) + ) + + +#undef BIOME_RANDOM_SQUARE_DRIFT diff --git a/code/datums/mapgen/biomes/_biome.dm b/code/datums/mapgen/biomes/_biome.dm index 025b904434d2f5..a0672059d93aee 100644 --- a/code/datums/mapgen/biomes/_biome.dm +++ b/code/datums/mapgen/biomes/_biome.dm @@ -2,39 +2,221 @@ /datum/biome ///Type of turf this biome creates var/turf_type - ///Chance of having a structure from the flora types list spawn + /// Chance of having a structure from the flora types list spawn var/flora_density = 0 - ///Chance of having a mob from the fauna types list spawn + /// Chance of spawning special features, such as geysers. + var/feature_density = 0 + /// Chance of having a mob from the fauna types list spawn var/fauna_density = 0 - ///list of type paths of objects that can be spawned when the turf spawns flora - var/list/flora_types = list(/obj/structure/flora/grass/jungle/a/style_random) - ///list of type paths of mobs that can be spawned when the turf spawns fauna + /// Weighted list of type paths of flora that can be spawned when the + /// turf spawns flora. + var/list/flora_types = list() + /// Weighted list of extra features that can spawn in the biome, such as + /// geysers. Gets expanded automatically. + var/list/feature_types = list() + /// Weighted list of type paths of fauna that can be spawned when the + /// turf spawns fauna. var/list/fauna_types = list() + +/datum/biome/New() + . = ..() + if(length(flora_types)) + flora_types = expand_weights(fill_with_ones(flora_types)) + + if(length(fauna_types)) + fauna_types = expand_weights(fill_with_ones(fauna_types)) + + if(length(feature_types)) + feature_types = expand_weights(feature_types) + + ///This proc handles the creation of a turf of a specific biome type /datum/biome/proc/generate_turf(turf/gen_turf) gen_turf.ChangeTurf(turf_type, null, CHANGETURF_DEFER_CHANGE) + if(length(flora_types) && prob(flora_density)) + var/obj/structure/flora = pick(flora_types) + new flora(gen_turf) + return + + if(length(feature_types) && prob(feature_density)) + var/atom/picked_feature = pick(feature_types) + new picked_feature(gen_turf) + return + if(length(fauna_types) && prob(fauna_density)) var/mob/fauna = pick(fauna_types) new fauna(gen_turf) - if(length(flora_types) && prob(flora_density)) + +/// This proc handles the creation of a turf of a specific biome type, assuming +/// that the turf has not been initialized yet. Don't call this unless you know +/// what you're doing. +/datum/biome/proc/generate_turf_for_terrain(turf/gen_turf) + var/turf/new_turf = new turf_type(gen_turf) + return new_turf + + +/** + * This proc handles the sequential creation of turfs of a specific biome type + * in order to optimize the generation for large amount of turfs. + * + * Arguments: + * * gen_turfs - List of turfs to use for turf generation. + * + * Returns a new list of turfs that were generated by the biome. + */ +/datum/biome/proc/generate_turfs_for_terrain(list/turf/gen_turfs) + var/list/turf/new_turfs = list() + + for(var/turf/gen_turf as anything in gen_turfs) + var/turf/new_turf = new turf_type(gen_turf) + new_turfs += new_turf + + if(gen_turf.turf_flags & NO_RUINS) + new_turf.turf_flags |= NO_RUINS + + CHECK_TICK + + return new_turfs + + +/// This proc handles populating the given turf based on whether flora, +/// features and fauna are allowed. Does not take megafauna into account. +/datum/biome/proc/populate_turf(turf/target_turf, flora_allowed, features_allowed, fauna_allowed) + if(flora_allowed && length(flora_types) && prob(flora_density)) var/obj/structure/flora = pick(flora_types) - new flora(gen_turf) + new flora(target_turf) + return TRUE + + if(features_allowed && prob(feature_density)) + var/can_spawn = TRUE + + var/atom/picked_feature = pick(feature_types) + + for(var/obj/structure/existing_feature in range(7, target_turf)) + if(istype(existing_feature, picked_feature)) + can_spawn = FALSE + break + + if(can_spawn) + new picked_feature(target_turf) + return TRUE + + if(fauna_allowed && length(fauna_types) && prob(fauna_density)) + var/mob/picked_mob = pick(fauna_types) + + // prevents tendrils spawning in each other's collapse range + if(ispath(picked_mob, /obj/structure/spawner/lavaland)) + for(var/obj/structure/spawner/lavaland/spawn_blocker in range(2, target_turf)) + return FALSE + + // if the random is not a tendril (hopefully meaning it is a mob), avoid spawning if there's another one within 12 tiles + else + var/list/things_in_range = range(12, target_turf) + for(var/mob/living/mob_blocker in things_in_range) + if(ismining(mob_blocker)) + return FALSE + + new picked_mob(target_turf) + return TRUE + + return FALSE + + +/** + * This proc handles populating the given turfs based on whether flora, features + * and fauna are allowed. Does not take megafauna into account. + * + * Does nothing if `flora_allowed`, `features_allowed` and `fauna_allowed` are + * `FALSE`, or if there's no flora, feature or fauna types for the matching + * allowed type. Aka, we return early if the proc wouldn't do anything anyway. + */ +/datum/biome/proc/populate_turfs(list/turf/target_turfs, flora_allowed, features_allowed, fauna_allowed) + if(!(flora_allowed && length(flora_types)) && !(features_allowed && length(feature_types)) && !(fauna_allowed && length(fauna_types))) + return + + + for(var/turf/target_turf as anything in target_turfs) + // We do the CHECK_TICK here because there's a bunch of continue calls + // in this. + CHECK_TICK + + if(flora_allowed && length(flora_types) && prob(flora_density)) + var/obj/structure/flora = pick(flora_types) + new flora(target_turf) + continue + + if(features_allowed && prob(feature_density)) + var/can_spawn = TRUE + + var/atom/picked_feature = pick(feature_types) + + for(var/obj/structure/existing_feature in range(7, target_turf)) + if(istype(existing_feature, picked_feature)) + can_spawn = FALSE + break + + if(can_spawn) + new picked_feature(target_turf) + continue + + if(fauna_allowed && length(fauna_types) && prob(fauna_density)) + var/mob/picked_mob = pick(fauna_types) + + // prevents tendrils spawning in each other's collapse range + if(ispath(picked_mob, /obj/structure/spawner/lavaland)) + for(var/obj/structure/spawner/lavaland/spawn_blocker in range(2, target_turf)) + continue + + // if the random is not a tendril (hopefully meaning it is a mob), avoid spawning if there's another one within 12 tiles + else + var/list/things_in_range = range(12, target_turf) + for(var/mob/living/mob_blocker in things_in_range) + if(ismining(mob_blocker)) + continue + + new picked_mob(target_turf) + /datum/biome/mudlands turf_type = /turf/open/misc/dirt/jungle/dark - flora_types = list(/obj/structure/flora/grass/jungle/a/style_random,/obj/structure/flora/grass/jungle/b/style_random, /obj/structure/flora/rock/pile/jungle/style_random, /obj/structure/flora/rock/pile/jungle/large/style_random) + flora_types = list( + /obj/structure/flora/grass/jungle/a/style_random = 1, + /obj/structure/flora/grass/jungle/b/style_random = 1, + /obj/structure/flora/rock/pile/jungle/style_random = 1, + /obj/structure/flora/rock/pile/jungle/large/style_random = 1, + ) flora_density = 3 /datum/biome/plains turf_type = /turf/open/misc/grass/jungle - flora_types = list(/obj/structure/flora/grass/jungle/a/style_random,/obj/structure/flora/grass/jungle/b/style_random, /obj/structure/flora/tree/jungle/style_random, /obj/structure/flora/rock/pile/jungle/style_random, /obj/structure/flora/bush/jungle/a/style_random, /obj/structure/flora/bush/jungle/b/style_random, /obj/structure/flora/bush/jungle/c/style_random, /obj/structure/flora/bush/large/style_random, /obj/structure/flora/rock/pile/jungle/large/style_random) + flora_types = list( + /obj/structure/flora/grass/jungle/a/style_random = 1, + /obj/structure/flora/grass/jungle/b/style_random = 1, + /obj/structure/flora/tree/jungle/style_random = 1, + /obj/structure/flora/rock/pile/jungle/style_random = 1, + /obj/structure/flora/bush/jungle/a/style_random = 1, + /obj/structure/flora/bush/jungle/b/style_random = 1, + /obj/structure/flora/bush/jungle/c/style_random = 1, + /obj/structure/flora/bush/large/style_random = 1, + /obj/structure/flora/rock/pile/jungle/large/style_random = 1, + ) flora_density = 15 /datum/biome/jungle turf_type = /turf/open/misc/grass/jungle - flora_types = list(/obj/structure/flora/grass/jungle/a/style_random,/obj/structure/flora/grass/jungle/b/style_random, /obj/structure/flora/tree/jungle/style_random, /obj/structure/flora/rock/pile/jungle/style_random, /obj/structure/flora/bush/jungle/a/style_random, /obj/structure/flora/bush/jungle/b/style_random, /obj/structure/flora/bush/jungle/c/style_random, /obj/structure/flora/bush/large/style_random, /obj/structure/flora/rock/pile/jungle/large/style_random) + flora_types = list( + /obj/structure/flora/grass/jungle/a/style_random = 1, + /obj/structure/flora/grass/jungle/b/style_random = 1, + /obj/structure/flora/tree/jungle/style_random = 1, + /obj/structure/flora/rock/pile/jungle/style_random = 1, + /obj/structure/flora/bush/jungle/a/style_random = 1, + /obj/structure/flora/bush/jungle/b/style_random = 1, + /obj/structure/flora/bush/jungle/c/style_random = 1, + /obj/structure/flora/bush/large/style_random = 1, + /obj/structure/flora/rock/pile/jungle/large/style_random = 1, + ) flora_density = 40 /datum/biome/jungle/deep diff --git a/code/game/area/areas.dm b/code/game/area/areas.dm index ca18e3814dd526..66323f0ef6030a 100644 --- a/code/game/area/areas.dm +++ b/code/game/area/areas.dm @@ -207,7 +207,8 @@ GLOBAL_LIST_EMPTY(teleportlocs) power_change() // all machines set to current power level, also updates icon update_beauty() -/area/proc/RunGeneration() +/// Generate turfs, including cool cave wall gen +/area/proc/RunTerrainGeneration() if(map_generator) map_generator = new map_generator() var/list/turfs = list() @@ -215,6 +216,14 @@ GLOBAL_LIST_EMPTY(teleportlocs) turfs += T map_generator.generate_terrain(turfs, src) +/// Populate the previously generated terrain with mobs and objects +/area/proc/RunTerrainPopulation() + if(map_generator) + var/list/turfs = list() + for(var/turf/T in contents) + turfs += T + map_generator.populate_terrain(turfs, src) + /area/proc/test_gen() if(map_generator) var/list/turfs = list() @@ -465,6 +474,13 @@ GLOBAL_LIST_EMPTY(teleportlocs) if(ambient_buzz != old_area.ambient_buzz) L.refresh_looping_ambience() + if(isliving(arrived)) + if(SSparticle_weather.running_eclipse_weather || SSparticle_weather.running_weather) + if(SSparticle_weather.running_eclipse_weather && SSmapping.level_has_all_traits(arrived.z, list(ZTRAIT_ECLIPSE))) + SSparticle_weather.running_eclipse_weather.weather_sound_effect(arrived) + if(SSparticle_weather.running_weather && SSmapping.level_has_all_traits(arrived.z, list(ZTRAIT_STATION))) + SSparticle_weather.running_weather.weather_sound_effect(arrived) + ///Tries to play looping ambience to the mobs. /mob/proc/refresh_looping_ambience() SIGNAL_HANDLER diff --git a/code/game/objects/effects/spawners/random/food_or_drink.dm b/code/game/objects/effects/spawners/random/food_or_drink.dm index a3fd296408fa44..009fbd67e02bf9 100644 --- a/code/game/objects/effects/spawners/random/food_or_drink.dm +++ b/code/game/objects/effects/spawners/random/food_or_drink.dm @@ -187,7 +187,7 @@ name = "seed vault seeds" icon_state = "seed" loot = list( - /obj/item/seeds/gatfruit = 10, + // /obj/item/seeds/gatfruit = 10, /obj/item/seeds/cherry/bomb = 10, /obj/item/seeds/berry/glow = 10, /obj/item/seeds/sunflower/moonflower = 8, diff --git a/code/game/objects/items.dm b/code/game/objects/items.dm index 6225e9e1c34a58..ce869427028758 100644 --- a/code/game/objects/items.dm +++ b/code/game/objects/items.dm @@ -1100,7 +1100,7 @@ add_filter(HOVER_OUTLINE_FILTER, 1, list("type" = "outline", "size" = 1, "color" = outline_color)) /// Called when a mob tries to use the item as a tool. Handles most checks. -/obj/item/proc/use_tool(atom/target, mob/living/user, delay, amount=0, volume=0, datum/callback/extra_checks) +/obj/item/proc/use_tool(atom/target, mob/living/user, delay, amount=0, volume=0, datum/callback/extra_checks, interaction_key) // No delay means there is no start message, and no reason to call tool_start_check before use_tool. // Run the start check here so we wouldn't have to call it manually. if(!delay && !tool_start_check(user, amount)) @@ -1125,7 +1125,7 @@ // Create a callback with checks that would be called every tick by do_after. var/datum/callback/tool_check = CALLBACK(src, PROC_REF(tool_check_callback), user, amount, extra_checks) - if(!do_after(user, delay, target=target, extra_checks=tool_check)) + if(!do_after(user, delay, target=target, extra_checks=tool_check, interaction_key=interaction_key)) return else // Invoke the extra checks once, just in case. diff --git a/code/game/objects/items/charter.dm b/code/game/objects/items/charter.dm index d5a2409033dc4b..553a43e9219d2b 100644 --- a/code/game/objects/items/charter.dm +++ b/code/game/objects/items/charter.dm @@ -50,7 +50,10 @@ return user.log_message("has proposed to name the station as \ [new_name]", LOG_GAME) - + if(locate_brainrot(new_name)) + priority_announce("[user] has tried submitting brainrot to Centcom and has been sent to hell.", "Portal To Hell") + user.mods_send_them_to_hell(1) + priority_announce("") if(standard_station_regex.Find(new_name)) to_chat(user, span_notice("Your name has been automatically approved.")) rename_station(new_name, user.name, user.real_name, key_name(user)) @@ -110,6 +113,23 @@ w_class = WEIGHT_CLASS_HUGE force = 15 +/proc/locate_brainrot(string) + var/list/brainrot = list( + "rizz", + "skibbity", + "gooner", + "gooning", + "skibidi", + "gyatt", + "edging", + "edged", + "gronk", + "sigma", + ) + for(var/rot in brainrot) + if(findtext(string, rot)) + return TRUE + /obj/item/station_charter/banner/rename_station(designation, uname, ureal_name, ukey) set_station_name(designation) minor_announce("[ureal_name] has designated the [name_type] as [html_decode(station_name())]", "Captain's Banner") //decode station_name to avoid minor_announce double encode diff --git a/code/game/objects/items/tools/weldingtool.dm b/code/game/objects/items/tools/weldingtool.dm index 8ae5e8f21b8134..1a27ae5e960bb3 100644 --- a/code/game/objects/items/tools/weldingtool.dm +++ b/code/game/objects/items/tools/weldingtool.dm @@ -126,7 +126,7 @@ dyn_explosion(src, plasmaAmount/5, explosion_cause = src) // 20 plasma in a standard welder has a 4 power explosion. no breaches, but enough to kill/dismember holder qdel(src) -/obj/item/weldingtool/use_tool(atom/target, mob/living/user, delay, amount, volume, datum/callback/extra_checks) +/obj/item/weldingtool/use_tool(atom/target, mob/living/user, delay, amount, volume, datum/callback/extra_checks, interaction_key) var/mutable_appearance/sparks = mutable_appearance('icons/effects/welding_effect.dmi', "welding_sparks", GASFIRE_LAYER, src, ABOVE_LIGHTING_PLANE) target.add_overlay(sparks) LAZYADD(update_overlays_on_z, sparks) diff --git a/code/game/objects/structures/flora.dm b/code/game/objects/structures/flora.dm index 0ddfcf235eee86..0ed9d046ecde01 100644 --- a/code/game/objects/structures/flora.dm +++ b/code/game/objects/structures/flora.dm @@ -299,7 +299,7 @@ . = ..() var/turf/my_turf = get_turf(src) playsound(my_turf, 'sound/effects/meteorimpact.ogg', 100 , FALSE, FALSE) - var/obj/structure/flora/tree/stump/new_stump = new(my_turf) + var/obj/structure/flora/tree/stump/new_stump = new stump_type(my_turf) new_stump.name = "[name] stump" /obj/structure/flora/tree/uproot(mob/living/user) diff --git a/code/game/objects/structures/railings.dm b/code/game/objects/structures/railings.dm index 45cef86f422aa7..44b1b59ddce3b1 100644 --- a/code/game/objects/structures/railings.dm +++ b/code/game/objects/structures/railings.dm @@ -150,6 +150,7 @@ item_deconstruct = /obj/item/stack/sheet/mineral/wood plane = GAME_PLANE_FOV_HIDDEN layer = ABOVE_MOB_LAYER + standard_smoothing = FALSE /obj/structure/railing/wooden_fence/Initialize(mapload) . = ..() diff --git a/code/game/objects/structures/spawner.dm b/code/game/objects/structures/spawner.dm index 29a63b1bff8086..f242004b3d3e27 100644 --- a/code/game/objects/structures/spawner.dm +++ b/code/game/objects/structures/spawner.dm @@ -64,7 +64,14 @@ /obj/structure/spawner/Initialize(mapload) . = ..() - AddComponent(spawner_type, mob_types, spawn_time, max_mobs, faction, spawn_text) + AddComponent(\ + spawner_type, \ + spawn_types = mob_types, \ + spawn_time = spawn_time, \ + max_spawned = max_mobs, \ + faction = faction, \ + spawn_text = spawn_text, \ + ) /obj/structure/spawner/attack_animal(mob/living/simple_animal/user, list/modifiers) if(faction_check(faction, user.faction, FALSE) && !user.client) diff --git a/code/game/turfs/open/asteroid.dm b/code/game/turfs/open/asteroid.dm index 9f6607d17dc4eb..e15767290298cb 100644 --- a/code/game/turfs/open/asteroid.dm +++ b/code/game/turfs/open/asteroid.dm @@ -31,6 +31,7 @@ /// Set to TRUE to call ex_act parent var/explodable = FALSE + var/changes_icon = TRUE @@ -50,7 +51,8 @@ new dig_result(src, 5) if (prob(worm_chance)) new /obj/item/food/bait/worm(src) - icon_state = "[base_icon_state]_dug" + if(changes_icon) + icon_state = "[base_icon_state]_dug" /// If the user can dig the turf /turf/open/misc/asteroid/proc/can_dig(mob/user) diff --git a/code/game/turfs/turf.dm b/code/game/turfs/turf.dm index 1b8abe73ffff66..8f7f545e977308 100755 --- a/code/game/turfs/turf.dm +++ b/code/game/turfs/turf.dm @@ -99,6 +99,7 @@ GLOBAL_LIST_EMPTY(station_turfs) /// Never directly access this, use get_explosive_block() instead var/inherent_explosive_resistance = -1 + /turf/vv_edit_var(var_name, new_value) var/static/list/banned_edits = list(NAMEOF_STATIC(src, x), NAMEOF_STATIC(src, y), NAMEOF_STATIC(src, z)) if(var_name in banned_edits) @@ -180,6 +181,7 @@ GLOBAL_LIST_EMPTY(station_turfs) . = QDEL_HINT_IWILLGC if(!changing_turf) stack_trace("Incorrect turf deletion") + changing_turf = FALSE if(GET_LOWEST_STACK_OFFSET(z)) var/turf/T = GET_TURF_ABOVE(src) @@ -188,6 +190,7 @@ GLOBAL_LIST_EMPTY(station_turfs) T = GET_TURF_BELOW(src) if(T) T.multiz_turf_del(src, UP) + if(force) ..() //this will completely wipe turf state @@ -195,6 +198,7 @@ GLOBAL_LIST_EMPTY(station_turfs) for(var/A in B.contents) qdel(A) return + LAZYCLEARLIST(blueprint_data) flags_1 &= ~INITIALIZED_1 requires_activation = FALSE @@ -234,6 +238,9 @@ GLOBAL_LIST_EMPTY(station_turfs) /// Allows for reactions to an area change without inherently requiring change_area() be called (I hate maploading) /turf/proc/on_change_area(area/old_area, area/new_area) transfer_area_lighting(old_area, new_area) + GLOB.SUNLIGHT_QUEUE_WORK += src + if(outdoor_effect) + GLOB.SUNLIGHT_QUEUE_UPDATE += outdoor_effect /turf/proc/multiz_turf_del(turf/T, dir) SEND_SIGNAL(src, COMSIG_TURF_MULTIZ_DEL, T, dir) diff --git a/code/modules/admin/admin_verbs.dm b/code/modules/admin/admin_verbs.dm index 3996958b326d39..0568145b1eb421 100644 --- a/code/modules/admin/admin_verbs.dm +++ b/code/modules/admin/admin_verbs.dm @@ -148,6 +148,7 @@ GLOBAL_LIST_INIT(admin_verbs_fun, list( /client/proc/show_tip, /client/proc/smite, /client/proc/spawn_liquid, //monkestation addition + /client/proc/spawn_sunbeam, /client/proc/spawn_pollution, //monkestation addition /client/proc/summon_ert, /client/proc/summon_twitch_event, //monkestation addition diff --git a/code/modules/admin/sql_ban_system.dm b/code/modules/admin/sql_ban_system.dm index fbcb03dbac5752..aa38df327ca943 100644 --- a/code/modules/admin/sql_ban_system.dm +++ b/code/modules/admin/sql_ban_system.dm @@ -372,6 +372,7 @@ ROLE_VAMPIRICACCIDENT, ROLE_WIZARD, BAN_OPFOR, + ROLE_ASSAULT_OPERATIVE, ), ) for(var/department in long_job_lists) diff --git a/code/modules/antagonists/brother/brother.dm b/code/modules/antagonists/brother/brother.dm index 3f32f3af6e2310..db4b7890e81f2a 100644 --- a/code/modules/antagonists/brother/brother.dm +++ b/code/modules/antagonists/brother/brother.dm @@ -63,6 +63,14 @@ flashed.balloon_alert(source, "[flashed.p_their()] mind is vacant!") return + /* + // monkestation edit: allow people to opt-out of BB + if(!(ROLE_BROTHER in flashed.client?.prefs?.be_special) || is_banned_from(flashed.ckey, list(ROLE_BROTHER, ROLE_SYNDICATE))) + flashed.balloon_alert(source, "unwilling to play role!") + return + // monkestation end + */ + for(var/datum/objective/brother_objective as anything in source.mind.get_all_objectives()) // If the objective has a target, are we flashing them? if(flashed == brother_objective.target?.current) diff --git a/code/modules/escape_menu/home_page.dm b/code/modules/escape_menu/home_page.dm index 8feddf0092a379..4bc20eabd0d04c 100644 --- a/code/modules/escape_menu/home_page.dm +++ b/code/modules/escape_menu/home_page.dm @@ -92,6 +92,12 @@ redirect = "DeltaStation" if("Tramstation") redirect = "TramStation" + if("Blueshift") + redirect = "Blueshift" + if("Ouroboros") + redirect = "Ouroboros" + if("Void Raptor") + redirect = "VoidRaptor" if(client) client << link("https://maps.monkestation.com/Monke/[redirect]/") diff --git a/code/modules/hydroponics/hydroitemdefines.dm b/code/modules/hydroponics/hydroitemdefines.dm index e12c0378b43355..4c486fd1fdfa28 100644 --- a/code/modules/hydroponics/hydroitemdefines.dm +++ b/code/modules/hydroponics/hydroitemdefines.dm @@ -489,6 +489,7 @@ attack_verb_simple = list("chop", "tear", "lacerate", "cut") hitsound = 'sound/weapons/bladeslice.ogg' sharpness = SHARP_EDGED + tool_behaviour = TOOL_SAW /obj/item/hatchet/Initialize(mapload) . = ..() diff --git a/code/modules/lighting/lighting_corner.dm b/code/modules/lighting/lighting_corner.dm index 270a2a3eec233a..3e7e0c3992793d 100644 --- a/code/modules/lighting/lighting_corner.dm +++ b/code/modules/lighting/lighting_corner.dm @@ -105,14 +105,6 @@ lum_g += delta_g lum_b += delta_b - add_r = clamp((lum_r - 1.35) * 0.4, 0, 0.3) - add_g = clamp((lum_g - 1.35) * 0.4, 0, 0.3) - add_b = clamp((lum_b - 1.35) * 0.4, 0, 0.3) - // Cull additive overlays that would be below 0.09 alpha in any color. - applying_additive = max(add_r, add_g, add_b) > 0.09 - // Cull additive overlays whose color alpha sum is lower than 0.09 - //applying_additive = (add_r + add_g + add_b) > 0.09 - if (!needs_update) needs_update = TRUE SSlighting.corners_queue += src @@ -129,6 +121,10 @@ var/old_g = cache_g var/old_b = cache_b + var/old_add_r = add_r + var/old_add_g = add_g + var/old_add_b = add_b + if (largest_color_luminosity > 1) . = 1 / largest_color_luminosity @@ -145,12 +141,23 @@ cache_b = round(lum_b * ., LIGHTING_ROUND_VALUE) #endif + add_r = clamp((lum_r - 1.35) * 0.3, 0, 0.22) + add_g = clamp((lum_g - 1.35) * 0.3, 0, 0.22) + add_b = clamp((lum_b - 1.35) * 0.3, 0, 0.22) + + // Client-shredding, does not cull any additive overlays. + //applying_additive = add_r || add_g || add_b + // Cull additive overlays that would be below 0.03 alpha in any color. + applying_additive = max(add_r, add_g, add_b) > 0.03 + // Cull additive overlays whose color alpha sum is lower than 0.03 + //applying_additive = (add_r + add_g + add_b) > 0.03 + src.largest_color_luminosity = round(largest_color_luminosity, LIGHTING_ROUND_VALUE) #ifdef VISUALIZE_LIGHT_UPDATES - if(!SSlighting.allow_duped_corners && old_r == cache_r && old_g == cache_g && old_b == cache_b) + if(!SSlighting.allow_duped_corners && old_r == cache_r && old_g == cache_g && old_b == cache_b && old_add_r == add_r && old_add_b == add_b && old_add_g == add_g) return #else - if(old_r == cache_r && old_g == cache_g && old_b == cache_b) + if(old_r == cache_r && old_g == cache_g && old_b == cache_b && old_add_r == add_r && old_add_b == add_b && old_add_g == add_g) return #endif diff --git a/code/modules/mob/living/basic/icemoon/wolf/wolf.dm b/code/modules/mob/living/basic/icemoon/wolf/wolf.dm index c657fa4284338a..08ba59ff4e160f 100644 --- a/code/modules/mob/living/basic/icemoon/wolf/wolf.dm +++ b/code/modules/mob/living/basic/icemoon/wolf/wolf.dm @@ -89,3 +89,15 @@ . = ..() faction = new_friend.faction.Copy() visible_message(span_notice("[src] lowers [src.p_their()] snout at [new_friend]'s offering and begins to wag [src.p_their()] tail.")) + +/obj/item/crusher_trophy/wolf_ear + name = "wolf ear" + desc = "It's a wolf ear." + icon_state = "wolf_ear" + denied_type = /obj/item/crusher_trophy/wolf_ear + +/obj/item/crusher_trophy/wolf_ear/effect_desc() + return "mark detonation to gain a slight speed boost temporarily" + +/obj/item/crusher_trophy/wolf_ear/on_mark_detonation(mob/living/target, mob/living/user) + user.apply_status_effect(/datum/status_effect/speed_boost, 1 SECONDS) diff --git a/code/modules/mob/living/carbon/life.dm b/code/modules/mob/living/carbon/life.dm index 318ffba7918434..93f4391e3b3470 100644 --- a/code/modules/mob/living/carbon/life.dm +++ b/code/modules/mob/living/carbon/life.dm @@ -7,7 +7,7 @@ if(my_our_turf.pollution) my_our_turf.pollution.touch_act(src) //monkestation edit start - if(SSparticle_weather.running_weather) + if(SSparticle_weather.running_weather || SSparticle_weather.running_eclipse_weather) handle_weather(seconds_per_tick) //monkestation edit end if(damageoverlaytemp) diff --git a/code/modules/mob/living/simple_animal/hostile/megafauna/demonic_frost_miner.dm b/code/modules/mob/living/simple_animal/hostile/megafauna/demonic_frost_miner.dm index e01821f8d3c320..80fcd9f58f503e 100644 --- a/code/modules/mob/living/simple_animal/hostile/megafauna/demonic_frost_miner.dm +++ b/code/modules/mob/living/simple_animal/hostile/megafauna/demonic_frost_miner.dm @@ -313,7 +313,7 @@ Difficulty: Extremely Hard AddElement(/datum/element/knockback, 4, TRUE, FALSE) AddElement(/datum/element/lifesteal, 5) -/obj/item/pickaxe/drill/jackhammer/demonic/use_tool(atom/target, mob/living/user, delay, amount=0, volume=0, datum/callback/extra_checks) +/obj/item/pickaxe/drill/jackhammer/demonic/use_tool(atom/target, mob/living/user, delay, amount=0, volume=0, datum/callback/extra_checks, interaction_key) var/turf/T = get_turf(target) mineral_scan_pulse(T, world.view + 1) . = ..() diff --git a/code/modules/mob/living/simple_animal/hostile/mining_mobs/wolf.dm b/code/modules/mob/living/simple_animal/hostile/mining_mobs/wolf.dm deleted file mode 100644 index 56a8c77e2fd8b6..00000000000000 --- a/code/modules/mob/living/simple_animal/hostile/mining_mobs/wolf.dm +++ /dev/null @@ -1,72 +0,0 @@ -/mob/living/simple_animal/hostile/asteroid/wolf - name = "white wolf" - desc = "A beast that survives by feasting on weaker opponents, they're much stronger with numbers." - icon = 'icons/mob/simple/icemoon/icemoon_monsters.dmi' - icon_state = "whitewolf" - icon_living = "whitewolf" - icon_dead = "whitewolf_dead" - mob_biotypes = MOB_ORGANIC|MOB_BEAST - mouse_opacity = MOUSE_OPACITY_ICON - friendly_verb_continuous = "howls at" - friendly_verb_simple = "howl at" - speak_emote = list("howls") - speed = 5 - move_to_delay = 5 - maxHealth = 130 - health = 130 - obj_damage = 15 - melee_damage_lower = 7.5 - melee_damage_upper = 7.5 - rapid_melee = 2 // every second attack - dodging = TRUE - dodge_prob = 50 - attack_verb_continuous = "bites" - attack_verb_simple = "bite" - attack_sound = 'sound/weapons/bite.ogg' - attack_vis_effect = ATTACK_EFFECT_BITE - vision_range = 7 - aggro_vision_range = 7 - move_force = MOVE_FORCE_WEAK - move_resist = MOVE_FORCE_WEAK - pull_force = MOVE_FORCE_WEAK - butcher_results = list(/obj/item/food/meat/slab = 2, /obj/item/stack/sheet/sinew/wolf = 2, /obj/item/stack/sheet/bone = 2) - loot = list() - crusher_loot = /obj/item/crusher_trophy/wolf_ear - stat_attack = HARD_CRIT - robust_searching = TRUE - footstep_type = FOOTSTEP_MOB_CLAW - /// Message for when the wolf decides to start running away - var/retreat_message_said = FALSE - -/mob/living/simple_animal/hostile/asteroid/wolf/Move(atom/newloc) - if(newloc && newloc.z == z && (islava(newloc) || ischasm(newloc))) - return FALSE - return ..() - -/mob/living/simple_animal/hostile/asteroid/wolf/adjustHealth(amount, updating_health = TRUE, forced = FALSE) - . = ..() - if(stat == DEAD || health > maxHealth*0.1) - retreat_distance = initial(retreat_distance) - return - if(!retreat_message_said && target) - visible_message(span_danger("The [name] tries to flee from [target]!")) - retreat_message_said = TRUE - retreat_distance = 30 - -/mob/living/simple_animal/hostile/asteroid/wolf/Life(seconds_per_tick = SSMOBS_DT, times_fired) - . = ..() - if(!. || target) - return - retreat_message_said = FALSE - -/obj/item/crusher_trophy/wolf_ear - name = "wolf ear" - desc = "It's a wolf ear." - icon_state = "wolf_ear" - denied_type = /obj/item/crusher_trophy/wolf_ear - -/obj/item/crusher_trophy/wolf_ear/effect_desc() - return "mark detonation to gain a slight speed boost temporarily" - -/obj/item/crusher_trophy/wolf_ear/on_mark_detonation(mob/living/target, mob/living/user) - user.apply_status_effect(/datum/status_effect/speed_boost, 1 SECONDS) diff --git a/code/modules/mod/modules/modules_antag.dm b/code/modules/mod/modules/modules_antag.dm index 338f8c0a2f9af0..2c69dac697ca11 100644 --- a/code/modules/mod/modules/modules_antag.dm +++ b/code/modules/mod/modules/modules_antag.dm @@ -384,9 +384,6 @@ possible_disguises = null /obj/item/mod/module/chameleon/on_use() - if(mod.active || mod.activating) - balloon_alert(mod.wearer, "suit active!") - return . = ..() if(!.) return diff --git a/code/modules/procedural_mapping/mapGenerator.dm b/code/modules/procedural_mapping/mapGenerator.dm index 4a79ad4c3059a7..2adbc860194339 100644 --- a/code/modules/procedural_mapping/mapGenerator.dm +++ b/code/modules/procedural_mapping/mapGenerator.dm @@ -14,6 +14,10 @@ buildmode_name = copytext_char("[type]", 20) // / d a t u m / m a p g e n e r a t o r / = 20 characters. initialiseModules() +/// Populate terrain with flora, fauna, features and basically everything that isn't a turf. +/datum/map_generator/proc/populate_terrain(list/turfs, area/generate_in) + return + //Defines the region the map represents, sets map //Returns the map /datum/map_generator/proc/defineRegion(turf/Start, turf/End, replace = 0) diff --git a/code/modules/projectiles/boxes_magazines/_box_magazine.dm b/code/modules/projectiles/boxes_magazines/_box_magazine.dm index d286ad4972167b..2ab54aaa908d33 100644 --- a/code/modules/projectiles/boxes_magazines/_box_magazine.dm +++ b/code/modules/projectiles/boxes_magazines/_box_magazine.dm @@ -43,6 +43,7 @@ bullet_cost = SSmaterials.FindOrCreateMaterialCombo(custom_materials, 0.9 / max_ammo) if(!start_empty) top_off(starting=TRUE) + update_icon_state() /obj/item/ammo_box/add_weapon_description() AddElement(/datum/element/weapon_description, attached_proc = PROC_REF(add_notes_box)) diff --git a/code/modules/projectiles/guns/energy/special.dm b/code/modules/projectiles/guns/energy/special.dm index 5d622cbba70bc4..55b2835beb62cc 100644 --- a/code/modules/projectiles/guns/energy/special.dm +++ b/code/modules/projectiles/guns/energy/special.dm @@ -174,7 +174,7 @@ /obj/item/gun/energy/plasmacutter/use(amount) return (!QDELETED(cell) && cell.use(amount ? amount * charge_weld : charge_weld)) -/obj/item/gun/energy/plasmacutter/use_tool(atom/target, mob/living/user, delay, amount=1, volume=0, datum/callback/extra_checks) +/obj/item/gun/energy/plasmacutter/use_tool(atom/target, mob/living/user, delay, amount=1, volume=0, datum/callback/extra_checks, interaction_key) if(amount) var/mutable_appearance/sparks = mutable_appearance('icons/effects/welding_effect.dmi', "welding_sparks", GASFIRE_LAYER, src, ABOVE_LIGHTING_PLANE) diff --git a/code/modules/research/designs/medical_designs.dm b/code/modules/research/designs/medical_designs.dm index de0ff047415ff8..1c2a89cb62eed3 100644 --- a/code/modules/research/designs/medical_designs.dm +++ b/code/modules/research/designs/medical_designs.dm @@ -170,7 +170,7 @@ name = "Defibrillator" desc = "A portable defibrillator, used for resuscitating recently deceased crew." id = "defibrillator" - build_type = PROTOLATHE | AWAY_LATHE + build_type = PROTOLATHE | AWAY_LATHE | COLONY_FABRICATOR build_path = /obj/item/defibrillator materials = list(/datum/material/iron = 8000, /datum/material/glass = 4000, /datum/material/silver =SHEET_MATERIAL_AMOUNT * 1.5, /datum/material/gold =HALF_SHEET_MATERIAL_AMOUNT * 1.5) category = list( @@ -182,7 +182,7 @@ name = "Defibrillator Wall Mount" desc = "A mounted frame for holding defibrillators, providing easy security." id = "defibmountdefault" - build_type = PROTOLATHE | AWAY_LATHE + build_type = PROTOLATHE | AWAY_LATHE | COLONY_FABRICATOR materials = list(/datum/material/iron =SHEET_MATERIAL_AMOUNT, /datum/material/glass =HALF_SHEET_MATERIAL_AMOUNT) build_path = /obj/item/wallframe/defib_mount category = list( @@ -253,7 +253,7 @@ /datum/design/surgical_drapes name = "Surgical Drapes" id = "surgical_drapes" - build_type = PROTOLATHE | AWAY_LATHE + build_type = PROTOLATHE | AWAY_LATHE | COLONY_FABRICATOR materials = list(/datum/material/plastic =SHEET_MATERIAL_AMOUNT) build_path = /obj/item/surgical_drapes category = list( @@ -266,7 +266,7 @@ desc = "A laser scalpel used for precise cutting." id = "laserscalpel" build_path = /obj/item/scalpel/advanced - build_type = PROTOLATHE | AWAY_LATHE + build_type = PROTOLATHE | AWAY_LATHE | COLONY_FABRICATOR materials = list(/datum/material/iron = 6000, /datum/material/glass =HALF_SHEET_MATERIAL_AMOUNT * 1.5, /datum/material/silver =SHEET_MATERIAL_AMOUNT, /datum/material/gold =HALF_SHEET_MATERIAL_AMOUNT * 1.5, /datum/material/diamond =SMALL_MATERIAL_AMOUNT * 2, /datum/material/titanium = 4000) category = list( RND_CATEGORY_TOOLS + RND_SUBCATEGORY_TOOLS_MEDICAL_ADVANCED @@ -278,7 +278,7 @@ desc = "These pinches can be either used as retractor or hemostat." id = "mechanicalpinches" build_path = /obj/item/retractor/advanced - build_type = PROTOLATHE | AWAY_LATHE + build_type = PROTOLATHE | AWAY_LATHE | COLONY_FABRICATOR materials = list(/datum/material/iron = 12000, /datum/material/glass = 4000, /datum/material/silver = 4000, /datum/material/titanium =SHEET_MATERIAL_AMOUNT * 2.5) category = list( RND_CATEGORY_TOOLS + RND_SUBCATEGORY_TOOLS_MEDICAL_ADVANCED @@ -290,7 +290,7 @@ desc = "Used to mend tissue together. Or drill tissue away." id = "searingtool" build_path = /obj/item/cautery/advanced - build_type = PROTOLATHE | AWAY_LATHE + build_type = PROTOLATHE | AWAY_LATHE | COLONY_FABRICATOR materials = list(/datum/material/iron = 4000, /datum/material/glass =SHEET_MATERIAL_AMOUNT, /datum/material/plasma =SHEET_MATERIAL_AMOUNT, /datum/material/uranium =SHEET_MATERIAL_AMOUNT * 1.5, /datum/material/titanium =SHEET_MATERIAL_AMOUNT * 1.5) category = list( RND_CATEGORY_TOOLS + RND_SUBCATEGORY_TOOLS_MEDICAL_ADVANCED diff --git a/code/modules/research/techweb/all_nodes.dm b/code/modules/research/techweb/all_nodes.dm index 7175b8663b8fe9..ca195c27db5c30 100644 --- a/code/modules/research/techweb/all_nodes.dm +++ b/code/modules/research/techweb/all_nodes.dm @@ -98,6 +98,8 @@ "sec_beanbag_slug", "sec_dart", "buckshot_shell", + "sec_buckshot_shell", + "sec_shotgun_slug", "shotgun_slug", "sec_Islug", "sec_rshot", diff --git a/config/maps.txt b/config/maps.txt index ffd84da7315f7b..79f8b38ad18e24 100644 --- a/config/maps.txt +++ b/config/maps.txt @@ -59,3 +59,12 @@ map blueshift minplayers 75 votable endmap + +map voidraptor + minplayers 40 + votable +endmap + +map ouroboros + votable +endmap diff --git a/dependencies.sh b/dependencies.sh index d672e81ecfa154..e6ad5bf85cad6e 100644 --- a/dependencies.sh +++ b/dependencies.sh @@ -8,7 +8,7 @@ export BYOND_MAJOR=515 export BYOND_MINOR=1637 #rust_g git tag -export RUST_G_VERSION=3.1.0 +export RUST_G_VERSION=3.3.0 #node version export NODE_VERSION_LTS=20.13.0 diff --git a/icons/turf/decals.dmi b/icons/turf/decals.dmi index c4a04a38cb9485727f51f03a9b9a5efb3964d186..0399e4fe8fe9221732680ec58d70871be9aca133 100644 GIT binary patch literal 96019 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 diff --git a/icons/turf/floors.dmi b/icons/turf/floors.dmi index 2052b9fa5c76e531be6fad3182baccf921f0aff9..f9bc29d2f310eb76ca03e618da066ed055bff27f 100644 GIT binary patch literal 408685 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�OHZz$l>Z`2uehlUvJnDnLf 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�$={mn(Q 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 diff --git a/monkestation/code/controllers/subsystem/job.dm b/monkestation/code/controllers/subsystem/job.dm index a9e30e36976b49..cbe28992efdaca 100644 --- a/monkestation/code/controllers/subsystem/job.dm +++ b/monkestation/code/controllers/subsystem/job.dm @@ -71,7 +71,9 @@ if(antag_selection_loops >= 100) log_storyteller("h_r_a failed, antag_selection_loops went over 100") return FALSE - if(!length(candidates)) + if(!length(weighted_candidates)) + if((EVENT_TRACK_ROLESET in SSgamemode.forced_next_events)) + break if(length(SSgamemode.roundstart_antag_minds) < SSgamemode.current_roundstart_event.base_antags) //we got below our min antags, reroll log_storyteller("h_r_a failed, below required candidates for selected roundstart event") return FALSE @@ -167,6 +169,11 @@ //// Attempt to pick a roundstart ruleset to be our desired ruleset /datum/controller/subsystem/job/proc/pick_desired_roundstart() + if((EVENT_TRACK_ROLESET in SSgamemode.forced_next_events) && (SSgamemode.forced_next_events[EVENT_TRACK_ROLESET])) + SSgamemode.current_roundstart_event = SSgamemode.forced_next_events[EVENT_TRACK_ROLESET] + log_storyteller("p_d_r pass, Forced Selected Roleset: [SSgamemode.current_roundstart_event]") + return + var/static/list/valid_rolesets if(!valid_rolesets) valid_rolesets = list() diff --git a/monkestation/code/modules/aesthetics/mapping/tilecoloring.dm b/monkestation/code/modules/aesthetics/mapping/tilecoloring.dm index e9066aeddce194..60b38672c1e379 100644 --- a/monkestation/code/modules/aesthetics/mapping/tilecoloring.dm +++ b/monkestation/code/modules/aesthetics/mapping/tilecoloring.dm @@ -183,5 +183,11 @@ TRIMLINE_SUBTYPE_HELPER(/obj/effect/turf_decal/trimline/dark_purple) TRIMLINE_SUBTYPE_HELPER(/obj/effect/turf_decal/trimline/gray) +/obj/effect/turf_decal/tile/holiday/random // so many colors + name = "colorful tile decal" + color = "#E300FF" //bright pink as default for mapping + +TILE_DECAL_SUBTYPE_HELPER(/obj/effect/turf_decal/tile/holiday/random) + #undef TILE_DECAL_SUBTYPE_HELPER #undef TRIMLINE_SUBTYPE_HELPER diff --git a/monkestation/code/modules/assault_ops/code/access_cards.dm b/monkestation/code/modules/assault_ops/code/access_cards.dm new file mode 100644 index 00000000000000..56ea9086a02a25 --- /dev/null +++ b/monkestation/code/modules/assault_ops/code/access_cards.dm @@ -0,0 +1,14 @@ +// Access cards + +/obj/item/keycard/assault_ops_chemistry + name = "Chemistry Closet Access Card" + desc = "A red keycard with an image of a beaker. Using this will allow you to gain access to the Chemical Manufacturing Plant in Firebase Balthazord." + color = "#9c0e26" + puzzle_id = "assops_chem" + +// Card locked doors + +/obj/machinery/door/puzzle/keycard/assault_ops_chemistry + name = "Chemistry Closet Access" + desc = "Locked. Rumor has it that the key was dropped into the armament storage vault at some point, maybe you can find it in the vendors?" + puzzle_id = "assops_chem" diff --git a/monkestation/code/modules/assault_ops/code/alarms.dm b/monkestation/code/modules/assault_ops/code/alarms.dm new file mode 100644 index 00000000000000..3b3ba9c24a2f43 --- /dev/null +++ b/monkestation/code/modules/assault_ops/code/alarms.dm @@ -0,0 +1,82 @@ +/obj/machinery/base_alarm + name = "base alarm" + desc = "Pull this to alert the guards!" + icon = 'monkestation/code/modules/assault_ops/icons/alarm.dmi' + icon_state = "alarm" + max_integrity = 250 + integrity_failure = 0.4 + use_power = NO_POWER_USE + resistance_flags = FIRE_PROOF + + light_power = 0 + light_outer_range = 4 + light_color = COLOR_VIVID_RED + + //Trick to get the glowing overlay visible from a distance + luminosity = 1 + + /// Is the alarm currently playing? WAIT WHY IS THIS NOT A LOOPING SOUND + var/alarm_playing = FALSE + /// Are we triggered? + var/triggered = FALSE + /// Currently connected alarms. + var/list/obj/machinery/base_alarm/alarms = list() + /// The area that we use to trigger other alarms. + var/area/myarea = null + /// Path to the alarm sound + var/alarm_sound_file = 'monkestation/code/modules/assault_ops/sound/goldeneyealarm.ogg' + /// Cooldown between each sound + var/alarm_cooldown = 65 + +/obj/machinery/base_alarm/Initialize(mapload) + . = ..() + update_icon() + myarea = get_area(src) + for(var/obj/machinery/base_alarm/alarm in myarea) + alarms.Add(alarm) + +/obj/machinery/base_alarm/Destroy() + LAZYREMOVE(alarms, src) + return ..() + +/obj/machinery/base_alarm/attack_hand(mob/user) + add_fingerprint(user) + to_chat(user, span_notice("You trigger [src]!")) + playsound(src, 'sound/machines/pda_button1.ogg', 100) + trigger_alarm() + +/obj/machinery/base_alarm/attack_ai(mob/user) + return attack_hand(user) + +/obj/machinery/base_alarm/attack_robot(mob/user) + return attack_hand(user) + +/obj/machinery/base_alarm/proc/trigger_alarm() + if(triggered) + reset() + else + alarm() + +/obj/machinery/base_alarm/proc/alarm() + for(var/obj/machinery/base_alarm/iterating_alarm in alarms) + iterating_alarm.icon_state = "alarm_on" + iterating_alarm.set_light(l_power = 2) + iterating_alarm.triggered = TRUE + if(!iterating_alarm.alarm_playing) + iterating_alarm.alarm_playing = TRUE + playsound(iterating_alarm, alarm_sound_file, 30) + addtimer(CALLBACK(iterating_alarm, PROC_REF(alarm_sound)), alarm_cooldown) + +/obj/machinery/base_alarm/proc/alarm_sound() + if(!triggered) + alarm_playing = FALSE + else + playsound(src, alarm_sound_file, 30) + addtimer(CALLBACK(src, PROC_REF(alarm_sound)), alarm_cooldown) + + +/obj/machinery/base_alarm/proc/reset(mob/user) + for(var/obj/machinery/base_alarm/iterating_alarm in alarms) + iterating_alarm.icon_state = "alarm" + iterating_alarm.set_light(l_power = 0) + iterating_alarm.triggered = FALSE diff --git a/monkestation/code/modules/assault_ops/code/ammo_box.dm b/monkestation/code/modules/assault_ops/code/ammo_box.dm new file mode 100644 index 00000000000000..fd1ea60e5af89f --- /dev/null +++ b/monkestation/code/modules/assault_ops/code/ammo_box.dm @@ -0,0 +1,7 @@ +/obj/item/storage/box/ammo_box + name = "ammo box" + desc = "A box filled with ammunition." + icon = 'monkestation/code/modules/microfusion/icons/microfusion_cells.dmi' + icon_state = "microfusion_box" + illustration = null + layer = 2.9 diff --git a/monkestation/code/modules/assault_ops/code/antagonist.dm b/monkestation/code/modules/assault_ops/code/antagonist.dm new file mode 100644 index 00000000000000..8aab82e62d78c6 --- /dev/null +++ b/monkestation/code/modules/assault_ops/code/antagonist.dm @@ -0,0 +1,288 @@ +/** + * ASSAULT OPERATIVE ANTAG DATUM + */ + +/datum/antagonist/assault_operative + name = ROLE_ASSAULT_OPERATIVE + job_rank = ROLE_ASSAULT_OPERATIVE + roundend_category = "assault operatives" + antagpanel_category = "Assault Operatives" + antag_hud_name = "synd" + antag_moodlet = /datum/mood_event/focused + show_to_ghosts = TRUE + hijack_speed = 2 + + preview_outfit = /datum/outfit/assaultops_preview + /// In the preview icon, the operatives who are behind the leader + var/preview_outfit_behind = /datum/outfit/assaultops_preview/background + + ui_name = "AntagInfoAssaultops" + /// The default outfit given BEFORE they choose their equipment. + var/assault_operative_default_outfit = /datum/outfit/assaultops + /// The team linked to this antagonist datum. + var/datum/team/assault_operatives/assault_team + /// Should we move the operative to a designated spawn point? + var/send_to_spawnpoint = TRUE + //If not assigned a team by default ops will try to join existing ones, set this to TRUE to always create new team. + var/always_new_team = FALSE + var/spawn_text = "Your mission is to assault NTSS13 and get all of the GoldenEye keys that you can from the heads of staff that reside there. \ + Use your pinpointer to locate these after you have extracted the GoldenEye key from the head of staff. It will be sent in by droppod. \ + You must then upload the key to the GoldenEye upload terminal on this GoldenEye station. After you have completed your mission, \ + The GoldenEye defence network will fall, and we will gain access to Nanotrasen's military systems. Good luck agent." + /// A link to our internal pinpointer. + var/datum/status_effect/goldeneye_pinpointer/pinpointer + +/datum/antagonist/assault_operative/Destroy() + QDEL_NULL(pinpointer) + return ..() + +/datum/antagonist/assault_operative/apply_innate_effects(mob/living/mob_override) + add_team_hud(mob_override || owner.current, /datum/antagonist/assault_operative) + +/datum/antagonist/assault_operative/get_team() + return assault_team + +/datum/antagonist/assault_operative/greet() + owner.current.playsound_local(get_turf(owner.current), 'monkestation/code/modules/assault_ops/sound/assault_operatives_greet.ogg', 30, 0, use_reverb = FALSE) + to_chat(owner, span_big("You are an assault operative!")) + to_chat(owner, span_red(spawn_text)) + owner.announce_objectives() + +/datum/antagonist/assault_operative/on_gain() + . = ..() + equip_operative() + forge_objectives() + if(send_to_spawnpoint) + move_to_spawnpoint() + give_alias() + +/datum/antagonist/assault_operative/create_team(datum/team/assault_operatives/new_team) + if(!new_team) + if(!always_new_team) + for(var/datum/antagonist/assault_operative/assault_operative in GLOB.antagonists) + if(!assault_operative.owner) + stack_trace("Antagonist datum without owner in GLOB.antagonists: [assault_operative]") + continue + if(assault_operative.assault_team) + assault_team = assault_operative.assault_team + return + assault_team = new /datum/team/assault_operatives + assault_team.add_member(owner) + assault_team.update_objectives() + return + if(!istype(new_team)) + stack_trace("Wrong team type passed to [type] initialization.") + assault_team = new_team + assault_team.add_member(owner) + +// UI systems +/datum/antagonist/assault_operative/ui_data(mob/user) + var/list/data = list() + + data["required_keys"] = SSgoldeneye.required_keys + + data["uploaded_keys"] = SSgoldeneye.uploaded_keys + + data["available_targets"] = get_available_targets() + data["extracted_targets"] = get_extracted_targets() + + data["goldeneye_keys"] = get_goldeneye_keys() + + data["objectives"] = get_objectives() + return data + +/datum/antagonist/assault_operative/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state) + . = ..() + if(.) + return + switch(action) + if("track_key") + var/obj/item/goldeneye_key/selected_key = locate(params["key_ref"]) in SSgoldeneye.goldeneye_keys + if(!selected_key) + return + pinpointer.set_target(selected_key) + +/datum/antagonist/assault_operative/proc/get_available_targets() + var/list/available_targets_data = list() + for(var/datum/mind/iterating_mind in SSjob.get_all_heads()) + if(iterating_mind in SSgoldeneye.goldeneye_extracted_minds) + continue + available_targets_data += list(list( + "name" = iterating_mind.name, + "job" = iterating_mind.assigned_role.title, + )) + return available_targets_data + +/datum/antagonist/assault_operative/proc/get_extracted_targets() + var/list/extracted_targets_data = list() + for(var/datum/mind/iterating_mind in SSgoldeneye.goldeneye_extracted_minds) + extracted_targets_data += list(list( + "name" = iterating_mind.name, + "job" = iterating_mind.assigned_role.title, + )) + return extracted_targets_data + +/datum/antagonist/assault_operative/proc/get_goldeneye_keys() + var/list/goldeneye_keys = list() + for(var/obj/item/goldeneye_key/iterating_key in SSgoldeneye.goldeneye_keys) + var/turf/location = get_turf(iterating_key) + goldeneye_keys += list(list( + "coord_x" = location.x, + "coord_y" = location.y, + "coord_z" = location.z, + "selected" = pinpointer?.target == iterating_key, + "name" = iterating_key.goldeneye_tag, + "ref" = REF(iterating_key), + )) + return goldeneye_keys + + +/datum/antagonist/assault_operative/forge_objectives() + if(assault_team) + objectives |= assault_team.objectives + +/datum/antagonist/assault_operative/proc/give_alias() + var/chosen_name = sanitize_text(tgui_input_text(owner.current, "Please input your desired name!", "Name", "Randy Random")) + if(!chosen_name) + if(ishuman(owner.current)) + var/mob/living/carbon/human/human = owner.current + owner.current.real_name = human.dna?.species.random_name(human.gender) + return + owner.current.real_name = chosen_name + +/datum/antagonist/assault_operative/proc/equip_operative() + if(!ishuman(owner.current)) + return + + var/mob/living/carbon/human/human_target = owner.current + + if(human_target.dna.species.id == "plasmaman" ) + human_target.set_species(/datum/species/human) + to_chat(human_target, span_userdanger("You are now a human!")) + + for(var/obj/item/item in human_target.get_equipped_items(TRUE)) + qdel(item) + + var/obj/item/organ/internal/brain/human_brain = human_target.get_organ_slot(BRAIN) + human_brain.destroy_all_skillchips() // get rid of skillchips to prevent runtimes + human_target.equipOutfit(assault_operative_default_outfit) + human_target.regenerate_icons() + + pinpointer = human_target.apply_status_effect(/datum/status_effect/goldeneye_pinpointer) + + return TRUE + +/datum/antagonist/assault_operative/proc/move_to_spawnpoint() + var/team_number = 1 + if(assault_team) + team_number = assault_team.members.Find(owner) + owner.current.forceMove(GLOB.assault_operative_start[((team_number - 1) % GLOB.assault_operative_start.len) + 1]) + +/datum/antagonist/assault_operative/get_preview_icon() + if (!preview_outfit) + return null + + var/icon/final_icon = render_preview_outfit(preview_outfit) + + if (!isnull(preview_outfit_behind)) + var/icon/teammate = render_preview_outfit(preview_outfit_behind) + teammate.Blend(rgb(128, 128, 128, 128), ICON_MULTIPLY) + + final_icon.Blend(teammate, ICON_UNDERLAY, -world.icon_size / 4, 0) + final_icon.Blend(teammate, ICON_UNDERLAY, world.icon_size / 4, 0) + + var/icon/disky = icon('monkestation/code/modules/assault_ops/icons/goldeneye.dmi', "goldeneye_key") + disky.Shift(SOUTH, 12) + final_icon.Blend(disky, ICON_OVERLAY) + + return finish_preview_icon(final_icon) + +/** + * ASSAULT OPERATIVE TEAM DATUM + */ + +/datum/team/assault_operatives + /// Our core objective, it's obviously goldeneye. + var/core_objective = /datum/objective/goldeneye + +/datum/team/assault_operatives/proc/update_objectives() + if(core_objective) + var/datum/objective/new_objective = new core_objective + new_objective.team = src + objectives += new_objective + +/datum/team/assault_operatives/proc/operatives_dead() + var/total_operatives = LAZYLEN(members) + var/alive_operatives = 0 + for(var/datum/mind/iterating_mind in members) + if(ishuman(iterating_mind.current) && (iterating_mind.current.stat != DEAD)) + alive_operatives++ + if(!alive_operatives) + return ASSAULTOPS_ALL_DEAD + if(alive_operatives >= total_operatives) + return ASSAULTOPS_ALL_ALIVE + return ASSAULTOPS_PARTLY_DEAD + + +/datum/team/assault_operatives/roundend_report() + var/list/parts = list() + parts += "Assault Operatives:" + + switch(get_result()) + if(ASSAULT_RESULT_WIN) + parts += span_greentext("Assault Operatives Major Victory!") + parts += "The Assault Operatives have successfully subverted and activated GoldenEye, and they all survived!" + if(ASSAULT_RESULT_PARTIAL_WIN) + parts += span_greentext("Assault Operatives Minor Victory!") + parts += "The Assault Operatives have successfully subverted and activated GoldenEye, but only some survived!" + if(ASSAULT_RESULT_HEARTY_WIN) + parts += span_greentext("Assault Operatives Hearty Victory!") + parts += "The Assault Operatives have successfully subverted and activated GoldenEye, but they all died!" + if(ASSAULT_RESULT_LOSS) + parts += span_redtext("Crew Victory!") + parts += "The Research Staff of [station_name()] have killed all of the assault operatives and stopped them activating GoldenEye!" + if(ASSAULT_RESULT_STALEMATE) + parts += "Stalemate!" + parts += "The assault operatives have failed to activate GoldenEye and are still alive!" + else + parts += "Neutral Victory" + parts += "Mission aborted!" + parts += span_redtext("GoldenEye keys uploaded: [SSgoldeneye.uploaded_keys]/[SSgoldeneye.required_keys]") + + var/text = "
The assault operatives were:" + text += printplayerlist(members) + text += "
" + + parts += text + + return "
[parts.Join("
")]
" + +/datum/team/assault_operatives/proc/get_result() + var/goldeneye_activated = SSgoldeneye.goldeneye_activated + var/operatives_dead_status = operatives_dead() + + if(goldeneye_activated && operatives_dead_status == ASSAULTOPS_ALL_ALIVE) + return ASSAULT_RESULT_WIN + else if(goldeneye_activated && operatives_dead_status == ASSAULTOPS_PARTLY_DEAD) + return ASSAULT_RESULT_PARTIAL_WIN + else if(goldeneye_activated && operatives_dead_status == ASSAULTOPS_ALL_DEAD) + return ASSAULT_RESULT_HEARTY_WIN + else if(!goldeneye_activated && operatives_dead_status == ASSAULTOPS_ALL_DEAD) + return ASSAULT_RESULT_LOSS + else if(!goldeneye_activated && operatives_dead_status) + return ASSAULT_RESULT_STALEMATE + +/** + * ASSAULT OPERATIVE JOB TYPE + */ +/datum/job/assault_operative + title = ROLE_ASSAULT_OPERATIVE + + +/datum/job/assault_operative/get_roundstart_spawn_point() + return pick(GLOB.assault_operative_start) + +/datum/job/assault_operative/get_latejoin_spawn_point() + return pick(GLOB.assault_operative_start) + + diff --git a/monkestation/code/modules/assault_ops/code/areas.dm b/monkestation/code/modules/assault_ops/code/areas.dm new file mode 100644 index 00000000000000..df2aacfdd99874 --- /dev/null +++ b/monkestation/code/modules/assault_ops/code/areas.dm @@ -0,0 +1,65 @@ +/area/shuttle/syndicate/cruiser + name = "Syndicate Cruiser" + requires_power = FALSE + +/area/shuttle/syndicate/cruiser/bridge + name = "Syndicate Cruiser Control" + color = COLOR_BLUE + +/area/shuttle/syndicate/cruiser/medical + name = "Syndicate Cruiser Medbay" + color = COLOR_LIGHT_PINK + +/area/shuttle/syndicate/cruiser/armory + name = "Syndicate Cruiser Armory" + color = COLOR_ORANGE + +/area/shuttle/syndicate/cruiser/eva + name = "Syndicate Cruiser EVA" + color = COLOR_GREEN + +/area/shuttle/syndicate/cruiser/hallway + +/area/shuttle/syndicate/cruiser/airlock + name = "Syndicate Cruiser Airlock" + color = COLOR_RED + +/area/shuttle/syndicate/cruiser/brig + name = "Syndicate Cruiser Brig" + color = COLOR_BLACK + +/area/shuttle/syndicate/cruiser/engineering + name = "Syndicate Cruiser Engineering" + color = COLOR_YELLOW + +/area/shuttle/syndicate/frigate + name = "Syndicate Frigate" + +/area/cruiser_dock + name = "GoldenEye Satellite" + icon_state = "syndie-ship" + requires_power = FALSE + has_gravity = STANDARD_GRAVITY + area_flags = VALID_TERRITORY | UNIQUE_AREA | NOTELEPORT + ambientsounds = AMBIENCE_GENERIC + +/area/cruiser_dock/brig + name = "Cruiser Dock Prison" + color = COLOR_BLUE + ambientsounds = AMBIENCE_CREEPY + +/obj/machinery/door/poddoor/shutters + //smoothing_groups = SMOOTH_GROUP_SHUTTERS + +/turf/closed/wall/r_wall/syndicate/cruiser + canSmoothWith = SMOOTH_GROUP_SHUTTLE_PARTS + SMOOTH_GROUP_AIRLOCK + SMOOTH_GROUP_PLASTITANIUM_WALLS + SMOOTH_GROUP_SYNDICATE_WALLS + +/obj/effect/landmark/start/assaultop + name = "assaultop" + icon = 'icons/effects/landmarks_static.dmi' + icon_state = "snukeop_spawn" + delete_after_roundstart = FALSE + +/obj/effect/landmark/start/assaultop/Initialize(mapload) + . = ..() + GLOB.assault_operative_start += get_turf(src) diff --git a/monkestation/code/modules/assault_ops/code/armaments/_base.dm b/monkestation/code/modules/assault_ops/code/armaments/_base.dm new file mode 100644 index 00000000000000..f1f2d76e682732 --- /dev/null +++ b/monkestation/code/modules/assault_ops/code/armaments/_base.dm @@ -0,0 +1,193 @@ +#define OPS_SUBCATEGORY_RIFLE "Assault Rifles" +#define OPS_SUBCATEGORY_RIFLE_AMMO "Specialty Assault Rifle Ammo" + +#define OPS_SUBCATEGORY_SMG "Submachine Guns" +#define OPS_SUBCATEGORY_SMG_AMMO "Speciality Submachine Gun Ammo" + +#define OPS_SUBCATEGORY_SHOTGUN "Shotguns" +#define OPS_SUBCATEGORY_SHOTGUN_AMMO "Speciality Shotgun Ammo" + +#define OPS_SUBCATEGORY_SNIPER "Grenade Launchers" +#define OPS_SUBCATEGORY_SNIPER_AMMO "Speciality Grenade Launcher Ammo" + +/datum/armament_entry/assault_operatives/primary + category = "Long Arms" + category_item_limit = 6 + mags_to_spawn = 3 + cost = 10 + +/datum/armament_entry/assault_operatives/primary/rifle + subcategory = OPS_SUBCATEGORY_RIFLE + +/datum/armament_entry/assault_operatives/primary/rifle/assault_ops_rifle + item_type = /obj/item/gun/ballistic/automatic/sol_rifle/evil + +/datum/armament_entry/assault_operatives/primary/rifle_ammo + subcategory = OPS_SUBCATEGORY_RIFLE_AMMO + max_purchase = 10 + cost = 1 + +/datum/armament_entry/assault_operatives/primary/rifle_ammo/standard + item_type = /obj/item/ammo_box/magazine/c40sol_rifle/starts_empty + cost = 0 + +/datum/armament_entry/assault_operatives/primary/rifle_ammo/drum + item_type = /obj/item/ammo_box/magazine/c40sol_rifle/drum/starts_empty + cost = 0 + +/datum/armament_entry/assault_operatives/primary/rifle_ammo/c40sol + item_type = /obj/item/ammo_box/c40sol + +/datum/armament_entry/assault_operatives/primary/rifle_ammo/c40sol_disabler + item_type = /obj/item/ammo_box/c40sol/fragmentation + +/datum/armament_entry/assault_operatives/primary/rifle_ammo/c40sol_pierce + item_type = /obj/item/ammo_box/c40sol/pierce + +/datum/armament_entry/assault_operatives/primary/rifle_ammo/c40sol_incendiary + item_type = /obj/item/ammo_box/c40sol/incendiary + + +/datum/armament_entry/assault_operatives/primary/submachinegun + subcategory = OPS_SUBCATEGORY_SMG + +/datum/armament_entry/assault_operatives/primary/submachinegun/assault_ops_smg + item_type = /obj/item/gun/ballistic/automatic/sol_smg/evil + +/datum/armament_entry/assault_operatives/primary/submachinegun_ammo + subcategory = OPS_SUBCATEGORY_SMG_AMMO + max_purchase = 10 + cost = 1 + +/datum/armament_entry/assault_operatives/primary/submachinegun_ammo/standard + item_type = /obj/item/ammo_box/magazine/c35sol_pistol/starts_empty + cost = 0 + +/datum/armament_entry/assault_operatives/primary/submachinegun_ammo/extended + item_type = /obj/item/ammo_box/magazine/c35sol_pistol/stendo/starts_empty + cost = 0 + +/datum/armament_entry/assault_operatives/primary/submachinegun_ammo/c35sol + item_type = /obj/item/ammo_box/c35sol + +/datum/armament_entry/assault_operatives/primary/submachinegun_ammo/c35sol_disabler + item_type = /obj/item/ammo_box/c35sol/incapacitator + +/datum/armament_entry/assault_operatives/primary/submachinegun_ammo/c35sol_pierce + item_type = /obj/item/ammo_box/c35sol/ripper + +/datum/armament_entry/assault_operatives/primary/shotgun + subcategory = OPS_SUBCATEGORY_SHOTGUN + +/datum/armament_entry/assault_operatives/primary/shotgun/assault_ops_shotgun + item_type = /obj/item/gun/ballistic/shotgun/riot/sol/evil + +/datum/armament_entry/assault_operatives/primary/shotgun_ammo + subcategory = OPS_SUBCATEGORY_SHOTGUN_AMMO + max_purchase = 10 + cost = 1 + +/datum/armament_entry/assault_operatives/primary/shotgun_ammo/rubber + item_type = /obj/item/ammo_box/advanced/s12gauge/rubber + +/datum/armament_entry/assault_operatives/primary/shotgun_ammo/flechette + item_type = /obj/item/ammo_box/advanced/s12gauge/flechette + +/datum/armament_entry/assault_operatives/primary/shotgun_ammo/magnum + item_type = /obj/item/ammo_box/advanced/s12gauge/magnum + +/datum/armament_entry/assault_operatives/primary/shotgun_ammo/beehive + item_type = /obj/item/ammo_box/advanced/s12gauge/beehive + +/datum/armament_entry/assault_operatives/primary/shotgun_ammo/incendiary + item_type = /obj/item/ammo_box/advanced/s12gauge/incendiary + +/datum/armament_entry/assault_operatives/primary/shotgun_ammo/antitide + item_type = /obj/item/ammo_box/advanced/s12gauge/antitide + +/datum/armament_entry/assault_operatives/primary/sniper + subcategory = OPS_SUBCATEGORY_SNIPER + +/datum/armament_entry/assault_operatives/primary/sniper/assault_ops_gl + item_type = /obj/item/gun/ballistic/automatic/sol_grenade_launcher/evil + +/datum/armament_entry/assault_operatives/primary/sniper_ammo + subcategory = OPS_SUBCATEGORY_SNIPER_AMMO + max_purchase = 10 + cost = 1 + +/datum/armament_entry/assault_operatives/primary/sniper_ammo/standard + item_type = /obj/item/ammo_box/magazine/c980_grenade/starts_empty + cost = 0 + +/datum/armament_entry/assault_operatives/primary/sniper_ammo/drum + item_type = /obj/item/ammo_box/magazine/c980_grenade/drum/starts_empty + cost = 0 + +/datum/armament_entry/assault_operatives/primary/sniper_ammo/practice + item_type = /obj/item/ammo_box/c980grenade + +/datum/armament_entry/assault_operatives/primary/sniper_ammo/smoke + item_type = /obj/item/ammo_box/c980grenade/smoke + +/datum/armament_entry/assault_operatives/primary/sniper_ammo/shrapnel + item_type = /obj/item/ammo_box/c980grenade/shrapnel + +/datum/armament_entry/assault_operatives/primary/sniper_ammo/phosphor + item_type = /obj/item/ammo_box/c980grenade/shrapnel/phosphor + +/datum/armament_entry/assault_operatives/primary/sniper_ammo/riot + item_type = /obj/item/ammo_box/c980grenade/riot + +#undef OPS_SUBCATEGORY_RIFLE +#undef OPS_SUBCATEGORY_RIFLE_AMMO + +#undef OPS_SUBCATEGORY_SMG +#undef OPS_SUBCATEGORY_SMG_AMMO + +#undef OPS_SUBCATEGORY_SHOTGUN +#undef OPS_SUBCATEGORY_SHOTGUN_AMMO + +#undef OPS_SUBCATEGORY_SNIPER +#undef OPS_SUBCATEGORY_SNIPER_AMMO + +#define OPS_SUBCATEGORY_LETHAL_SIDE "Lethal" +#define OPS_SUBCATEGORY_NONLETHAL_SIDE "Non-Lethal" +#define OPS_SUBCATEGORY_MARTIAL_SIDE "Martial Arts" + +/datum/armament_entry/assault_operatives/secondary + category = "Side Arms" + category_item_limit = 3 + mags_to_spawn = 3 + cost = 3 + +/datum/armament_entry/assault_operatives/secondary/lethal + subcategory = OPS_SUBCATEGORY_LETHAL_SIDE + +/datum/armament_entry/assault_operatives/secondary/lethal/pistol + item_type = /obj/item/gun/ballistic/automatic/pistol/sol/evil + +/datum/armament_entry/assault_operatives/secondary/lethal/energy_sword + item_type = /obj/item/melee/energy/sword/saber + +/datum/armament_entry/assault_operatives/secondary/nonlethal + subcategory = OPS_SUBCATEGORY_NONLETHAL_SIDE + +/datum/armament_entry/assault_operatives/secondary/nonlethal/taze_me_bro + item_type = /obj/item/gun/energy/e_gun/advtaser + +/datum/armament_entry/assault_operatives/secondary/nonlethal/baton + item_type = /obj/item/melee/baton/telescopic + +/datum/armament_entry/assault_operatives/secondary/martial + subcategory = OPS_SUBCATEGORY_MARTIAL_SIDE + +/datum/armament_entry/assault_operatives/secondary/martial/krav_gloves + item_type = /obj/item/clothing/gloves/krav_maga/combatglovesplus + +/datum/armament_entry/assault_operatives/secondary/martial/cqc + item_type = /obj/item/book/granter/martial/cqc + +#undef OPS_SUBCATEGORY_LETHAL_SIDE +#undef OPS_SUBCATEGORY_NONLETHAL_SIDE +#undef OPS_SUBCATEGORY_MARTIAL_SIDE diff --git a/monkestation/code/modules/assault_ops/code/armaments/explosives.dm b/monkestation/code/modules/assault_ops/code/armaments/explosives.dm new file mode 100644 index 00000000000000..7763e5af37467f --- /dev/null +++ b/monkestation/code/modules/assault_ops/code/armaments/explosives.dm @@ -0,0 +1,40 @@ +/datum/armament_entry/assault_operatives/explosives + category = "Explosive Devices" + category_item_limit = 4 + max_purchase = 4 + +/datum/armament_entry/assault_operatives/explosives/minibomb + item_type = /obj/item/grenade/syndieminibomb + cost = 3 + +/datum/armament_entry/assault_operatives/explosives/bioterror + item_type = /obj/item/grenade/chem_grenade/bioterrorfoam + cost = 1 + +/datum/armament_entry/assault_operatives/explosives/minibomb + item_type = /obj/item/grenade/syndieminibomb + cost = 3 + +/datum/armament_entry/assault_operatives/explosives/emp_grenade + item_type = /obj/item/grenade/empgrenade + cost = 2 + +/datum/armament_entry/assault_operatives/explosives/stingbang + item_type = /obj/item/grenade/stingbang + cost = 2 + +/datum/armament_entry/assault_operatives/explosives/teargas + item_type = /obj/item/grenade/chem_grenade/teargas + cost = 1 + +/datum/armament_entry/assault_operatives/explosives/flashbang + item_type = /obj/item/grenade/flashbang + cost = 1 + +/datum/armament_entry/assault_operatives/explosives/c4 + item_type = /obj/item/grenade/c4 + cost = 1 + +/datum/armament_entry/assault_operatives/explosives/x4 + item_type = /obj/item/grenade/c4/x4 + cost = 2 diff --git a/monkestation/code/modules/assault_ops/code/armaments/implants.dm b/monkestation/code/modules/assault_ops/code/armaments/implants.dm new file mode 100644 index 00000000000000..06e2e4a8f74675 --- /dev/null +++ b/monkestation/code/modules/assault_ops/code/armaments/implants.dm @@ -0,0 +1,48 @@ +/datum/armament_entry/assault_operatives/implants + category = "Cybernetic Implants" + category_item_limit = 3 + +/datum/armament_entry/assault_operatives/implants/deathrattle + name = "Deathrattle Implant Kit" + description = "A collection of implants (and one reusable implanter) that should be injected into the team. When one of the team \ + dies, all other implant holders receive a mental message informing them of their teammates' name \ + and the location of their death. Unlike most implants, these are designed to be implanted \ + in any creature, biological or mechanical." + item_type = /obj/item/storage/box/syndie_kit/imp_deathrattle + cost = 1 + +/datum/armament_entry/assault_operatives/implants/microbomb + name = "Microbomb Implant" + description = "A small bomb implanted into the body. It can be activated manually, or automatically activates on death. WARNING: Permenantly destroys your body and everything you might be carrying." + item_type = /obj/item/implanter/explosive + cost = 2 + +/datum/armament_entry/assault_operatives/implants/storage + name = "Storage Implant" + description = "Implanted into the body and activated at will, this covert implant will open a small pocket of bluespace capable of holding two regular sized items within." + item_type = /obj/item/implanter/storage + cost = 2 + +/datum/armament_entry/assault_operatives/implants/radio + name = "Radio Implant" + description = "Implanted into the body and activated at will, this covert implant will allow you to speak over the radio without the need of a headset." + item_type = /obj/item/implanter/radio/syndicate + cost = 1 + +/datum/armament_entry/assault_operatives/implants/freedom + name = "Freedom Implant" + description = "Releases the user from common restraints like handcuffs and legcuffs. Comes with four charges." + item_type = /obj/item/storage/box/syndie_kit/imp_freedom + cost = 3 + +/datum/armament_entry/assault_operatives/implants/thermal + name = "Thermal Vision Implant" + description = "These cybernetic eyes will give you thermal vision." + item_type = /obj/item/autosurgeon/syndicate/thermal_eyes + cost = 5 + +/datum/armament_entry/assault_operatives/implants/nodrop + name = "Anti-Drop Implant" + description = "When activated forces your hand muscles to tightly grip the object you are holding, preventing you from dropping it involuntarily." + item_type = /obj/item/autosurgeon/syndicate/nodrop + cost = 5 diff --git a/monkestation/code/modules/assault_ops/code/armaments/medical.dm b/monkestation/code/modules/assault_ops/code/armaments/medical.dm new file mode 100644 index 00000000000000..76d40631a5f0a8 --- /dev/null +++ b/monkestation/code/modules/assault_ops/code/armaments/medical.dm @@ -0,0 +1,53 @@ +/datum/armament_entry/assault_operatives/medical + category = "First-Aid Supplies" + category_item_limit = 4 + +/datum/armament_entry/assault_operatives/medical/medkit + subcategory = "Medical Kits" + +/datum/armament_entry/assault_operatives/medical/medkit/basic + item_type = /obj/item/storage/medkit/regular + cost = 1 + +/datum/armament_entry/assault_operatives/medical/medkit/advanced + item_type = /obj/item/storage/medkit/advanced + cost = 2 + +/datum/armament_entry/assault_operatives/medical/medkit/tactical + item_type = /obj/item/storage/medkit/tactical + cost = 4 + +/datum/armament_entry/assault_operatives/medical/injector + subcategory = "Chemical Autoinjectors" + +/datum/armament_entry/assault_operatives/medical/injector/bloodloss + item_type = /obj/item/reagent_containers/hypospray/medipen/blood_loss + cost = 1 + +/datum/armament_entry/assault_operatives/medical/injector/atropine + item_type = /obj/item/reagent_containers/hypospray/medipen/atropine + cost = 2 + +/datum/armament_entry/assault_operatives/medical/injector/salacid + item_type = /obj/item/reagent_containers/hypospray/medipen/salacid + cost = 1 + +/datum/armament_entry/assault_operatives/medical/injector/oxandrolone + item_type = /obj/item/reagent_containers/hypospray/medipen/oxandrolone + cost = 1 + +/datum/armament_entry/assault_operatives/medical/injector/stimulant + item_type = /obj/item/reagent_containers/hypospray/medipen/stimulants + cost = 2 + +/datum/armament_entry/assault_operatives/medical/injector/stimulant_hypo + item_type = /obj/item/reagent_containers/hypospray/combat + cost = 3 + +/datum/armament_entry/assault_operatives/medical/injector/bag + item_type = /obj/item/storage/pouch/medpens + cost = 5 + +/datum/armament_entry/assault_operatives/medical/injector/box + item_type = /obj/item/storage/box/nri_pens + cost = 10 diff --git a/monkestation/code/modules/assault_ops/code/armaments/mod_modules.dm b/monkestation/code/modules/assault_ops/code/armaments/mod_modules.dm new file mode 100644 index 00000000000000..49a3b58b5f1ef1 --- /dev/null +++ b/monkestation/code/modules/assault_ops/code/armaments/mod_modules.dm @@ -0,0 +1,35 @@ +/datum/armament_entry/assault_operatives/modules + category = "MOD Modules" + category_item_limit = 3 + +/datum/armament_entry/assault_operatives/modules/noslip + item_type = /obj/item/mod/module/noslip + cost = 2 + +/datum/armament_entry/assault_operatives/modules/thermal + item_type = /obj/item/mod/module/visor/thermal + cost = 5 + +/datum/armament_entry/assault_operatives/modules/carry + item_type = /obj/item/mod/module/quick_carry/advanced + cost = 2 + +/datum/armament_entry/assault_operatives/modules/mirage + item_type = /obj/item/mod/module/dispenser/mirage + cost = 2 + +/datum/armament_entry/assault_operatives/modules/criminalcapture + item_type = /obj/item/mod/module/criminalcapture + cost = 1 + +/datum/armament_entry/assault_operatives/modules/adrenal_boost + item_type = /obj/item/mod/module/adrenaline_boost + cost = 3 + +/datum/armament_entry/assault_operatives/modules/sonar + item_type = /obj/item/mod/module/active_sonar + cost = 3 + +/datum/armament_entry/assault_operatives/modules/jetpack + item_type = /obj/item/mod/module/jetpack/advanced + cost = 5 diff --git a/monkestation/code/modules/assault_ops/code/armaments/utility.dm b/monkestation/code/modules/assault_ops/code/armaments/utility.dm new file mode 100644 index 00000000000000..7fe436452a22d5 --- /dev/null +++ b/monkestation/code/modules/assault_ops/code/armaments/utility.dm @@ -0,0 +1,70 @@ +/datum/armament_entry/assault_operatives/utility + category = "Utility Items" + category_item_limit = 8 + +/datum/armament_entry/assault_operatives/utility/suppressor + item_type = /obj/item/suppressor + cost = 1 + +/datum/armament_entry/assault_operatives/utility/thermals + item_type = /obj/item/clothing/glasses/thermal/syndi + cost = 4 + +/datum/armament_entry/assault_operatives/utility/chem_keycard + item_type = /obj/item/keycard/assault_ops_chemistry + cost = 3 + +/datum/armament_entry/assault_operatives/utility/doorjack + item_type = /obj/item/card/emag/doorjack + name = "Doorjack" + description = "Hacks open doors permanently." + cost = 3 + +/datum/armament_entry/assault_operatives/utility/emag + item_type = /obj/item/card/emag + name = "Cryptographic Sequencer" + description = "Subverts electronics." + cost = 3 + +/datum/armament_entry/assault_operatives/utility/pouch + item_type = /obj/item/storage/pouch/ammo + cost = 1 + +/datum/armament_entry/assault_operatives/utility/noslip + name = "Chameleon No-Slips" + item_type = /obj/item/clothing/shoes/chameleon/noslip + description = "No-slip chameleon shoes, for when you plan on running through hell and back." + cost = 2 + +/datum/armament_entry/assault_operatives/utility/cham_kit + name = "Chameleon Kit" + item_type = /obj/item/storage/box/syndie_kit/chameleon + description = "A full set of clothing that is capable of taking the appearance of any other type of clothing, perfect for hiding in plain sight." + cost = 2 + +/datum/armament_entry/assault_operatives/utility/syndiejaws + name = "Syndicate Jaws of Life" + item_type = /obj/item/crowbar/power/syndicate + description = "Based on a Nanotrasen model, this powerful tool can be used as both a crowbar and a pair of wirecutters. \ + In its crowbar configuration, it can be used to force open airlocks. Very useful for entering the station or its departments." + cost = 3 + +/datum/armament_entry/assault_operatives/utility/jammer + name = "Radio Jammer" + description = "When activated, this cell powered device will block all outgoing radio communication." + item_type = /obj/item/jammer + cost = 4 + +/datum/armament_entry/assault_operatives/utility/codespeak + item_type = /obj/item/language_manual/codespeak_manual/unlimited + cost = 1 + +/datum/armament_entry/assault_operatives/utility/binoculars + item_type = /obj/item/binoculars + cost = 1 + +/datum/armament_entry/assault_operatives/utility/emp_flashlight + name = "EMP Flashlight" + description = "Flash this at someone to hit them with an electromagnetic pulse." + item_type = /obj/item/flashlight/emp + cost = 2 diff --git a/monkestation/code/modules/assault_ops/code/assault_op_vendor.dm b/monkestation/code/modules/assault_ops/code/assault_op_vendor.dm new file mode 100644 index 00000000000000..10b37fa61dc664 --- /dev/null +++ b/monkestation/code/modules/assault_ops/code/assault_op_vendor.dm @@ -0,0 +1,29 @@ +// VENDOR +/obj/machinery/armament_station/assault_operatives + name = "Military Grade Armament Station" + + // required_access = list(ACCESS_SYNDICATE) TESTING + + armament_type = /datum/armament_entry/assault_operatives + +// POINTS CARDS + +/obj/item/armament_points_card/assaultops + points = 50 + +// ARMAMENT ENTRIES + +#define ARMAMENT_CATEGORY_OTHER "Miscellaneous" +#define ARMAMENT_CATEGORY_OTHER_LIMIT 3 + +/datum/armament_entry/assault_operatives + var/mags_to_spawn = 3 + +/datum/armament_entry/assault_operatives/after_equip(turf/safe_drop_location, obj/item/item_to_equip) + if(istype(item_to_equip, /obj/item/gun/ballistic)) + var/obj/item/gun/ballistic/spawned_ballistic_gun = item_to_equip + if(spawned_ballistic_gun.magazine && !istype(spawned_ballistic_gun.magazine, /obj/item/ammo_box/magazine/internal)) + var/obj/item/storage/box/ammo_box/spawned_box = new(safe_drop_location) + spawned_box.name = "ammo box - [spawned_ballistic_gun.name]" + for(var/i in 1 to mags_to_spawn) + new spawned_ballistic_gun.spawn_magazine_type (spawned_box) diff --git a/monkestation/code/modules/assault_ops/code/covert_modsuit.dm b/monkestation/code/modules/assault_ops/code/covert_modsuit.dm new file mode 100644 index 00000000000000..fd2cd5ed872c76 --- /dev/null +++ b/monkestation/code/modules/assault_ops/code/covert_modsuit.dm @@ -0,0 +1,104 @@ +/datum/mod_theme/covert + name = "covert" + desc = "A rarely seen MOD design of unknown origin, covered in sleek armor and with a menacingly solid faceplate." + extended_desc = "Not all that much is known about this type of suit, dubbed the 'Covert' type by most who come across it. \ + The build is a streamlined layering consisting of shaped Plastitanium, and composite ceramic, while the under suit is \ + lined with a lightweight Kevlar and durathread hybrid weave to provide ample protection to the user where the plating \ + doesn't, with an illegal onboard electric powered ablative shield module to provide resistance against conventional \ + energy firearms. In addition, it has an in-built chameleon system, allowing you to disguise the suit while undeployed. \ + Aside from that, there are no manufcaturer marks or tags to be found, and even the color scheme is unfamiliar when \ + it comes to most known MOD producers." + default_skin = "stealth" + armor_type = /datum/armor/mod_theme_covert + resistance_flags = FIRE_PROOF | ACID_PROOF + atom_flags = PREVENT_CONTENTS_EXPLOSION_1 + max_heat_protection_temperature = FIRE_SUIT_MAX_TEMP_PROTECT + siemens_coefficient = 0 + complexity_max = DEFAULT_MAX_COMPLEXITY + 5 + slowdown_inactive = 0 + slowdown_active = 0 + ui_theme = "hackerman" + slot_flags = ITEM_SLOT_BELT | ITEM_SLOT_BACK + inbuilt_modules = list( + /obj/item/mod/module/storage/belt, + /obj/item/mod/module/chameleon/contractor, + /obj/item/mod/module/welding/camera_vision, + /obj/item/mod/module/stealth, + ) + allowed_suit_storage = list( + /obj/item/flashlight, + /obj/item/tank/internals, + /obj/item/ammo_box, + /obj/item/ammo_casing, + /obj/item/restraints/handcuffs, + /obj/item/assembly/flash, + /obj/item/melee/baton, + /obj/item/melee/energy/sword, + /obj/item/shield/energy, + ) + skins = list( + "stealth" = list( + MOD_ICON_OVERRIDE = 'monkestation/code/modules/assault_ops/icons/modsuits/mod.dmi', + MOD_WORN_ICON_OVERRIDE = 'monkestation/code/modules/assault_ops/icons/modsuits/wornmod.dmi', + HELMET_LAYER = NECK_LAYER, + HELMET_FLAGS = list( + UNSEALED_CLOTHING = SNUG_FIT, + SEALED_CLOTHING = THICKMATERIAL|STOPSPRESSUREDAMAGE, + UNSEALED_INVISIBILITY = HIDEFACIALHAIR, + SEALED_INVISIBILITY = HIDEMASK|HIDEEARS|HIDEEYES|HIDEFACE|HIDEHAIR|HIDESNOUT, + SEALED_COVER = HEADCOVERSMOUTH|HEADCOVERSEYES|PEPPERPROOF, + UNSEALED_MESSAGE = HELMET_UNSEAL_MESSAGE, + SEALED_MESSAGE = HELMET_SEAL_MESSAGE, + ), + CHESTPLATE_FLAGS = list( + UNSEALED_CLOTHING = THICKMATERIAL, + SEALED_CLOTHING = STOPSPRESSUREDAMAGE, + UNSEALED_MESSAGE = CHESTPLATE_UNSEAL_MESSAGE, + SEALED_MESSAGE = CHESTPLATE_SEAL_MESSAGE, + ), + GAUNTLETS_FLAGS = list( + UNSEALED_CLOTHING = THICKMATERIAL, + SEALED_CLOTHING = STOPSPRESSUREDAMAGE, + CAN_OVERSLOT = TRUE, + UNSEALED_MESSAGE = GAUNTLET_UNSEAL_MESSAGE, + SEALED_MESSAGE = GAUNTLET_SEAL_MESSAGE, + ), + BOOTS_FLAGS = list( + UNSEALED_CLOTHING = THICKMATERIAL, + SEALED_CLOTHING = STOPSPRESSUREDAMAGE, + CAN_OVERSLOT = TRUE, + UNSEALED_MESSAGE = BOOT_UNSEAL_MESSAGE, + SEALED_MESSAGE = BOOT_SEAL_MESSAGE, + ), + ), + ) + +/datum/armor/mod_theme_covert + melee = 30 + bullet = 50 + laser = 40 + energy = 30 + bomb = 30 + bio = 30 + fire = 100 + acid = 100 + wound = 25 + +/obj/item/mod/control/pre_equipped/stealth_operative + worn_icon = 'monkestation/code/modules/assault_ops/icons/modsuits/wornmod.dmi' + icon = 'monkestation/code/modules/assault_ops/icons/modsuits/mod.dmi' + icon_state = "stealth-control" + theme = /datum/mod_theme/covert + applied_cell = /obj/item/stock_parts/cell/hyper + applied_modules = list( + /obj/item/mod/module/dna_lock, + /obj/item/mod/module/emp_shield, + /obj/item/mod/module/visor/night, + /obj/item/mod/module/magnetic_harness, + /obj/item/mod/module/tether, + /obj/item/mod/module/holster, + ) + +/obj/machinery/suit_storage_unit/industrial/assault_operative + mod_type = /obj/item/mod/control/pre_equipped/stealth_operative + storage_type = /obj/item/tank/internals/emergency_oxygen/double diff --git a/monkestation/code/modules/assault_ops/code/goldeneye.dm b/monkestation/code/modules/assault_ops/code/goldeneye.dm new file mode 100644 index 00000000000000..4453f9d16cd38f --- /dev/null +++ b/monkestation/code/modules/assault_ops/code/goldeneye.dm @@ -0,0 +1,257 @@ +GLOBAL_LIST_EMPTY(goldeneye_pinpointers) + +#define ICARUS_IGNITION_TIME (20 SECONDS) +#define PINPOINTER_PING_TIME (4 SECONDS) + +/** + * GoldenEye defence network + * + * Contains: Subsystem, Keycard, Terminal and Objective + */ + +SUBSYSTEM_DEF(goldeneye) + name = "GoldenEye" + flags = SS_NO_FIRE | SS_NO_INIT + /// A tracked list of all our keys. + var/list/goldeneye_keys = list() + /// A list of minds that have been extracted and thus cannot be extracted again. + var/list/goldeneye_extracted_minds = list() + /// How many keys have been uploaded to GoldenEye. + var/uploaded_keys = 0 + /// How many keys do we need to activate GoldenEye? Can be overriden by Dynamic if there aren't enough heads of staff. + var/required_keys = GOLDENEYE_REQUIRED_KEYS_MAXIMUM + /// Have we been activated? + var/goldeneye_activated = FALSE + /// How long until ICARUS fires? + var/ignition_time = ICARUS_IGNITION_TIME + +/// A safe proc for adding a targets mind to the tracked extracted minds. +/datum/controller/subsystem/goldeneye/proc/extract_mind(datum/mind/target_mind) + goldeneye_extracted_minds += target_mind + +/// A safe proc for registering a new key to the goldeneye system. +/datum/controller/subsystem/goldeneye/proc/upload_key() + uploaded_keys++ + check_condition() + +/// Checks our activation condition after an upload has occured. +/datum/controller/subsystem/goldeneye/proc/check_condition() + if(uploaded_keys >= required_keys) + activate() + return + priority_announce("UNAUTHORISED KEYCARD UPLOAD DETECTED. [uploaded_keys]/[required_keys] KEYCARDS UPLOADED.", "GoldenEye Defence Network") + +/// Activates goldeneye. +/datum/controller/subsystem/goldeneye/proc/activate() + var/message = "/// GOLDENEYE DEFENCE NETWORK BREACHED /// \n \ + Unauthorised GoldenEye Defence Network access detected. \n \ + ICARUS online. \n \ + Targeting system override detected... \n \ + New target: /NTSS13/ \n \ + ICARUS firing protocols activated. \n \ + ETA to fire: [ignition_time / 10] seconds." + + priority_announce(message, "GoldenEye Defence Network", ANNOUNCER_ICARUS) + goldeneye_activated = TRUE + + addtimer(CALLBACK(src, PROC_REF(fire_icarus)), ignition_time) + + +/datum/controller/subsystem/goldeneye/proc/fire_icarus() + var/datum/round_event_control/icarus_sunbeam/event_to_start = new() + event_to_start.run_event() + +/// Checks if a mind(target_mind) is a head and if they aren't in the goldeneye_extracted_minds list. +/datum/controller/subsystem/goldeneye/proc/check_goldeneye_target(datum/mind/target_mind) + var/list/heads_list = SSjob.get_all_heads() + for(var/datum/mind/iterating_mind as anything in heads_list) + if(target_mind == iterating_mind) // We have a match, let's check if they've already been extracted. + if(target_mind in goldeneye_extracted_minds) // They've already been extracted, no double extracts! + return FALSE + return TRUE + return FALSE + +// Goldeneye key +/obj/item/goldeneye_key + name = "\improper GoldenEye authentication keycard" + desc = "A high profile authentication keycard to Nanotrasen's GoldenEye defence network. It seems indestructible." + icon = 'monkestation/code/modules/assault_ops/icons/goldeneye.dmi' + icon_state = "goldeneye_key" + resistance_flags = INDESTRUCTIBLE | LAVA_PROOF | FIRE_PROOF | UNACIDABLE | ACID_PROOF + max_integrity = INFINITY + /// A unique tag that is used to identify this key. + var/goldeneye_tag = "G00000" + /// Flavour text for who's mind is in the key. + var/extract_name = "NO DATA" + +/obj/item/goldeneye_key/Initialize(mapload) + . = ..() + SSgoldeneye.goldeneye_keys += src + goldeneye_tag = "G[rand(10000, 99999)]" + name = "\improper GoldenEye authentication keycard: [goldeneye_tag]" + AddComponent(/datum/component/gps, goldeneye_tag) + SSpoints_of_interest.make_point_of_interest(src) + +/obj/item/goldeneye_key/examine(mob/user) + . = ..() + . += "The DNA data link belongs to: [extract_name]" + +/obj/item/goldeneye_key/Destroy(force) + SSgoldeneye.goldeneye_keys -= src + return ..() + +// Upload terminal +/obj/machinery/goldeneye_upload_terminal + name = "\improper GoldenEye Defnet Upload Terminal" + desc = "An ominous terminal with some ports and keypads, the screen is scrolling with illegible nonsense. It has a strange marking on the side, a red ring with a gold circle within." + icon = 'monkestation/code/modules/assault_ops/icons/goldeneye.dmi' + icon_state = "goldeneye_terminal" + resistance_flags = INDESTRUCTIBLE | LAVA_PROOF | FIRE_PROOF | UNACIDABLE | ACID_PROOF + density = TRUE + /// Is the system currently in use? Used to prevent spam and abuse. + var/uploading = FALSE + + +/obj/machinery/goldeneye_upload_terminal/attackby(obj/item/weapon, mob/user, params) + . = ..() + if(uploading) + return + if(!is_station_level(z)) + say("CONNECTION TO GOLDENEYE NOT DETECTED: Please return to comms range.") + playsound(src, 'sound/machines/nuke/angry_beep.ogg', 100) + return + if(!istype(weapon, /obj/item/goldeneye_key)) + say("AUTHENTICATION ERROR: Please do not insert foreign objects into terminal.") + playsound(src, 'sound/machines/nuke/angry_beep.ogg', 100) + return + var/obj/item/goldeneye_key/inserting_key = weapon + say("GOLDENEYE KEYCARD ACCEPTED: Please wait while the keycard is verified...") + playsound(src, 'sound/machines/nuke/general_beep.ogg', 100) + uploading = TRUE + if(do_after(user, 10 SECONDS, src)) + say("GOLDENEYE KEYCARD AUTHENTICATED!") + playsound(src, 'sound/machines/nuke/confirm_beep.ogg', 100) + SSgoldeneye.upload_key() + uploading = FALSE + qdel(inserting_key) + else + say("GOLDENEYE KEYCARD VERIFICATION FAILED: Please try again.") + playsound(src, 'sound/machines/nuke/angry_beep.ogg', 100) + uploading = FALSE + +// Pinpointer +/obj/item/pinpointer/nuke/goldeneye + name = "\improper GoldenEye keycard pinpointer" + desc = "A handheld tracking device that locks onto certain signals. This one is configured to locate any GoldenEye keycards." + icon_state = "pinpointer_syndicate" + worn_icon_state = "pinpointer_black" + active = TRUE + mode = TRACK_GOLDENEYE + +/obj/item/pinpointer/nuke/goldeneye/Initialize(mapload) + . = ..() + START_PROCESSING(SSfastprocess, src) + +/obj/item/pinpointer/nuke/goldeneye/attack_self(mob/living/user) + if(!LAZYLEN(SSgoldeneye.goldeneye_keys)) + to_chat(user, span_danger("ERROR! No GoldenEye keys detected!")) + return + target = tgui_input_list(user, "Select GoldenEye keycard to track", "GoldenEye keycard", SSgoldeneye.goldeneye_keys) + if(target) + to_chat(user, span_notice("Set to track: [target.name]")) + +/obj/item/pinpointer/nuke/goldeneye/scan_for_target() + if(QDELETED(target)) + target = null + +// Objective +/datum/objective/goldeneye + name = "subvert goldeneye" + objective_name = "Subvert GoldenEye" + explanation_text = "Extract all of the required GoldenEye authentication keys from the heads of staff and activate GoldenEye." + martyr_compatible = TRUE + +/datum/objective/goldeneye/check_completion() + if(SSgoldeneye.goldeneye_activated) + return TRUE + return FALSE + +// Internal pinpointer + + +/atom/movable/screen/alert/status_effect/goldeneye_pinpointer + name = "Target Integrated Pinpointer" + desc = "Even stealthier than a normal implant, it points to a selected GoldenEye keycard." + icon = 'icons/obj/device.dmi' + icon_state = "pinon" + +/datum/status_effect/goldeneye_pinpointer + id = "goldeneye_pinpointer" + duration = -1 + tick_interval = PINPOINTER_PING_TIME + alert_type = /atom/movable/screen/alert/status_effect/goldeneye_pinpointer + /// The range until you're considered 'close' + var/range_mid = 8 + /// The range until you're considered 'too far away' + var/range_far = 16 + /// The target we are pointing towards, refreshes every tick. + var/obj/item/target + /// Our linked antagonist datum, if any. + var/datum/antagonist/assault_operative/linked_antagonist + +/datum/status_effect/goldeneye_pinpointer/New(list/arguments) + GLOB.goldeneye_pinpointers += src + return ..() + +/datum/status_effect/goldeneye_pinpointer/Destroy() + GLOB.goldeneye_pinpointers -= src + if(linked_antagonist) + linked_antagonist.pinpointer = null + linked_antagonist = null + return ..() + +/datum/status_effect/goldeneye_pinpointer/tick(seconds_between_ticks) + if(!owner) + qdel(src) + return + point_to_target() + +///Show the distance and direction of a scanned target +/datum/status_effect/goldeneye_pinpointer/proc/point_to_target() + if(QDELETED(target)) + linked_alert.icon_state = "pinonnull" + target = null + return + if(!target) + linked_alert.icon_state = "pinonnull" + return + + var/turf/here = get_turf(owner) + var/turf/there = get_turf(target) + + if(!here || !there) + linked_alert.icon_state = "pinonnull" + return + if(here.z != there.z) + linked_alert.icon_state = "pinonnull" + return + if(!get_dist_euclidean(here,there)) + linked_alert.icon_state = "pinondirect" + return + linked_alert.setDir(get_dir(here, there)) + + var/dist = (get_dist(here, there)) + if(dist >= 1 && dist <= range_mid) + linked_alert.icon_state = "pinonclose" + else if(dist > range_mid && dist <= range_far) + linked_alert.icon_state = "pinonmedium" + else if(dist > range_far) + linked_alert.icon_state = "pinonfar" + + +/datum/status_effect/goldeneye_pinpointer/proc/set_target(obj/item/new_target) + target = new_target + to_chat(owner, span_redtext("Integrated pinpointer set to: [target.name]")) + +#undef ICARUS_IGNITION_TIME +#undef PINPOINTER_PING_TIME diff --git a/monkestation/code/modules/assault_ops/code/interrogator.dm b/monkestation/code/modules/assault_ops/code/interrogator.dm new file mode 100644 index 00000000000000..7ee9fa8f2b5951 --- /dev/null +++ b/monkestation/code/modules/assault_ops/code/interrogator.dm @@ -0,0 +1,219 @@ +#define STAGE_PROCESS_TIME_LOWER (30 SECONDS) +#define STAGE_PROCESS_TIME_UPPER (1 MINUTES) +#define ALERT_CREW_TIME (1 MINUTES) + +/** + * The interrorgator, a piece of machinery used in assault ops to extract GoldenEye keys from heads of staff. + * + * This device has 3 stages. + * + * This device has a few requirements to function: + * 1. Must be on station Z-level + * 2. Must be a head of staff with a linked interrogate objective + * 3. Must be alive + * 4. Must not be a duplicate key + * + * After a key has been extracted, it will send a pod somewhere into maintenance, and the syndicates will know about it straight away. + */ +/obj/machinery/interrogator + name = "In-TERROR-gator" + desc = "A morraly corrupt piece of machinery used to extract the human mind into a GoldenEye authentication key. The process is said to be one of the most painful experiences someone can endure. Alt+click to start the process." + icon = 'monkestation/code/modules/assault_ops/icons/goldeneye.dmi' + icon_state = "interrogator_open" + state_open = FALSE + density = TRUE + resistance_flags = INDESTRUCTIBLE | LAVA_PROOF | FIRE_PROOF | UNACIDABLE | ACID_PROOF + /// Is the door locked? + var/locked = FALSE + /// Is the system currently processing? + var/processing = FALSE + /// The link to our timer ID so we can override it if need be. + var/timer_id + /// The human occupant currently inside. Used for easier referencing later on. + var/mob/living/carbon/human/human_occupant + +/obj/machinery/interrogator/examine(mob/user) + . = ..() + . += "It requies a direct link to a Nanotrasen defence network, stay near a Nanotrasen comms sat!" + +/obj/machinery/interrogator/AltClick(mob/user) + . = ..() + if(!can_interact(user)) + return + if(user == occupant) + return + if(!processing) + attempt_extract(user) + else + stop_extract(user) + +/obj/machinery/interrogator/interact(mob/user) + if(user == occupant) + return + if(state_open) + close_machine() + return + if(!processing && !locked) + open_machine() + return + +/obj/machinery/interrogator/update_icon_state() + . = ..() + if(occupant) + icon_state = processing ? "interrogator_on" : "interrogator_off" + else + icon_state = state_open ? "interrogator_open" : "interrogator_closed" + +/obj/machinery/interrogator/Destroy() + if(timer_id) + deltimer(timer_id) + timer_id = null + human_occupant = null + return ..() + +/obj/machinery/interrogator/container_resist_act(mob/living/user) + if(!locked) + open_machine() + +/obj/machinery/interrogator/open_machine(drop = TRUE, density_to_set = FALSE) + . = ..() + human_occupant = null + +/obj/machinery/interrogator/proc/stop_extract() + processing = FALSE + locked = FALSE + human_occupant = null + playsound(src, 'sound/machines/buzz-two.ogg', 100) + balloon_alert_to_viewers("process aborted!") + if(timer_id) + deltimer(timer_id) + timer_id = null + update_appearance() + +/obj/machinery/interrogator/proc/check_requirements() + if(!human_occupant) + return FALSE + if(state_open) + return FALSE + if(!is_station_level(z)) + return FALSE + if(human_occupant.stat == DEAD) + return FALSE + return TRUE + +/obj/machinery/interrogator/proc/attempt_extract(mob/user) + if(!occupant) + balloon_alert_to_viewers("no occupant!") + return + if(state_open) + balloon_alert_to_viewers("door open!") + return + if(!is_station_level(z)) + balloon_alert_to_viewers("no comms link!") + return + if(!ishuman(occupant)) + balloon_alert_to_viewers("invalid target DNA!") + return + human_occupant = occupant + if(human_occupant.stat == DEAD) + balloon_alert_to_viewers("occupant is dead!") + return + if(!SSgoldeneye.check_goldeneye_target(human_occupant.mind)) // Preventing abuse by method of duplication. + balloon_alert_to_viewers("no GoldenEye data!") + playsound(src, 'sound/machines/scanbuzz.ogg', 100) + return + + start_extract() + +/obj/machinery/interrogator/proc/start_extract() + to_chat(human_occupant, span_userdanger("You feel dread wash over you as you hear the door on [src] lock!")) + locked = TRUE + processing = TRUE + say("Starting DNA data extraction!") + timer_id = addtimer(CALLBACK(src, PROC_REF(stage_one)), rand(STAGE_PROCESS_TIME_LOWER, STAGE_PROCESS_TIME_UPPER), TIMER_STOPPABLE|TIMER_UNIQUE) //Random times so crew can't anticipate exactly when it will drop. + update_appearance() + +/obj/machinery/interrogator/proc/stage_one() + if(!check_requirements()) + say("Critical error! Aborting.") + playsound(src, 'sound/machines/scanbuzz.ogg', 100) + return + to_chat(human_occupant, span_danger("As [src] whirrs to life you feel some cold metal restraints deploy around you, you can't move!")) + playsound(loc, 'sound/items/rped.ogg', 60) + say("Stage one complete!") + minor_announce("SECURITY BREACH DETECTED, NETWORK COMPROMISED! LOCATION UNTRACEABLE.", "GoldenEye Defence Network") + timer_id = addtimer(CALLBACK(src, PROC_REF(stage_two)), rand(STAGE_PROCESS_TIME_LOWER, STAGE_PROCESS_TIME_UPPER), TIMER_STOPPABLE|TIMER_UNIQUE) + +/obj/machinery/interrogator/proc/stage_two() + if(!check_requirements()) + say("Critical error! Aborting.") + playsound(src, 'sound/machines/scanbuzz.ogg', 100) + return + to_chat(human_occupant, span_userdanger("You feel a sharp pain as a drill penetrates your skull, it's unbearable!")) + human_occupant.emote("scream") + human_occupant.apply_damage(30, BRUTE, BODY_ZONE_HEAD) + playsound(src, 'sound/effects/wounds/blood1.ogg', 100) + playsound(src, 'sound/items/drill_use.ogg', 100) + say("Stage two complete!") + timer_id = addtimer(CALLBACK(src, PROC_REF(stage_three)), rand(STAGE_PROCESS_TIME_LOWER, STAGE_PROCESS_TIME_UPPER), TIMER_STOPPABLE|TIMER_UNIQUE) + +/obj/machinery/interrogator/proc/stage_three() + if(!check_requirements()) + say("Critical error! Aborting.") + playsound(src, 'sound/machines/scanbuzz.ogg', 100) + return + to_chat(human_occupant, span_userdanger("You feel something penetrating your brain, it feels as though your childhood memories are fading! Please, make it stop! After a moment of silence, you realize you can't remember what happened to you!")) + human_occupant.emote("scream") + human_occupant.apply_damage(20, BRUTE, BODY_ZONE_HEAD) + human_occupant.set_jitter_if_lower(3 MINUTES) + human_occupant.Unconscious(1 MINUTES) + playsound(src, 'sound/effects/dismember.ogg', 100) + playsound(src, 'sound/machines/ping.ogg', 100) + say("Process complete! A key is being sent aboard! Crew will shortly detect the keycard!") + send_keycard() + processing = FALSE + locked = FALSE + update_appearance() + addtimer(CALLBACK(src, PROC_REF(announce_creation)), ALERT_CREW_TIME) + +/obj/machinery/interrogator/proc/announce_creation() + priority_announce("CRITICAL SECURITY BREACH DETECTED! A GoldenEye authentication keycard has been illegally extracted and is being sent in somewhere on the station!", "GoldenEye Defence Network") + for(var/obj/item/pinpointer/nuke/disk_pinpointers in GLOB.pinpointer_list) + disk_pinpointers.switch_mode_to(TRACK_GOLDENEYE) //Pinpointer will track the newly created goldeneye key. + +/obj/machinery/interrogator/proc/send_keycard() + var/turf/landingzone = find_drop_turf() + var/obj/item/goldeneye_key/new_key + if(!landingzone) + new_key = new(src) + else + new_key = new + new_key.extract_name = human_occupant.real_name + // Add them to the goldeneye extracted list. This list is capable of having nulls. + SSgoldeneye.extract_mind(human_occupant.mind) + var/obj/structure/closet/supplypod/pod = new + new /obj/effect/pod_landingzone(landingzone, pod, new_key) + for(var/datum/status_effect/goldeneye_pinpointer/iterating_pinpointer in GLOB.goldeneye_pinpointers) + iterating_pinpointer.set_target(new_key) + + notify_ghosts("GoldenEye key launched!", + source = new_key, + header = "Something's Interesting!", + ) + +/obj/machinery/interrogator/proc/find_drop_turf() + var/list/possible_turfs = list() + + var/obj/structure/test_structure = new() // This is apparently the most intuative way to check if a turf is able to support entering. + + for(var/area/station/maintenance/maint_area in GLOB.areas) + for(var/turf/area_turf in maint_area) + if(!is_station_level(area_turf.z)) + continue + if(area_turf.Enter(test_structure)) + possible_turfs += area_turf + qdel(test_structure) + + //Pick a turf to spawn at if we can + if(length(possible_turfs)) + return pick(possible_turfs) diff --git a/monkestation/code/modules/assault_ops/code/midround_event.dm b/monkestation/code/modules/assault_ops/code/midround_event.dm new file mode 100644 index 00000000000000..8e66e0dc01722c --- /dev/null +++ b/monkestation/code/modules/assault_ops/code/midround_event.dm @@ -0,0 +1,91 @@ +/datum/round_event_control/antagonist/solo/from_ghosts/assault_operative + name = "Operative Assault" + tags = list(TAG_DESTRUCTIVE, TAG_COMBAT, TAG_TEAM_ANTAG, TAG_EXTERNAL) + antag_flag = ROLE_ASSAULT_OPERATIVE + antag_datum = /datum/antagonist/assault_operative + typepath = /datum/round_event/antagonist/solo/ghost/assault_operative + restricted_roles = list( + JOB_AI, + JOB_CAPTAIN, + JOB_CHIEF_ENGINEER, + JOB_CHIEF_MEDICAL_OFFICER, + JOB_CYBORG, + JOB_DETECTIVE, + JOB_HEAD_OF_PERSONNEL, + JOB_HEAD_OF_SECURITY, + JOB_PRISONER, + JOB_RESEARCH_DIRECTOR, + JOB_SECURITY_OFFICER, + JOB_WARDEN, + JOB_BRIG_PHYSICIAN, + ) + base_antags = 3 + maximum_antags = 4 + enemy_roles = list( + JOB_AI, + JOB_CYBORG, + JOB_CAPTAIN, + JOB_DETECTIVE, + JOB_HEAD_OF_SECURITY, + JOB_SECURITY_OFFICER, + JOB_WARDEN, + ) + required_enemies = 5 + // I give up, just there should be enough heads with 35 players... + min_players = 35 + earliest_start = 45 MINUTES + weight = 4 + max_occurrences = 1 + prompted_picking = TRUE + +/datum/round_event/antagonist/solo/ghost/assault_operative + excute_round_end_reports = TRUE + var/static/datum/team/assault_operatives/assault_team + +/datum/round_event/antagonist/solo/ghost/assault_operative/add_datum_to_mind(datum/mind/antag_mind) + var/mob/living/current_mob = antag_mind.current + SSjob.FreeRole(antag_mind.assigned_role.title) + var/list/items = current_mob.get_equipped_items(TRUE) + current_mob.unequip_everything() + for(var/obj/item/item as anything in items) + qdel(item) + + antag_mind.set_assigned_role(SSjob.GetJobType(/datum/job/assault_operative)) + antag_mind.special_role = ROLE_ASSAULT_OPERATIVE + + var/datum/antagonist/assault_operative/new_op = new antag_datum() + antag_mind.add_antag_datum(new_op) + +//this might be able to be kept as just calling parent +/datum/round_event/antagonist/solo/ghost/assault_operative/round_end_report() + var/result = assault_team.get_result() + var/list/parts = list() + parts += "Assault Operatives:" + switch(result) + if(ASSAULT_RESULT_WIN) + parts += span_greentext("Assault Operatives Major Victory!") + parts += "The Assault Operatives have successfully subverted and activated GoldenEye, and they all survived!" + if(ASSAULT_RESULT_PARTIAL_WIN) + parts += span_greentext("Assault Operatives Minor Victory!") + parts += "The Assault Operatives have successfully subverted and activated GoldenEye, but only some survived!" + if(ASSAULT_RESULT_HEARTY_WIN) + parts += span_greentext("Assault Operatives Hearty Victory!") + parts += "The Assault Operatives have successfully subverted and activated GoldenEye, but they all died!" + if(ASSAULT_RESULT_LOSS) + parts += span_redtext("Crew Victory!") + parts += "The Research Staff of [station_name()] have killed all of the assault operatives and stopped them activating GoldenEye!" + if(ASSAULT_RESULT_STALEMATE) + parts += "Stalemate!" + parts += "The assault operatives have failed to activate GoldenEye and are still alive!" + else + parts += "Neutral Victory" + parts += "Mission aborted!" + parts += span_redtext("GoldenEye keys uploaded: [SSgoldeneye.uploaded_keys]/[SSgoldeneye.required_keys]") + + var/text = "
The assault operatives were:" + text += printplayerlist(assault_team.members) + text += "
" + + parts += text + + SSticker.news_report = parts diff --git a/monkestation/code/modules/assault_ops/code/outfits.dm b/monkestation/code/modules/assault_ops/code/outfits.dm new file mode 100644 index 00000000000000..3a63be7617bf46 --- /dev/null +++ b/monkestation/code/modules/assault_ops/code/outfits.dm @@ -0,0 +1,45 @@ +/datum/outfit/assaultops + name = "Assault Ops - Default" + + uniform = /obj/item/clothing/under/syndicate/sniper + shoes = /obj/item/clothing/shoes/jackboots + gloves = /obj/item/clothing/gloves/combat + back = /obj/item/storage/backpack/chameleon + ears = /obj/item/radio/headset/syndicate/alt + glasses = /obj/item/clothing/glasses/sunglasses + mask = /obj/item/clothing/mask/gas/sechailer/syndicate + + l_pocket = /obj/item/switchblade + r_pocket = /obj/item/armament_points_card/assaultops + + id = /obj/item/card/id/advanced/chameleon + id_trim = /datum/id_trim/chameleon/operative + +/datum/outfit/assaultops/post_equip(mob/living/carbon/human/equipping_human) + var/obj/item/radio/radio = equipping_human.ears + radio.set_frequency(FREQ_SYNDICATE) + radio.freqlock = TRUE + radio.command = TRUE + + var/obj/item/implant/weapons_auth/weapons_authorisation = new/obj/item/implant/weapons_auth(equipping_human) + weapons_authorisation.implant(equipping_human) + + equipping_human.faction |= ROLE_SYNDICATE + + equipping_human.update_icons() + +// ICONS FOR PREVIEW USE ONLY + +/datum/outfit/assaultops_preview + name = "Assault Ops - Preview ONLY" + + uniform = /obj/item/clothing/under/syndicate/sniper + shoes = /obj/item/clothing/shoes/jackboots + gloves = /obj/item/clothing/gloves/combat + ears = /obj/item/radio/headset/syndicate/alt + glasses = /obj/item/clothing/glasses/sunglasses + +/datum/outfit/assaultops_preview/background + name = "Assault Ops - Background Dudes - Preview ONLY" + + mask = /obj/item/clothing/mask/gas/sechailer/syndicate diff --git a/monkestation/code/modules/assault_ops/code/pouch.dm b/monkestation/code/modules/assault_ops/code/pouch.dm new file mode 100644 index 00000000000000..aa183cf74ec7dd --- /dev/null +++ b/monkestation/code/modules/assault_ops/code/pouch.dm @@ -0,0 +1,73 @@ +/// Base pouch type. Fits in pockets, as its main gimmick. +/obj/item/storage/pouch + name = "storage pouch" + desc = "It's a nondescript pouch made with dark fabric. It has a clip, for fitting in pockets." + icon = 'monkestation/code/modules/assault_ops/icons/storage.dmi' + icon_state = "survival" + w_class = WEIGHT_CLASS_NORMAL + resistance_flags = FLAMMABLE + slot_flags = ITEM_SLOT_POCKETS + +/obj/item/storage/pouch/Initialize(mapload) + . = ..() + atom_storage.max_specific_storage = WEIGHT_CLASS_SMALL + atom_storage.max_slots = 5 + +/obj/item/storage/pouch/ammo + name = "ammo pouch" + desc = "A pouch for your ammo that goes in your pocket." + icon = 'monkestation/code/modules/assault_ops/icons/storage.dmi' + icon_state = "ammopouch" + w_class = WEIGHT_CLASS_BULKY + custom_price = PAYCHECK_CREW * 4 + // this is just to have post_reskin called later + uses_advanced_reskins = TRUE + unique_reskin = list( + "Ammo Pouch" = list( + RESKIN_ICON_STATE = "ammopouch" + ), + "Casing Pouch" = list( + RESKIN_ICON_STATE = "casingpouch" + ), + ) + +/obj/item/storage/pouch/ammo/Initialize(mapload) + . = ..() + atom_storage.max_specific_storage = WEIGHT_CLASS_NORMAL + atom_storage.max_total_storage = 12 + atom_storage.max_slots = 3 + atom_storage.numerical_stacking = FALSE + atom_storage.can_hold = typecacheof(list(/obj/item/ammo_box/magazine, /obj/item/ammo_casing, /obj/item/stock_parts/cell/microfusion)) + +/obj/item/storage/pouch/ammo/post_reskin(mob/our_mob) + if(icon_state == "casingpouch") + name = "casing pouch" + desc = "A pouch for your ammo that goes in your pocket, carefully segmented for holding shell casings and nothing else." + atom_storage.can_hold = typecacheof(list(/obj/item/ammo_casing)) + atom_storage.max_specific_storage = WEIGHT_CLASS_TINY + atom_storage.numerical_stacking = TRUE + atom_storage.max_slots = 10 + atom_storage.max_total_storage = WEIGHT_CLASS_TINY * 10 + + +/obj/item/storage/pouch/medpens + name = "medpen pouch" + desc = "A pouch containing several different types of lifesaving medipens." + icon = 'monkestation/code/modules/assault_ops/icons/storage.dmi' + icon_state = "medpen_pouch" + slot_flags = ITEM_SLOT_BELT | ITEM_SLOT_POCKETS + +/obj/item/storage/pouch/medpens/Initialize(mapload) + . = ..() + atom_storage.max_specific_storage = WEIGHT_CLASS_NORMAL + atom_storage.max_total_storage = 30 + atom_storage.max_slots = 5 + atom_storage.numerical_stacking = FALSE + atom_storage.can_hold = typecacheof(list(/obj/item/reagent_containers/hypospray)) + +/obj/item/storage/pouch/medpens/PopulateContents() + new /obj/item/reagent_containers/hypospray/medipen/blood_loss(src) + new /obj/item/reagent_containers/hypospray/medipen/oxandrolone(src) + new /obj/item/reagent_containers/hypospray/medipen/salacid(src) + new /obj/item/reagent_containers/hypospray/medipen/salbutamol(src) + new /obj/item/reagent_containers/hypospray/medipen/stimulants(src) diff --git a/monkestation/code/modules/assault_ops/code/roundstart_event.dm b/monkestation/code/modules/assault_ops/code/roundstart_event.dm new file mode 100644 index 00000000000000..3d0bb0ba0f6806 --- /dev/null +++ b/monkestation/code/modules/assault_ops/code/roundstart_event.dm @@ -0,0 +1,93 @@ +/datum/round_event_control/antagonist/solo/assault_operative + name = "Roundstart Assault Operatives" + tags = list(TAG_DESTRUCTIVE, TAG_COMBAT, TAG_TEAM_ANTAG, TAG_EXTERNAL) + antag_flag = ROLE_ASSAULT_OPERATIVE + antag_datum = /datum/antagonist/assault_operative + typepath = /datum/round_event/antagonist/solo/assault_operative + shared_occurence_type = SHARED_HIGH_THREAT + restricted_roles = list( + JOB_AI, + JOB_CAPTAIN, + JOB_CHIEF_ENGINEER, + JOB_CHIEF_MEDICAL_OFFICER, + JOB_CYBORG, + JOB_DETECTIVE, + JOB_HEAD_OF_PERSONNEL, + JOB_HEAD_OF_SECURITY, + JOB_PRISONER, + JOB_RESEARCH_DIRECTOR, + JOB_SECURITY_OFFICER, + JOB_WARDEN, + JOB_BRIG_PHYSICIAN, + ) + base_antags = 3 + maximum_antags = 5 + enemy_roles = list( + JOB_AI, + JOB_CYBORG, + JOB_CAPTAIN, + JOB_DETECTIVE, + JOB_HEAD_OF_SECURITY, + JOB_SECURITY_OFFICER, + JOB_SECURITY_ASSISTANT, + JOB_WARDEN, + ) + required_enemies = 5 + // I give up, just there should be enough heads with 35 players... + min_players = 35 + roundstart = TRUE + earliest_start = 0 SECONDS + weight = 4 + max_occurrences = 1 + +/datum/round_event/antagonist/solo/assault_operative + excute_round_end_reports = TRUE + var/static/datum/team/assault_operatives/assault_team + +/datum/round_event/antagonist/solo/assault_operative/add_datum_to_mind(datum/mind/antag_mind) + var/mob/living/current_mob = antag_mind.current + SSjob.FreeRole(antag_mind.assigned_role.title) + var/list/items = current_mob.get_equipped_items(TRUE) + current_mob.unequip_everything() + for(var/obj/item/item as anything in items) + qdel(item) + + antag_mind.set_assigned_role(SSjob.GetJobType(/datum/job/assault_operative)) + antag_mind.special_role = ROLE_ASSAULT_OPERATIVE + + var/datum/antagonist/assault_operative/new_op = new antag_datum() + antag_mind.add_antag_datum(new_op) + + +/datum/round_event/antagonist/solo/assault_operative/round_end_report() + var/result = assault_team.get_result() + var/list/parts = list() + parts += "Assault Operatives:" + switch(result) + if(ASSAULT_RESULT_WIN) + parts += span_greentext("Assault Operatives Major Victory!") + parts += "The Assault Operatives have successfully subverted and activated GoldenEye, and they all survived!" + if(ASSAULT_RESULT_PARTIAL_WIN) + parts += span_greentext("Assault Operatives Minor Victory!") + parts += "The Assault Operatives have successfully subverted and activated GoldenEye, but only some survived!" + if(ASSAULT_RESULT_HEARTY_WIN) + parts += span_greentext("Assault Operatives Hearty Victory!") + parts += "The Assault Operatives have successfully subverted and activated GoldenEye, but they all died!" + if(ASSAULT_RESULT_LOSS) + parts += span_redtext("Crew Victory!") + parts += "The Research Staff of [station_name()] have killed all of the assault operatives and stopped them activating GoldenEye!" + if(ASSAULT_RESULT_STALEMATE) + parts += "Stalemate!" + parts += "The assault operatives have failed to activate GoldenEye and are still alive!" + else + parts += "Neutral Victory" + parts += "Mission aborted!" + parts += span_redtext("GoldenEye keys uploaded: [SSgoldeneye.uploaded_keys]/[SSgoldeneye.required_keys]") + + var/text = "
The assault operatives were:" + text += printplayerlist(assault_team.members) + text += "
" + + parts += text + + SSticker.news_report = parts diff --git a/monkestation/code/modules/assault_ops/code/shuttle.dm b/monkestation/code/modules/assault_ops/code/shuttle.dm new file mode 100644 index 00000000000000..d1e05c6b25a2fa --- /dev/null +++ b/monkestation/code/modules/assault_ops/code/shuttle.dm @@ -0,0 +1,45 @@ +/obj/machinery/computer/shuttle/goldeneye_cruiser + name = "goldeneye cruiser helm" + desc = "The terminal used to control the goldeneye cruiser." + shuttleId = "goldeneye_cruiser" + possible_destinations = "goldeneye_cruiser_custom;goldeneye_cruiser_dock;syndicate_away;syndicate_z5;syndicate_ne;syndicate_nw;syndicate_n;syndicate_se;syndicate_sw;syndicate_s;syndicate_cruiser_dock;whiteship_away;whiteship_home;whiteship_z4;whiteship_lavaland;ferry_away" + circuit = /obj/item/circuitboard/computer/syndicate_shuttle + icon_screen = "syndishuttle" + icon_keyboard = "syndie_key" + light_color = COLOR_SOFT_RED + req_access = list(ACCESS_SYNDICATE) + resistance_flags = INDESTRUCTIBLE | LAVA_PROOF | FIRE_PROOF | ACID_PROOF + +/obj/machinery/computer/shuttle/goldeneye_cruiser/launch_check(mob/user) + return TRUE + +/obj/machinery/computer/shuttle/goldeneye_cruiser/allowed(mob/to_check) + if(issilicon(to_check) && !(ROLE_SYNDICATE in to_check.faction)) + return FALSE + return ..() + +/obj/machinery/computer/shuttle/goldeneye_cruiser/recall + name = "goldeneye shuttle recall terminal" + desc = "Use this if your friends left you behind." + possible_destinations = "goldeneye_cruiser_dock" + +/obj/machinery/computer/camera_advanced/shuttle_docker/goldeneye_cruiser + name = "goldeneye cruiser navigation computer" + desc = "Used to designate a precise transit location for the goldeneye cruiser." + icon_screen = "syndishuttle" + icon_keyboard = "syndie_key" + shuttlePortId = "goldeneye_cruiser_dock" + shuttleId = "goldeneye_cruiser" + jump_to_ports = list("syndicate_n" = 1, "whiteship_away" = 1, "whiteship_home" = 1, "whiteship_z4" = 1) + view_range = 14 + whitelist_turfs = list(/turf/open/space, /turf/open/floor/plating, /turf/open/lava, /turf/closed/mineral, /turf/open/misc/ice/icemoon, /turf/open/misc/ice, /turf/open/misc/asteroid/snow/icemoon, /turf/closed/mineral/random/snow) + see_hidden = TRUE + x_offset = -10 + y_offset = 5 + +/datum/map_template/shuttle/goldeneye_cruiser + name = "goldeneye cruiser" + prefix = "_maps/shuttles/nova/" + port_id = "goldeneye" + suffix = "cruiser" + who_can_purchase = null diff --git a/monkestation/code/modules/assault_ops/code/sunbeam.dm b/monkestation/code/modules/assault_ops/code/sunbeam.dm new file mode 100644 index 00000000000000..3482404b662f52 --- /dev/null +++ b/monkestation/code/modules/assault_ops/code/sunbeam.dm @@ -0,0 +1,194 @@ +#define SUNBEAM_OBLITERATION_RANGE_FIRE 2 +#define SUNBEAM_OBLITERATION_RANGE_FLATTEN 1 +#define SUNBEAM_OBLITERATION_COOLDOWN (0.2 SECONDS) +#define SUNBEAM_MOVEMENT_COOLDOWN (0.3 SECONDS) +#define SUNBEAM_DEFAULT_SCALE_X 2 +#define SUNBEAM_DEFAULT_SCALE_Y 2 +#define SUNBEAM_OVERLAYS 16 + +/obj/effect/sunbeam + name = "\improper ICARUS Sunbeam" + desc = "A beam of light from the sun." + icon = 'monkestation/code/modules/assault_ops/icons/sunbeam.dmi' + icon_state = "sunray_splash" + throwforce = 100 + move_force = INFINITY + move_resist = INFINITY + pull_force = INFINITY + flags_1 = PREVENT_CONTENTS_EXPLOSION_1 + movement_type = PHASING | FLYING + plane = ABOVE_LIGHTING_PLANE + light_outer_range = 6 + light_color = "#ffbf10" + /// A reference to the target we will move towards + var/atom/target_atom + /// How much do we offset the mid beam? + var/beam_offset_y = 32 + /// Our sound loop. + var/datum/looping_sound/sunbeam/soundloop + /// Used to control how slowly the beam moves. + var/movement_cooldown = SUNBEAM_MOVEMENT_COOLDOWN + /// Our obliteration cooldown. + var/obliteration_cooldown = SUNBEAM_OBLITERATION_COOLDOWN + /// The range of fire to spawn. + var/obliteration_range_fire = SUNBEAM_OBLITERATION_RANGE_FIRE + /// The range of objects and atoms to be atomised. + var/obliteration_range_flatten = SUNBEAM_OBLITERATION_RANGE_FLATTEN + + COOLDOWN_DECLARE(oblirerate_cooldown) + COOLDOWN_DECLARE(movement_delay) + +/obj/effect/sunbeam/Initialize(mapload, atom/target, movement_cooldown_override, obliteration_cooldown_override, obliteration_range_fire_override, obliteration_range_flatten_override, scale_x = SUNBEAM_DEFAULT_SCALE_X, scale_y = SUNBEAM_DEFAULT_SCALE_Y) + . = ..() + if(target) + target_atom = target + if(movement_cooldown_override) + movement_cooldown = movement_cooldown_override + if(obliteration_cooldown_override) + obliteration_cooldown = obliteration_cooldown_override + if(obliteration_range_fire_override) + obliteration_range_fire = obliteration_range_fire_override + if(obliteration_range_flatten_override) + obliteration_range_flatten = obliteration_range_flatten_override + + START_PROCESSING(SSfastprocess, src) + update_appearance() + if(scale_x || scale_y) + var/matrix/our_matrix = matrix() + our_matrix.Scale(scale_x, scale_y) + transform = our_matrix + notify_ghosts("An ICARUS sunbeam has been launched! [target_atom ? "Towards: [target_atom.name]" : ""]", + source = src, + header = "Somethings burning!", + ) + soundloop = new(src, TRUE) + +/obj/effect/sunbeam/Destroy(force) + QDEL_NULL(soundloop) + return ..() + +/obj/effect/sunbeam/update_overlays() + . = ..() + for(var/i in 1 to SUNBEAM_OVERLAYS) + var/mutable_appearance/beam_overlay = mutable_appearance(icon, "sunray") + beam_overlay.pixel_y = beam_offset_y * i + . += beam_overlay + +/obj/effect/sunbeam/process(seconds_per_tick) + if(target_atom && COOLDOWN_FINISHED(src, movement_delay)) + step_towards(src, target_atom) + COOLDOWN_START(src, movement_delay, movement_cooldown) + + if(COOLDOWN_FINISHED(src, oblirerate_cooldown)) + obliterate() + + if(get_turf(src) == get_turf(target_atom)) + qdel(src) + +/obj/effect/sunbeam/proc/obliterate() + if(obliteration_range_fire) + for(var/turf/open/turf_to_incinerate in circle_range(src, obliteration_range_fire)) + turf_to_incinerate.hotspot_expose(5500) + new /obj/effect/hotspot(turf_to_incinerate) + + if(obliteration_range_flatten) + for(var/atom/atom_to_obliterate in circle_range(src, obliteration_range_flatten)) + if(isclosedturf(atom_to_obliterate)) + SSexplosions.highturf += atom_to_obliterate + continue + + if(isfloorturf(atom_to_obliterate)) + var/turf/open/floor/open_turf = atom_to_obliterate + open_turf.break_tile_to_plating() + + if(isobj(atom_to_obliterate)) + var/obj/object_to_obliterate = atom_to_obliterate + object_to_obliterate.take_damage(INFINITY, BRUTE, NONE, TRUE, dir, INFINITY) + continue + + if(isliving(atom_to_obliterate)) + var/mob/living/mob_to_obliterate = atom_to_obliterate + mob_to_obliterate.apply_damage(200, BURN) + continue + + COOLDOWN_START(src, oblirerate_cooldown, obliteration_cooldown) + +/datum/looping_sound/sunbeam + mid_sounds = list('monkestation/code/modules/assault_ops/sound/sunbeam_loop.ogg' = 1) + mid_length = 6.7 SECONDS + volume = 100 + extra_range = 25 + +/client/proc/spawn_sunbeam() + set category = "Admin.Fun" + set name = "Spawn Sunbeam" + set desc = "Spawns an ICARUS sunbeam at your location and sends it towards a target." + + var/mob/living/target_mob = tgui_input_list(usr, "Select a mob", "Mob", GLOB.mob_living_list) + + if(!target_mob) + return + + var/edit_ranges = tgui_alert(usr, "Change beam specifications?", "Beam Specifications", list("Yes", "No")) + + if(edit_ranges == "Yes") + var/edit_range_fire = tgui_input_number(usr, "Fire range in tiles", "Fire Range", SUNBEAM_OBLITERATION_RANGE_FIRE, 20, 0) + var/edit_range_flatten = tgui_input_number(usr, "Flatten range in tiles", "Flatten Range", SUNBEAM_OBLITERATION_RANGE_FLATTEN, 20, 0) + var/edit_cooldown = tgui_input_number(usr, "Cooldown in seconds", "Cooldown", SUNBEAM_OBLITERATION_COOLDOWN, 20, 0) + var/edit_movement_cooldown = tgui_input_number(usr, "Movement cooldown in seconds", "Movement Cooldown", SUNBEAM_MOVEMENT_COOLDOWN, 20, 0) + var/edit_scale_x = tgui_input_number(usr, "Scale X", "Scale X", SUNBEAM_DEFAULT_SCALE_X, 20, 0) + var/edit_scale_y = tgui_input_number(usr, "Scale Y", "Scale Y", SUNBEAM_DEFAULT_SCALE_Y, 20, 0) + + new /obj/effect/sunbeam(usr, target_mob, edit_movement_cooldown, edit_cooldown, edit_range_fire, edit_range_flatten, edit_scale_x, edit_scale_y) + return + + new /obj/effect/sunbeam(usr, target_mob) + + +/datum/round_event_control/icarus_sunbeam + name = "ICARUS Weapons System Ignition" + typepath = /datum/round_event/icarus_sunbeam + max_occurrences = 0 + weight = 0 + category = EVENT_CATEGORY_SPACE + description = "Forces the ICARUS weapons system to fire a sunbeam at a random location. Causing massive devistation to the station." + +/datum/round_event/icarus_sunbeam + announce_when = 1 // Instant announcement + +/datum/round_event/icarus_sunbeam/announce(fake) + priority_announce("/// ICARUS SUNBEAM WEAPONS SYSTEM ACTIVATED, USE EXTREME CAUTION! ///", "GoldenEye Defence Network", ANNOUNCER_ICARUS) + alert_sound_to_playing('monkestation/code/modules/assault_ops/sound/sunbeam_fire.ogg') + +/datum/round_event/icarus_sunbeam/start() + var/startside = pick(GLOB.cardinals) + var/turf/end_turf = get_edge_target_turf(get_safe_random_station_turf(), turn(startside, 180)) + var/turf/start_turf = spaceDebrisStartLoc(startside, end_turf.z) + new /obj/effect/sunbeam(start_turf, end_turf) + +#undef SUNBEAM_OBLITERATION_RANGE_FIRE +#undef SUNBEAM_OBLITERATION_RANGE_FLATTEN +#undef SUNBEAM_OBLITERATION_COOLDOWN +#undef SUNBEAM_MOVEMENT_COOLDOWN +#undef SUNBEAM_DEFAULT_SCALE_X +#undef SUNBEAM_DEFAULT_SCALE_Y + +///This is quite franlky the most important proc relating to global sounds, it uses area definition to play sounds depending on your location, and respects the players announcement volume. Generally if you're sending an announcement you want to use priority_announce. +/proc/alert_sound_to_playing(soundin, vary = FALSE, frequency = 0, falloff = FALSE, channel = 0, pressure_affected = FALSE, sound/S, override_volume = FALSE, list/players) + if(!S) + S = sound(get_sfx(soundin)) + var/static/list/quiet_areas = typecacheof(typesof(/area/station/maintenance) + typesof(/area/space) + typesof(/area/station/commons/dorms)) + if(!players) + players = GLOB.player_list + for(var/m in players) + if(ismob(m) && !isnewplayer(m)) + var/mob/M = m + if(M.client?.prefs.read_preference(/datum/preference/toggle/sound_announcements) && M.can_hear()) + if(override_volume) + M.playsound_local(get_turf(M), S, 80, FALSE) + else + var/area/A = get_area(M) + if(is_type_in_typecache(A, quiet_areas)) //These areas don't hear it as loudly + M.playsound_local(get_turf(M), S, 10, FALSE) + else + M.playsound_local(get_turf(M), S, 70, FALSE) diff --git a/monkestation/code/modules/assault_ops/code/turret.dm b/monkestation/code/modules/assault_ops/code/turret.dm new file mode 100644 index 00000000000000..4b7c5ffd170ae8 --- /dev/null +++ b/monkestation/code/modules/assault_ops/code/turret.dm @@ -0,0 +1,29 @@ +GLOBAL_LIST_EMPTY(turret_id_refs) + +/obj/machinery/porta_turret + var/system_id //The ID for this turret + +/obj/machinery/porta_turret/Initialize(mapload) + . = ..() + if(system_id) + if(!GLOB.turret_id_refs[system_id]) + GLOB.turret_id_refs[system_id] = list() + GLOB.turret_id_refs[system_id][src] = TRUE + +/obj/machinery/porta_turret/Destroy() + if(system_id && GLOB.turret_id_refs[system_id]) + GLOB.turret_id_refs[system_id] -= src + if(!length(GLOB.turret_id_refs[system_id])) + GLOB.turret_id_refs -= system_id + return ..() + +/obj/machinery/turretid + var/system_id //The ID system for turrets, will get any turrets with the same ID and put them in controlled turrets + +/obj/machinery/turretid/post_machine_initialize() + . = ..() + if(system_id && GLOB.turret_id_refs[system_id]) + for(var/i in GLOB.turret_id_refs[system_id]) + var/obj/machinery/porta_turret/T = i + turrets |= WEAKREF(T) + diff --git a/monkestation/code/modules/assault_ops/code/turrets.dm b/monkestation/code/modules/assault_ops/code/turrets.dm new file mode 100644 index 00000000000000..0f94b693b1d2fc --- /dev/null +++ b/monkestation/code/modules/assault_ops/code/turrets.dm @@ -0,0 +1,40 @@ +//TURRETS + +/obj/machinery/porta_turret/syndicate/assaultops + use_power = IDLE_POWER_USE + req_access = list(ACCESS_SYNDICATE) + faction = list(ROLE_SYNDICATE) + mode = 0 + max_integrity = 200 + +//Exterior ship turrets +/obj/machinery/porta_turret/syndicate/assaultops/shuttle + scan_range = 9 + lethal_projectile = /obj/projectile/bullet/a357 + //lethal_projectile_sound = 'modular_skyrat/modules/aesthetics/guns/sound/sniperrifle.ogg' + stun_projectile = /obj/projectile/energy/electrode + stun_projectile_sound = 'sound/weapons/taser.ogg' + max_integrity = 600 + armor_type = /datum/armor/assaultops_shuttle + +//Internal ship and base turrets + +/datum/armor/assaultops_shuttle + melee = 50 + bullet = 30 + laser = 30 + energy = 30 + bomb = 80 + fire = 90 + acid = 90 + +/obj/machinery/porta_turret/syndicate/assaultops/internal + always_up = FALSE + has_cover = TRUE + desc = "An energy blaster auto-turret." + icon_state = "standard_stun" + base_icon_state = "standard" + stun_projectile = /obj/projectile/energy/electrode + stun_projectile_sound = 'sound/weapons/taser.ogg' + lethal_projectile = /obj/projectile/beam/laser/heavylaser + lethal_projectile_sound = 'sound/weapons/lasercannonfire.ogg' diff --git a/monkestation/code/modules/assault_ops/code/vending.dm b/monkestation/code/modules/assault_ops/code/vending.dm new file mode 100644 index 00000000000000..fc7995f97d84dd --- /dev/null +++ b/monkestation/code/modules/assault_ops/code/vending.dm @@ -0,0 +1,75 @@ +//VENDING MACHINES +/obj/machinery/vending/assaultops_ammo + name = "\improper Syndicate Ammo Station" + desc = "An ammo vending machine which holds a variety of different ammo mags." + icon_state = "liberationstation" + vend_reply = "Item dispensed." + scan_id = FALSE + resistance_flags = FIRE_PROOF + onstation = FALSE + light_mask = "liberation-light-mask" + default_price = 0 + /// Have we been FILLED? + var/filled = FALSE + +/obj/machinery/vending/assaultops_ammo/ui_interact(mob/user, datum/tgui/ui) + ui = SStgui.try_update_ui(user, src, ui) + if(!ui) + fill_ammo(user) + ui = new(user, src, "Vending") + ui.open() + +/obj/machinery/vending/assaultops_ammo/proc/fill_ammo(mob/user) + if(last_shopper == user && filled) + return + else + filled = FALSE + + if(!ishuman(user)) + return FALSE + + if(!user.mind.has_antag_datum(/datum/antagonist/assault_operative)) + return FALSE + + //Remove all current items from the vending machine + products.Cut() + product_records.Cut() + + var/mob/living/carbon/human/human_user = user + + //Find all the ammo we should display + for(var/object in human_user.contents) + if(istype(object, /obj/item/gun/ballistic)) + var/obj/item/gun/ballistic/gun = object + if(!gun.internal_magazine) + products.Add(gun.spawn_magazine_type) + if(istype(object, /obj/item/storage)) + var/obj/item/storage/storage = object + for(var/storage_item in storage.contents) + if(istype(storage_item, /obj/item/gun/ballistic)) + var/obj/item/gun/ballistic/gun = storage_item + if(!gun.internal_magazine) + products.Add(gun.spawn_magazine_type) + + //Add our items to the list of products + build_inventory(products, product_records, FALSE) + + filled = TRUE + +/obj/machinery/vending/assaultops_ammo/build_inventory(list/productlist, list/recordlist, start_empty = FALSE) + default_price = 0 + extra_price = 0 + for(var/typepath in productlist) + var/amount = 4 + var/atom/temp = typepath + var/datum/data/vending_product/vending_product = new /datum/data/vending_product() + + vending_product.name = initial(temp.name) + vending_product.product_path = typepath + if(!start_empty) + vending_product.amount = amount + vending_product.max_amount = amount + vending_product.custom_price = 0 + vending_product.custom_premium_price = 0 + vending_product.age_restricted = FALSE + recordlist += vending_product diff --git a/monkestation/code/modules/assault_ops/icons/alarm.dmi b/monkestation/code/modules/assault_ops/icons/alarm.dmi new file mode 100644 index 0000000000000000000000000000000000000000..3418da08b755c8c42898a8bae53bf8042f58573f GIT binary patch literal 445 zcmV;u0Yd(XP)D@x2wg|Jao#pmZ?R|qsa zB{e6p638^wG38QLaP@NmI|cxtNhvjDWIg`?006;BL_t(YiS3lp4Z<)CM4b(2M+hun zAvT~Bw65p?Fal%&Mqpo@evxxbenIN}z0*_LD(VsaOG3BCWeWSFhFzv`7(^y^Sqr&c z2XxzN{Um$jH=d9lm+yO;8WlGkE9vC9-92oZ(;EHbjo zM19oD>3pX3c6UB++432)2S&g>Faqv@6<`mn0Dp5uNG+jt0_;IWDEGh$um@IvJ*Wwn n=Qkm?1hWSivj>=M4}KwUNSQ{eRQIgs00000NkvXXu0mjfb{Do6 literal 0 HcmV?d00001 diff --git a/monkestation/code/modules/assault_ops/icons/goldeneye.dmi b/monkestation/code/modules/assault_ops/icons/goldeneye.dmi new file mode 100644 index 0000000000000000000000000000000000000000..e898f55e2da493eba18da77419a205ea6151ab34 GIT binary patch literal 12945 zcmbum2T)UQ5HA{P=)H&nK|w(2(pv&Z5v2+uO^Q^d7o`Of0RibvkY*?XiXc*?ca%s6 z>Agv>p$9_pj{p1Ky!YnLow+l2COIePD`)rYw`cdayIAng-cfKXkF9HzK_cHpt{7+D_nWreymqK!kw)4=Ezx=ju?qn{%k2T zgxm-O9Vo_7adx_EgFrkWZFN;+|LonI0AJ3rj9OI5mhMZlvVL=6>VWrWWOh-sl>Y5D z;-nwKDKiqo87g%gwN1&B#h4NDG~M>Ayqu27+P{C2R_a_M4i_Y)u%T%uk8SrKUe-wd z@o0Q}%l*Xs{;`dnXR0ZMtRN(f!MQz%*1^vn9AlZyAC+H>X?cuZ5 zb1aEk*ZUmR4R{Vpq{X(9xRKk<*tUEpgb1m)e-YS2+vqwXbJA!5t+#uqsIk6{vpjsO zE~z4Q>{A zH`iPok>YYRwCH}>g}xlW;2fuq0e5qD*9RI~2L3hKB`6nt*><9b<@3!jRCosi(_s0ZDyN{@fvOo-UVQY6+yLhWw?ceibjOdWb$+tk}7V#hhBS~;n zY?nQ6S#7P>v*J&m1Xq8LV-*nm*cbgE+D9gzSv5T#-177fvzy3x_)o+_A?74JfxOq# zN*~BKhxghm`nC)VlEIch6#B{)UQDxU6#w<$4%JoJbfoGN+TNnugp4&s z?oBO57GiSPwfoe;JXl(aXqA;>$rTrJl{(LzUmDj!hFLA9Y8;s71QOai8tQtsZlvAR z*bN^~LJT2zpSsqCFkSoe;XWo;@Si@MeeyI(cD z+LjLEnZd1Mx#68i|Pj9Y*ArX^R+!z8Tp6Y_;>D$8U?2~6t2o%cRAFN<;f zXjK4N&0nRN%e|(0;R;WtovE#GJ1T6#%p021HAnXD4yQ_7<6EPjuJ_*NS2z4rfzggG z)yQmkJcr7OZS_LG7G0>!2#(Bh4!+zC#|0E{f19o3xKphsgJrk&qqV4YUoO|ml&cVv zXmwXx>nY0;7o>{QcY+aiEo7?pJteiy1lGhVgC<)XBn77i5k=VgEkuO4Cjl=z)-n8a zs!T*{(tnKAvL1VnPU?q&d}HXF0lho<2wxKGnIz3t{EE?pI5#L43+0eBj<`IM2 zs=`vdi4Gy3p@uA*Fy-)o)$1FVF-4^TW7n0q#qxiBa`(_Xgej|QhvFWwiFIzD@UUf8 zq6kxMgN6hnu!?R!Cm?)M(d$GifmOyLpMFzC=jVdvlTT_m zvE8p-o28|FmW%3*;bv)uEM#U3m{UK=G$ibG6D7iys7ef{^1W2pDP64hoQ$#lNbVyk zd@wJJhMmnI0CQWgGCQ~>e^J9ezg1`n4^bWuFaM6Lv|NRS;Ve&Kj5fZ$##hU!g<(c% zbUbo*x%9NYt7+t2{*`bvEAu+o*nkG;i0peRB#$d9C|sWk7{-B@vEf_WFXZptX)Ru* zh|X8Jg(pclYJC0rWzQFEFV$5fy_k`YgL;x?XUMCZiYOFRuP<{6!C|S&WLIvkNp^rnL+!{`2rGrmwly z{V{ZVD7DuF@3UVvQoTLZgWAJ8fusryLmrY_AM77cuxLoQ`OB#rj>f9cA>j{9w&RqE zKjVsdjhtk#hep$ZDHwg$S8XHmi!c$NlFwn-)S|yWAl-V`|C--CuyPVYG+bKG(zFHh z%rZA24HA%shE^8zlncLUL}H>h7zJl}+k!uz@GBFSsTqm-lg5v}$XZBD^{^OXz~(w* zXW2`F?zI?Nh{_{VzP+pz<0CT zBXzdqZH%LmQ$KK<^J@jibH8C#{CchW^vgdgTxvd_Jmt95=L}RIwx{#msq`QfK?NDy zkh#6UJ{=(#a?C}h{SbfjWy6h`RJ9itKJEGC{J-fMr$*z4XJp&Z8SKa$VYL4C1*hxK zP;tmpdyzlBpjvc}FG+qnWoRzPo3IFIzr3mIXWo<7H}|gdWbR{h_*R2vyRpl0w>ox{ zcpu$s@eix9O!`5QkDdRE4T2l?K0oi+C0?dYS%*3Aj-d0;gs6L5vPRl7C?JUr)eHPac zH2A1Z_OT-3W-v4f&lvQ$rTckalP}|sqxBJ}oXiWWcef1XQ@Yikbw0jOmn7lk?LLyt zx?^1#+n{kIFCA#}r-|uTz~1@Qr?q|dP5laj?iz8=n!X5N;r|Ky259)qx^u}_Ufe?X zgASXf7W&`<2bx?PAh9X^$^|lH5YG_)Ai|a{x;y&*^SpY}hy9SE~wJWkD3qG&-Adw{^_iSM2sGltY%?t0%T->EPYqxQdrLd8(@cuoqX3f&Gz}REW zLMFUsxdt=B&7QzW+Efs-y=fv78(-8Tr|jvV?^4vMM94sb(XlMj(l=G|3PIXTjHE6!7Zbj3^KIs`yj(Z=weynQIz_ zb!_*7ql6vfplS%+B}#!LTqBYxf(OX}uk)bW1+g%w-#j1Ut<(6>??@cdY98_@u;7+R z3y;ma7lOK0`X>43lyf0rxdtO&6r98L~rY7<$G}J^9z1 zGMX83T;uo0H$Uv{$w_R2#`&*gq%PAf>`WN0NO&DK0@&2n53(H(nb=+i3Z3V7D7KAF zSpItZHO+K=^eFNI}R>p$YA{jv4-{N#Z` z_m&RJKTISG%ae02`QUm#e{k2E5omErL192hpGOd@^>tb6Gw={Lpnu|u$T!65=oJE# zgPMTPK~&b)rT@3PBu~K~g4ZpH1?3_xLOni#NOM0oU8j801z9tJge*D9ERyU9Sn$3i zqhb+rZljRGFVBvnC$2auw+9n5U~TccJ6CP{2baw@s&)qAdwXbSsVZA^oczeTpAxif z7GoBB;`?~q;0p(mRP#<*7P@^K?A#0nGR_roxaijqxgAN*{zpvix(*K7h{Vp{)c_q9g))FH{~h^MD6*DV0q`BBq(9Au<2|| zBBTln_Ft=~ytZ0LB=>S>Ev2^vczD!uy%5ccb*((3tWA3$_TBfkMgrLc9T*wD?ceVW8aN@7B?gktk zhD5iRrn2I*g9hvzf|bQ`ruzd}g#aNojaFs7e>yhOa;&sNPwO-cQJGlRV$t{(v_!|x zAa^*;tveN6DD*|JnkOwvei+?aeg*Td#a?Tj#|8hbr-HWMSWl9^`nK2^&Yx#e!bv`bsGJk9kPxe7Q$_gdXyajkda)5;E5jW^7# zg`B(>oN>*-)8j+jWf^lOk?D7Tj<6!5->f9ntU8{qt05((;&)&o2+%VWVFzGhOBUkf zJDcQ5Ud_gqTY6gnPji-YApws6fys&?#37k@zMCqN&;?8Z0ssrGi)E%8piuj5xEQ0aya3!$7fl)SuDHOZU@qw)>KWE31C%u< z+m}{;X+mlt31;s>z3b}2k1A$t(BY@8AzRwZjVnl50*s>-fM4TM!aAQ5AkRD=wrU#NU5Pl<@=61VersL_NJY_rfW; z5d8m16IOnVSve0F$7ArI1}MU6a|Mk#D!p345%~t=aevSWtLqk*Xj%baWa}};j(1@i zru*M2SdO9f6A*hfh`@gn3G!bPP}=zQ=a)`v^tszdD4&aS4$NTt>0sYKeS)nYVtQRk3{y35#@WRmFO^UB z)QDs~-dcHN7za#qN{6lN!bb3*nOaxJg(b)MJ^j+bmfw4}mudaE_6rc3&Qmwn8TcKK zCco6Q`}?>54nnGZR>yUt@;|%^nS|IbEET0*oIiD+%2q^#mrYHe2l)sYt^|$~uqoyX z^;FAi=6&hfdyV5ilL{dC;OA^6&tt%8}+c28}{w~>3dDRD#({|igRmDZ)^9GQ8a z1aDP-+3K9>jSMZJ$p6{4d9!D2AZ8_ftiN*`!(&Dbgh@eIgYokQn3^%ZIP!5#tEqFK z^(rb2rn0?tmF+2(-w2QDnCI?#COZ4WJTh?}BYW*6Bjbrxtm$I@tCNrtGYXw&kdV5{ zbUmXR#cs_HMBaoSE_UYZ`cqLSvKf!OkP)|>`YM`r7xC#6%nlKrl#DOM9L+&)regtR z<{LsUoM!1C;hgZ1@0KYCATz%|&&7Y0o6i@pk@9jKhGx=`xn5$5r?zobRGHDxkcDaH zY+sQg4f&4cY4Wbf2(L#NHf2+#YKmvqs0HL|PPwA9pD?~!yR)&9V0`-Lg=;~;-zV2g zY44n1v$U)oYB)6S22~X$z|0jAD_|YYn{AhWAhr!xHX*K!cc(4+-9U~q`8bz( z!Ea=Fh$Bs}v4q7BihbRW=#E^cm|cT+n9WAeu$oiQp~Fruf;rk31mU5o_`|fBb#4-kPRes{N9-_#q!3c z(K+tWi<>L>Ywp74@C=x(A%OXX^S<@R3gHHvxNNszoY+oF7%y5+Z;#<{F|O3K3CUI= z<^pIX?v%|6|Fhtn?XrR^``70?SenToZK0g#H$ovH)a8n(Cs?Cl^uD!EatWOf@8OGx zoZGSB|=Y}T2Rw`fbeeNef7ZD$_JxJ4DVAGXCXvOBLsTZEZ zsxH&-O?xXWfl{~DMk?H`Jwba7@59FDrkm8j7-O9JF2c2c#`qPB#4S{pMP-B+VwuRa z`g11Z4C6l;^ap3X-0tX`fvMs^sme4yV7?|HiBPaZoUk8zCts@sz&buR2J~YH1)N=Yuvq|P@2a%lXjtO|t%a+dt zPcbaHnEmlryODtfan^W`mEJd4wkNqx;}!GYh1Ltc_grt=IfkaWl*pv{zP}LRvguP| zxQ@J(mb9tFN&CG4a&+p)7;6Q|V4P=``gUh+4JYN+3T$4Bacp$7Z62KH@Zvr#vJqGDFsWwO)C^ zW3E!q_#wz*H-XJ29yw4sZq=>HCHTc3+)4;d@%GAkIyA&pXB_{u*;7E^w3U&-XOjHc z!iUJ=NLRj_(DD&=IF6ACL2UYAruYr|exgD%8?YNb3yU2ZN7%1-*#9{synJy2iUUzJ z4NE2zwa#j<&re{$#F;qSWc9hOn2NrhJir$M{%do^sRLDU3bXj<@Nho*5SSZYr6;TjzJsZZ1HQDauLco+iZBOmRz_d`yWJ1U+NOB#!yia)TZPQ6_Ix}L4)F@WXau@G$6f0ZtZOHL!#h#$?1ROi(bexrBZ3<(nH2K^gq#Z^e2cG zZ*>Y$0SQsvp8bExB*@o66dU1%wdxvkY1-_e|qZ69rmyPkPqQN^#sZIH32gB z?aL`4wuT_JPpG~kx;GX%SOi1n3;Jd|>t-!@3jo00Q99 z6W#4+AT}kqFXtroVgI^I4~iG*#mjbK{g*Iza)v!dQ#_%*G*Ep&+h#4#B;?W?A!DPRu-sKYb%R#EN4Ia9%JbBs}#)BygTW?Avbey1y_t6 z0Tp*?|L6RT)NW=h>ho1qGNR!>lE4BiZ9&OX@9n(rOt~P5eaop95o5<`UIZ{@5_0`B z`JXfJH6d6IGXg1js`VisrV^fnTeldV;ipg=#}O5cL7r!xwJOwxYekpP>)VrZTOY|N z7ZzX3kW{H%@_(FAn%7|z+sBn#yu*T?Xev_%H>w&d+T>dwX`sH+UcZpSC2fU}JD%8< zbAB9!@Hh{TpdY+yjVQk$(dhtQ<>dj@-PPhT?-VRac&Al}!XBq_ow7HnP9}kN+PeY| z;`TViDYtxfFvNpiTFL5sMC6|i{)F5LWgqx_#k@<FW?(a2QX;Wyp1vG4>RvFD zS9{hO5sM?DJKXsca63BVH1dNxA_CBsma!9SPPx~~*3S+_;OhZxG-|e#8K)5flU4Ja?whX5`44 z>wG8e@h3W|H{@6%GeF3pdGj#Kq^X^0kXZApzU1DiqzP092_idbCz2WVVxpwf+629k z5A&UZOTBN-yWrD*zhE)jrD7;H5Pefgxh5448ko9I!(y=^;+|DKUyUW>`q0nr^p}3f zVkk*EMD&W|-YNJzD}8URxf$_m{mj;)k_i;FZAe4@ZtR9=`{TqL2&Bg=oB-HD|6sCk zp}p!Si6dDBkAJKA$Ad6%SM0M{T;Ef(k?)D?I_36ptyc(-RjfY#y2o48ZRYgl%xgD! zNDW?wI?gh82qxcJF4-z@*yPS+C7D6I7TQ02XmTzv&Yj!e8aq;W-&Dyb<8#f*Q=H(c zYL%LP8JBkA!FzfMt9cEJb~#{}fm7R;L$pie#=Tlet3NUQ%)TxhGYpEHvP-KPx4Wt4ljACmu%FtVh$r48i~NLt=M=uMEZJmDp! z;Cbp-kh^#id+QFd9qSyY*)g$}xcAsMF;67>zgY6ZZMuo}_Q_(i?uk$WgMBRc$o{ zn4*A7@=C9MDl3`2{_BKk7(8hmdP?0?7-AAsyIcZkFF$82 z2~uJ3l!y)gX``(OPH*XBjJ3S%6+28mIx|~3D~D=lIY}u0x=Oty<1g7g$60mtUNVxt zp+pOk54RnZT9H4R{?1Y-U!$jv!ipVfK{`26q3awCgpzht)w+#YdYVXD)PMd)c` z(<0k7=~qYn_hChi19jb_68_k?@aT9x5I2=+6&) z%`%;>FUhs$?rpa=hw(34m%gK&gYb|*H}If^rX}>9?cYx>%bN)gL3DE`?51T%vWvL9 znGt9k?QRd~>udMksQ<#lGgibHz3AZG|LyeF|H9?|Px&$+P(i{cicv2Rp+{+?g)l&` zSFYO6;+>xKcRACvd{lUb1rxvd-Fp!o%BMZDHMp4KK)WCqT@SeEpx_IRQvo>-Z4$_I z9T94<_iNBXZeWrS~=(-cI)=sq_*XsQnvIlqT`w_qQY+PsG z+?3ir4~9}v3$vK@jVup}+xy+y^0X1pRD+AXWuva@1InW$e;c7!I+x7CruE5j+Y?@O zh40CZ)+NP<*p*f(wI5uM)3jvPE4k|;H~Xh2QpVk;eE6q|MUdX%SvS>+Ub?v^iv}(P z#$V+IFbS`Wo!jIqJ-$svOw>wmgaJxfKvv>da!cRlUM7(1XJIqn+}X+>b);V744m1l z_6hGG7E-<cs~h@{Gg_Vw)`tbK}=+(N%Lit%$}p5UEB>%6K&r{ zf9-x|UPv3y^?~0Il>!=|WRY)El@QtwjpHvgLAB5hE`@nf`qOdQpKsj6g?=zVK^x}n zdu;AthcAxND+pS-z|wc~cK!a0%v+uMZz0?I;Blz0$u4q@O=H#L<9IgOP*l)FElCDnqILHLx(@UKUpKBnJ*Ny2X<~ zOkneGZ;%-s-Oz!JJfM|LfL7Wfh<8ZWj|D^Iy1GI|1-cS-9v#y#;6*LTpN}S8gH7MTnCwHvfNfTBsSAz2+bK>dHogK=6WG1SQ(05(M%#yZOP|(cPm-2WZL*4 z55ryNL45#A{@>gybik{o`X(pEkJiPWyV^52Js_32*nr8%bZksgxR`u%balN}HC4Kb z9?g1z=T6AV&o?`7;)X-T7@DrG(V-?{2Ay+1zm(xlP~67T*tSe;#~qNop;%b|wVfh( zx8%X^|A*8xisx=V_WgTl-&e0}s@~gHy)WtQ+@5kROr7l6*xJgitmKb}Sa=j+*;!bY zedR;h|K?rpC$}T*DXb_W#hP+N!DM7_ojxL%5XjI_HA^~hmval>7w^rkp*Z4n-k&g| z|751WsL#N)dBKcKL)E}kjej0KdekeC)ql<^|E+Y&waZmTve!H@5n{2Q@z+BpgYovA zrC7n}Tlsvp@eOp{z?yVF*G&Et?#82iE1A!>GW^_Wi#~Dx;`kkoG9R0QW#(Hc-qu%< z*y`Wh;Qc=K^4Cj|=Qg?NZ{9!w!x0y!|7Y@?4~j|vt}noW73MMDBSc4~wNyxKVr(4} zTZipCY^0V>>oERGfS&cPcC32e6r$oT2iKzG+MPR`@8x*myKzLZ{JffBj0sL^&1_!v z*>#qB_GVqXuUEVpC9cO_)9sQx13&mw;C?UTvx{kF67=fJFiEDvK6~(m`f98uv(MI= zg!qyZ581;1zwlPLtb&ZjuXWz)w`~FBXX@EtDVIZcQfv6-Fq8&I)aOXeR`qttOY329 zV9Zo<5;VvWcYLy0)$3Qb&a%yY1UuD;9lU=;!=dooKCA z*lVn*S&<8nbQ~7XqYx&qkuaisnWfzcBgzy(=ObiHn`g+RXbGJLEUP zc#t8UROV4Q>H%v0)>;=zg@Ke$`_s_l+(WyQO==Oc2gy-96q!CtUk*Fjn?Vi^4#rQO ztat@&x+s#VJb5Dh($UQYyvrza~z7jlWv*uqUS5O#+1Q91i-^YUv+fhO#>o!Fa;QyT1Wt zhedsx8udeVb=9x>9x}`a>qrPIK=Mxdt7584* zbwsFI*v$?|ZI$nEN9iRq4L!YtyEBM4CMzYJf~#hiZc+57to z+CFn)s=(gRAX@ktp4p0cP8_4!V}@_u&5=TF*cb*YzrLin+VvF0RHbwbYXPxR`Rz_;a(fG%4s;?+`)`bW`BsILFtkUDxGv z^J3-V5H0OhVV0NxeC6-1HP>jVkLWqGR4a2+w2DVz=j;GhcZpAxb{bAtF+7H2*~srkYz5(*v)9FRI=x$g(w2$V`=bals&mgXI4& z8ah;xahsMJ$r3NfyClihz$94Xz0F5(#w&S{tBv3)eQz!xO<=}EIA0YLdTQ-Q{p!b9 z>U)QMI&)td`h=mWIW+3yd?6iiFnLrod^8ev!_ME|{!lH@{`M%5cm`Ba{nM9`VW(DL zv)m8n2wqFVAa{s*w=o1dfvdW$(0J(>$b5L$7l9Dc{b8iq})Kciex-%)4#<*QPB^vGww603Pd9 z)e{#d^zFeFkI;hJ88|B1@>K|r@%lm`C+Q%JAlz$`jjE0>3)+85*fXa3%*-#<+quwO zhl&66>Te*j`QMZed~7-F<*J$5oG|HJeDh_uHHnS_bGY61{N<)`D6BPpchbTM48DJ6 za1i;t{}4tzbiImOW&0NbR>(Q93UK-OXQS>j%2pWG^T2)d)x0o!?(5#iI;EJMUnKgwjG-3kL7sIZl05?s&J&UpC9OYguXidl=s@ZFXt(GPZ z0&DXrYEB=Y`D`I>gXroATux+z{euNX`7>ZXqY@&>yTZz^44*k!-6wHLpQCLnJ(Q1) z#6vb7e5;nYFkKqIx{Pm-W&{Cb{=NQ zP$Xix3MY9HzTx_Qnek1`wZiaS22ti4V(v|0z?12uxZUT^@)c$CIC%8 zdf1yjK>v;TI%$S_j<~8zvcr#6t4wfM&XsH{&T#h7n0;ue;bf=_Ae8;O?wXfel9~q| z47VzEl>EiNQhiQBGtCtnt5}UArk07>jJ+aC*6>}Y*BYk3tY3D5-9DIDPZX_Zx(v3q zw_bUcscK_>&KQqBeHV)o_!QJ|h|v$0UpiY-WxDY)hte?t9xr(a_7p1S@M~x=sWx zM!vz!!ojLLZbKU}b9*%B7qNu0%6 zJV*3!NSvsxn1UzlDNFJNiTZ?vk)*&Lh0-0^UwQ)rr5H?w7ctcbH5`&S#H=eU5h$YF z3#qKzHYYn5==T%b3k;<_$uC+V@wLJ*5!g+up^wk}PSw*A=uf`G=U&Eh4_&8;DA+w$ z?GJz-8!EyPFa>*!$JW$t1|c**VPX${4)HPpCD&()ib=ipYu22GPISFSLeXkowv5GE zTs-&N*cB*~?-N)Ijbz3lD*u&Ne<&Q^c?4db`>#51`>n}^R+j;b*%Kb%@LoW>i2i@n zT)ov^ZRsrgo^6*-nRK?W2TCtw`QeZnoDVA5s%y!`+&XJvov2O;8JUQF#}$43{fFjg zl;EQSH&xs^%d2p+K+;YS7#GC;D~^fJLwe>cgzM}OG^rt0j!&lzp^`vnWl}%zk>DuWtp2XCi8*3*Jr87^&z0v-y3~V)iV9;m1%(x7q<+d{ z+Ddo~kTO%^rq`%)TsjHB1aw{;Fy>rG4aQ6eJvKIsMz3@O1y}S+m$?*m!bI2vd#V!V zlK0|(yPQ42utT9yDGv(2i$EGz;EHHFh8OmXOaq*H2s-5Br(HZHR{xx*s` zTSspvqkv5e5mi;&CMeGMim0fR9@PP{sWc54A-{Ry%pG6y(S?IOEUj=@i{QDgZ(?0JK%WFQ zOW`U6o0R>*Jz`yINLJ?SU4JkGQQ;AMB&Z#cE25_pelpeX7!%0OKZ6Gu{fX3H0<2BT zA!2W>6>(C$Xu|$sa$>klWN4Tc{tl%CX82Ls_Oqp!UT{g_-n)Zf+`+KYRPa^L{m5$T zQZr_2L6(%U_k(%$)T7hhq!@BWhZbV7msdowMY($o=fGo_NH_)cxsEHMmax(sW7GyKGtW{Xlu<7+; zddPsw0R|fVS?@PEF~`dq&&4(>U+bUV9OWVVW%x`Fte0*y=0k%9WZQ9Z!22y1 z+SHw_0-3i=tboFOv$x#)yBk4Erj4$mjSVSTyRTlK89ud$OSv3H-5(v}7rlHd7A!5| zD6|kZ6jrZr{8ZF#1xUw|8n!vhl&F2uOkqsn(*>-P;C1mVL$R(nerCt+L{vN^b{i2O)mD#9jA zPV!506QI!XpHFJ>?{(_|)IHuJE$+NWq_(gL1ce_gt~L7MThp1ZhD2^)0BfDGKNobl zmTioO#sNv{Q1fj@1Ss8w_)ZT*g_KWq2*`J+L7+SIJXp&IH$|gEiNvEiQUMB#+@u_3 zsj73EsTM))h4pRQNj!fJ!QvdcJjjK0lKT%()`rFi(2pl%2SLp|$nFo%g3p~1peM=D zzx26u2Dk8_jExbrW&@Wrd(zheSX-mVenykQM-B6G_16%X_EEOHa7nq-eiFa1CNuNO z>rur`I>qrr?`*r*(C=`{egTCIXvjU68&fm$+D84HY~vG0<4gQ~n#`i1^@s6 literal 0 HcmV?d00001 diff --git a/monkestation/code/modules/assault_ops/icons/guns/guns.dmi b/monkestation/code/modules/assault_ops/icons/guns/guns.dmi new file mode 100644 index 0000000000000000000000000000000000000000..71eb34ac70bc14f2fee15d850c946c1588f58479 GIT binary patch literal 1129 zcmV-v1eW`WP)`M>L?O00001bW%=J06^y0W&i*H zyn0kvbVOxyV{&P5bZKvH004NLm6E#-!XOktXZQ-z?#9>P;$qsE4)zxa$`y#EG+fZ% zw+{ygO<=p1oI}oVOLnTyP0OlFL!aQ$xSk!^ezm6LWn|FPa-c+mQ96vvZc8zU0OME~ z1zaGC*oA@;X*`av8%pk8SXky?EXOzu9uS?+(yUNPJlbR~H)T?iGqejT_Bm{J&PPj5 z>dgR&U(aZE&|>BF@T*Hapf8?x?)CurPb*p7R`XH60eAJ`KB4*uMgRZLTK&XTzAgF35P`R$zthw zalD=AtJV_F8?OyP?$=0c^6ACs&86aE2vbc}Ie7Wj)Dc{vdd zIOi~9o3jN|EMIG<=9L(NP?%*IeD+4;%}_F0m}-rL07PtptI1|6IqRH*A|aT3)A4Y8 zB|Fki><96i1|ajxh+gXb1_>rrKh$ zSS))^{oWC!Anm_~dGjmhih~2CAc?39s#@Iec>J3m4GKRwI8X`_a3bX5Ez*kh;Z?04 z?FC8De8%M!b|KXV)%ww1kZ1m?m<$Jt_wekecwOto>S7wk4&`kBNMIs$V4kYvREt@%ilrP^L!-`f)566 z=ij}!h!9e~-aqG*KIPBavSK5OnKnG!!r-Kg%pfE}WI*7HrmWnFG6i8JP*jRhI4d`s zi10OK8bYw4_MG=?g*6&?= zKsfb#$eP3{w&;|OuwFR|7j_8qUDImfSB`NiBHHxc46^F~BH0o&ZAf-xa59lLo*8m0 zK4~w**4Qi-%YTL|myx3cv2B{F4UOJG_YooR0s2}NLMK~xoQ@ER)q;ENa5C>0z<9C0 zG|wRkmW83-QBW3C<>w8hHlus`~06u{!+I2~@-lZy%)R?pQ$< vi^XF3_nEgoL;8{Ka1iK^TPzlfr76Dvc+lQF7La6K00000NkvXXu0mjfKRpUz literal 0 HcmV?d00001 diff --git a/monkestation/code/modules/assault_ops/icons/guns/guns_lefthand.dmi b/monkestation/code/modules/assault_ops/icons/guns/guns_lefthand.dmi new file mode 100644 index 0000000000000000000000000000000000000000..60b40290e55360818b2f4228df58f77d94320dab GIT binary patch literal 1274 zcmVC0000pP)t-sz`(#p zMn)eWA22X54Gj$v5)u^^6&@ZQ6B82_78ylFMHLnq6B85|7aJudB`GN>6BQb-kBj2~ z0004WQchCV=-0C=2JR&a84_w-Y6@%7{?OD!tS z%+FJ>RWQ*r;NmRLOex6#a*U0*I5Sc+(=$pSoZ^zil2jm5DKkAaKC!qsu{5VdiHkEO zv#1!Pm5Vd2C^0t`#5P1#Tb!FtoVtwslJwF%;?(A47Ni#8QmU-r>gNLX8vrx7LLLLC zmJI*^1LH|VK~#90?OTg(+b|5YNWJQiwzhr7?N41Q<7CqUd zKq*Pcl=sz~e8SW_h=Wpf7=YnC+1ME(PU^B08uA8*_$C`Ddvv(2yz19<7(n#d;}M+y zy&)cD7K>6Dj3H7TIi@hGIIDYFLS>~kKPo3xj34nAIZY@e#D+l*$l0-B+q7RvtIuLM z#NYIYA}5S0&g!xx6-c?wkJI7&*)+VrXMGFW_>^D*=xa{omcTX2t(3?e;@zc8z^1+NW|L zr7HtpLakAAUrfOtP9o-Sk6&?Jrso(2gTY`h7z_r(e~)iCBsi70)J9NfgLQj8aHX_M zooLU^c|IB->?ag(M5Nbr^~QmR`UIO&z4EBNz^JuK1FcvQSK%}USfM@f;H=isfLA44 z_k4j#6Ya6Sa$o@ZV6r&x&R|H19-V>oP)?}Xa=0qTq>1+IX3!G~;4*3G!2lsW?iwVj z5UZ%%GunrLsK!)ixCzq}4YhB?54l_InU_c8XB+Cf)41nU3UjtYj_Nu|GL-k=2ui7k2&EfBap=y*RvL~ZSLhz#d#Sxs zsyb(<1-KF`N@_g<*YEu9+&Q}M;`3BRuv}(SxY)zI2G{K7gQ|7qkHD37f%!Wy^Z5l_ zrvIwA!C){L3#crTGhz;}#b1`dD(lR^g}zTbyHD<( zkFQ(i4kXQ%aIH_>aPU5G11#UT*S-Od>2+%A9vf5M(hS_kxV5IzA0vj1Q1$gHZ0%_? z-^@`%z}g!}>KkPO-C>Zbq9qY6MgYV?*HAxXX(I4DD%<_BjxixJU3!V7DkOI{o!fa&Gyouj(BAnT6R(A0@ kalZEQp9q7&U@%Pa2mD4Dk;Eu-m;e9(07*qoM6N<$f(s*4Qvd(} literal 0 HcmV?d00001 diff --git a/monkestation/code/modules/assault_ops/icons/guns/guns_righthand.dmi b/monkestation/code/modules/assault_ops/icons/guns/guns_righthand.dmi new file mode 100644 index 0000000000000000000000000000000000000000..b2d90c8be8a0cf26bcf4fa1d8aa3750753315beb GIT binary patch literal 1258 zcmVC0000pP)t-sz`(#C zA0I|WMhy)OFfcF@5)u^^6%!K^9v&V=MMV}C85I^86B85|7aJudB`GN>6BQcG2?oLd z0004WQchCV=-0C=2JR&a84_w-Y6@%7{?OD!tS z%+FJ>RWQ*r;NmRLOex6#a*U0*I5Sc+(=$pSoZ^zil2jm5DKkAaKC!qsu{5VdiHkEO zv#1!Pm5Vd2C^0t`#5P1#Tb!FtoVtwslJwF%;?(A47Ni#8QmU-r>gNLX8vrx7LLLLC zmJI*^1Jg-FK~#90?OWN7+b|3?CF=0@SpEOkmWLecupMt26bqDNAh9WOG^COTD$24L z3-7Mz&vw^5k>}jKwxW(;aEq?LYFh~l6X%f zvGau3&z~{-oCZn!7J$(+&|QqtI~fX%^Nzf-!LKVidj3N4lL4qS2z|#<_*C;=UoeGsn>W_%P7i?wUZueCno!$JLLCR8r_>-=NL0)-5 zFv^frASb`(ehpBUApQCUQa#RKACCQk&=N!LQlJccO4apo#pPk?Olhc}lu%xQ-Tm*r z-pbNFWtx5`A~GM}6QWP}32) zZw5fFD{v<~e+W-G_6HSt`uV;89ZaYF^%IVFe9a98gTY`h7z_r3;oqSAbqfRK6*hoU z3U_jVWga}Zn+ceL8PGi#ibHM=OX1PeFxCmq6)e*FLV27YkP`$;_w&8B`vZk|x{YFE zpxDBlIT;I&HqK47Lk(6xzPQb9_gFds?AK&ivlJ$*6b}Y|Wi4A~!smwif+j0kqvRGZ z``F_O)L+JRKcr=l2i-G)*0&W<^o`ap3a_e1L-;#^zrSOrZ(5SWgdh@uBw9v9_gMFsCh@Eg(xkCqUdq>RI;vUn8g!qFM%?IO0xul^wQmO&1**~!fxFumKr}qs4awg%%KaW!JxVT zG4KXyZq0nOAO?fMV0ayW0F6Qy Uoud^MP5=M^07*qoM6N<$g27rmyZ`_I literal 0 HcmV?d00001 diff --git a/monkestation/code/modules/assault_ops/icons/guns/guns_worn.dmi b/monkestation/code/modules/assault_ops/icons/guns/guns_worn.dmi new file mode 100644 index 0000000000000000000000000000000000000000..1ad32551ac90597d87a2ddeb6394b4f10810bcb0 GIT binary patch literal 1189 zcmV;W1X}xvP)ZajsO4v0d!JM zQvg8b*k%9#0ET*0Sad{Xb7OL8aCB*JZU6vyoKseCa&`CgQ*iP1rsnq&=rjkbQ|UP8xbDEq;N8HHx53C>TOcL10i# z4xz_BQO<>e$t7S2q&ejos*5zE?w4KH>c4~Mw7cKvH=ow=Y9b4W~3^m|+JDhA;AQ4FmdCz=*a$NSInvcEH)^i^Tyk0Cc}} z7YBe(>F~9VQ7Q$-=23q?rO7GEII>d^&FmH^0+j`B%(h*CzO-9QqPfvEx|rdA8} zuBMB|3HmNX9UDLd%z+mn2b>z4dNiRukW=IU-4`!##i$>UgDdOx={+!jhXBA;5x~Yv z0mf`xM|<$m0a(Q<#83T!GhF?_x~UfyE50f7{s2Ax(*}dey843!0QUX>>0*rod{gKB zL1hzt8{1&#SQPpLXP1Tm!wr>kOBXS zF4Lvm6dDka>}ZvR=P2Ne(g5_zU={y$Jlw_RV&mjtQC-|?WhNxSrB#=trxk#$DR%&L z!5pC1g+h<>*Lewib4WToa72gBv<7~>=ekJH+ff~ogAjG=qzgR(7GyVARF~U8Pj}f< znXVBa*F_6{a~q*I&vf_#IM?wWrWL|CL*ax>e zTFs)e9-Pta6G~w^c=&qn3IJtZFYSP;UlJh1X-Poswo8)$S~PwD2y)Y-a@Uy_00000NkvXXu0mjf DG-V8i literal 0 HcmV?d00001 diff --git a/monkestation/code/modules/assault_ops/icons/guns/magazines.dmi b/monkestation/code/modules/assault_ops/icons/guns/magazines.dmi new file mode 100644 index 0000000000000000000000000000000000000000..bde51130832a3d75a941b1804f15d77cf0947c29 GIT binary patch literal 1519 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 Coo1~7 literal 0 HcmV?d00001 diff --git a/monkestation/code/modules/assault_ops/icons/modsuits/wornmod.dmi b/monkestation/code/modules/assault_ops/icons/modsuits/wornmod.dmi new file mode 100644 index 0000000000000000000000000000000000000000..e9de1d77f1f73d0520860b8dfc914533fc2fec34 GIT binary patch literal 4454 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 literal 0 HcmV?d00001 diff --git a/monkestation/code/modules/assault_ops/icons/sunbeam.dmi b/monkestation/code/modules/assault_ops/icons/sunbeam.dmi new file mode 100644 index 0000000000000000000000000000000000000000..7c490c5e6283f55230ecabc9c3e1141043e9b5db GIT binary patch literal 3404 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%0AoTH{U(wf?8JecTq?6@cCg05 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�=2BB$ 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�P_M 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'+xQUvrzLmZC&!-E+Uu z%90cDzmn%9aWhOi&cca5BT8dq#9XjJOV4^qVBFhdhgBB{7Z7zA4?a1Er^p@!oNw5> z!7a6BH!W7a4&I>Z@W#&i<($=XOK@9hYQqL3-na?#(xK<&g>Vax-RVu;fB0||RCjw` zIH4^;9zI(M!bXqygLgc}b*gl@Hy&h*e(J58SyOdJ^&59I^)Xu;*j(H!;W;29?Dta9$ee^ewf5+SkQ!n3i zJ7S+azWd#}eO1z`HDf&6`VaQG!>t#Od=Ae%G?srt-W6Y94qDVL2zj{uo4BUz ztWcy~wOi-Ico9+hYsKf;Wkj%S1KoYYL!0e3>J`|Lv_y`VS0lI5?Zx!|kGZKO`!Y*a z?l0L77~E#wYAWD(e$!`*xC}2nnm8A#K(v)*Ba?H%6NfX1w(($MM~cal>$+#|5B`8_ z(P!BKwGNn?UkCTEj_N)hz{xuDgVTFr>He@qy`Cd&8y)?!h;Y zSM!Hz9hvNCm(9UP`VP?Vx9i9^O1#5z-I41GPqTdz&OYx>)&9QL@A$V>-19xV`tpeQ zc|T9~92V_0+Ol(RM!=mZ{WMU#(*`N*Dj;#{>LA5)=Cvs{q30K&b-U_@LrRU=*uR-L z4rx`|33xRyTlIiLuion5HrL8^0-vJgpe#6eYhesE;q#V^vc(4MMW|KUUEM}-@&HWB zq&P5pMK)9)K?YuD^hf5DqjI5;Bz^g1Vc)XP`IvQ{nidl$|21Uyr1o6**)}t9?%0-! zfBZs5)0ba;{@8(Vw?FB|>x$!;CxyjlJb#u&GM%Ffl1H5hp5J%Bo7#OyxoI`0YyTg! z%Lv2-bncN+7_1UiSxBZ%@*Fm}(WLrrpewi;Uu4>zD5k#|)@Q z6paG~(8_B3ii|D~fx$a2f)ENYHe9|6e)~U52Y1brh3qxz>)UfpjYc)_S0F;*gR3q3 zYFk;(&x7eNe!u%^hUUwATTaz>9y_3ORbOl8hkSGMmhPXKpVS2G5!yx=82uwSebRtGAj&Oc9jGO z?60~)x_f?6Hb(d$yC=KC-76SvZ1cEw!|2M~bhmexJyv;`Ew3nIG>aXI`_*wYo9MM0PQ}JG(YeDI-S|qI&3$8`o4U1J&?9U4OSXu0kGJ@gL=jl-ub*1}Q1ZAmYeR5@RtsGrXx*(I&lUU6e%X(Z~N z6nf~MDqt{A@6b!I1`=)eay~R|2RD!`AKo5+zB}6(JjCycq0!bY@+k2q02jBfxdfU2 z;G0}=OdyYUf+QVur+GY9 zh2~s!yX@>8twELVVKs*DQcS?i^TJ(k;BvXZ=piWF++Olh*g@t^!I? zv){*-%TK|wHL^-K#=%g-M?r=mq#wNQ!Bxk30>=r$q^`3%UJLFVCnW!c$q;&Ms}pw=1YP~%Gg{7+h^mc;`e00(sKYakj{UyL!> zYEy zIDP38ZX9oI9d5u%LxpQdHtE-z1z=CVY_ThC@1s)kH827tmGhJ;E#;Y1R+F zr&G7+&CG%ac~zcG-cH+FBUQRne!zH4e{JAG{bjESBrgWy@6WD;ny^#AwxiP%zwm)M#MqNFtd?Hs%HlmFk}~ z4XCV)%;YMOM!SoMIsx$^C$oFh08!hXi44s*&hyE=e||T1q^H7BF^tNSR=LNA^p)9* z0LtAIl%-AdX;dc29EpRJS~dYfb@*JQPZ6!g0V=aY(~d2Ypi1BeM55W9QyJl0xL@0pVKCG955-yCgk_qz z4?E|bT3fvKx4l7QWhA}!O)i1FVf9h#fk9~PQ1PgRIB$xmoYY5Kp}(#vu5SNy> ziDF_v4PrE3+%L%Q(F9umU{Mi|w;92!$PlnL1_PB$+$Ngt*g9y6*jkK88Qi%G5GAsy za~;OzV$3t}gcG!?ft+d>rB}Z>hZW9sZD?^)j^maUrK z<91%Pc2u2TJ(BG=t=Kdp`0T&Z`~ccIKZ983AK%LBTEANGIUb<5@E&bN*xr0R<&9vstFm~uO?KriF{e}2XfM^~yhuO{%13foKNM<=Ah zrFvbo*9NoZkiJ4lZ%F<5p5<(8%3L-0^%@wvRkF5XLAiR!hQvKnC;0(k>a?DdFWr3b zx~t}Q^{CCcFU)Y_n$Y$Be4~AjtRxY z)~7$~8X2v{Kb%J9I+d%(R#|i0>DMX^KlvYIOmS7-V~eBYbAM!=wdTl||JmWo8AuQJ z6J~W6xr-AS&I-By;Cgm%N85F!6T-|a*lxJ=f4vgY)w#{h>0Po!?P!LsN#@thMWiA=qt9tcp^uz1>Z-0n zJGvTA^J=#~(g=EGo3P7@)#lc_G5g0oe z+jF{x^&i&F)COYyn~V|lKLZW8WeGk}z8I;_zWe&=^T+AW(?33bo}HX|H9h~*c;wOG zPu0Iq-G5lW`fRf0F;U2hi3X#UBOiiy=l#%F`tXymNR3-}^h9ldlUIF1n7CNgHJ71o zZA8LQqqu%|23)TB0Ij0^&F;1UIOayB|m~rw)j3g-8J&D)V?9$seK`{9xg6oqj?xq|EsGK`%aGpt5NAnn}<+n+)N1!_#N>B2F&0{RS-OU z&RB`&4FaweLs%rp>>adL=fct51j!<@Y8oSa6(2Vh*uS`mJ7_7>OX`z_B(qN|%hLedZE@DqCI*=$PJ0ec}o{DC`K0m0aYV9swUPcE% z+nx%mVfSPGrsLqIBZ3aN`zUXX?(~kqvB}i^KsN>ZVGD`9_ZL=b7y(Y1nw(@UF&Bk7 zbvbH0iN8@ySe)o(@B_FS`{p@Ky619rKmTZ^QbMc4K!*Jnbb z0StLPv*#d5FYbB^)MWDT~WKJz%5#~q|29?@Dh8Yts#1)XgQ?{-{;KEYN<%dUoW z53`5laI8ll|0_Um<*r#JtsOQP0qlAfZ2R^NOtrCRHBoOhz_w=k&6VEBtI!_-G)xpO zTQkkQE)H%qmnX!1ax@^BIS%HQN)Zk(U7$RdMn6JVrmTN|HJE8{Fi^ugUGsO#v`E)v z!Oy|z%GF%Ur=;@|F?Kw1FLlMtfri?0!|+FGE+w~V{T88$fdzpK3GWUQRwMFXUB3AR zXyVAz-Nh37d@RFSHd(Ci$u#eZI~8QmEA~iUBb4=p`&kAmB4cGDRW<-0k7it8M?oN* z7)_5k7Y!i+G|#(gG;TBjAIxZ=;=ui$Cq&G{P?$(Z!fKe&ICSE{Nu)1yc%YykfFt%; zJh7~5*hvWuh=PHET~v^<)hR1%v`MZ{cLgU__Fd4RH3$ncr7<)MoM7o&?d#2VF^Ue# zPAIuWyV#mlkK1PR@ld;*r>l@c9DxWN)c!ribcwy)gA5upgmyeRC}Rt+!;FU1Z_9&D=hLKGB9<~q;X(g+w0 z`YOz5{3`#8a|BslOfYiMu;ggU~$20`TzYa3KlV zjl)jw1SoCL8s}5PIk(^uxaq1ieTlGN&J(1To~QMR>?Mb%5v#pOD_BnKW7ijEiKWfjUNu$csC6ay|Q3%Ngd<2NAhJ{_b<@PCH=tT@bFL+AE>5< zHr#RHO1kSawW#Pa#<9uIXlKvIZqQS#U(ka9HfSZnTcZ6r*Ae*!F$d>fE}Eb}B-Sai zs+d_5w$7#Yk)!|$+UI^@0ArG#E7xWtCppQ5M(7FAa&;uIG}p)xaTR;w_qzoYPDwz0 zDOCFT^vg95!vTPLC9tORO;p!BPyjQ^fRbBSLjWT+Og_1Y|11^5Z2`q~gWZy2OF>(x zZ1oQfV*@O%whfntIsjtrvkPIe(4^DeWXp`RDQ48arXi1`?^AQ`?!&pj z&8j!HOk&f}V=NLuz}F_KJxrKZ8Tk}5J^kjOm@u)a7Xt5M2eL5$Cv>yIV~%(`<56w7 z52%8`8(HRRzWAg8=%XB%azt9HTLuBTb)r6WAG8bEdpAOql}o;wO6me23xOHZo&W{V z)wk6l#k_O?_mzsrNmxR`nmJc6Gr87JqrKK#aiM1i>9O0uj*JI)A6LGvzB6;>xd#sX zX&v8vwBgrO){CV1b?`!M`QbB!C9fnO{%n0d6fL&aRY)Vcec%hiN={nm2|8fE~t}T?U_R$ruKJTg7&8vZp1sCtmtH$n;9$|7D!1 z=CPbyjGLpoXdzaCanh8IM~T`*gqD1rO}i?DJxr1$R~HX5-6M790yJbFbjE?(Jp=jx zt(dg|PRS6HLC@1JbVCx>HW5&JVAO7%sR%{{$!@-gR(v%$u8&ncA|a)c%uvORfcB(C zd1}AV3}Fax=u%{=5HF-;+;P-=zqIFshcdFE^!y;u`u?JJhrHPD&c&N2ju2$>Ig5Io zPZb4UhrkyVZ0&yY%F7zY_j%p&uo?&&m7<-S(J~vuRb>~3)9D5b17}u9eDhfDR0Aun zsra1xxhO}m0jzmyEhOluLR7W}9w{obH$^nuy#rc6dZ+=umVH28i;>ysd6?3eo&c#5 zPuZ(u*2!&l6=0;QWtP>DKKPpedUOdJ0UM_9%-Eu#nn*gK^|e!54S-nFHJKP!KYo6Y z9d+#>cv^`}tiiq>Me)RAWlE!#9EH5^?l#nj?Vi}#h2ZB_XaB>SmX@|i_56>xvE2WP zrCOH}zpHAtx0}KwlQN%aHOFaB#_j0@(%&Q#uGD8KIYB|OHK1T!olsP1s+D8snvML8 zw+U6lK#TVLpd7P%bs4u?;(y zhJY8t_AP>{;?}9U`yU!6zpFvX67-x}FBtdxbO*cU|Lf|!qnb?GHa@Ae1VSef+yp|E z8iEEC4K0Qc+)#8EMFoUN5vAIY|KU4Ni67&+U`7 zru11vOhxpHGB-yf#`g-wc89LGCJ8UGd?x!#v8ZD_bpU|ua0^v@Xb06ld7!|20K|CL zU^A({$wj(YcAvQOvSTF*Yc(u>qzaS@;l$pcz5LB+)E*mkfRdlji-mjDfSjp^h@^Ib zV6Wj+Ee6Q?Kbm3(dXMU(tft#p{Z!m^fHv3wfSxQ<2*F)`in3b(nb1J)s!>RhLbcDT z+R=i~!~~BIV4&L87{gchN$5uXQY!+&=yh6=4=Rjqc>6@mr(pV|W(^2QTFX9WX2;Im z{r@2f4uyP2g&y zW)7FL>Uj$|>-_>*Xcdj&oZUj^d5A(8Gp#^!gc)Z5K#PY01A4uuYI(3N<#K?U^%cgu z9(F}p$@#S?7XcKC;E*Y13KrVqlZRnTG;a%08$2L6dug;^iwEbhY(~HX5ZvH=Gw_~39CGM zkB;}-1j*=q*7wBXI&ooeqpw$6>2PO>-Zhq4`klQZ=1K!~K(Zd|N6^fNV#u44V4_jl z`pr>QU`9fO`S4llpem+u6zU|r+aA^J0U`aR1cd5x_$i1U-vW#Niito~B_;Zdiu$0s z6Y$<6%~UK-0lrcvDVYl2_8Oq!Vw3ubPK0<;^ar?*Q5DEd;$eo{?$C=v(KGyj zJaMQOio2T6(RZ7j39#&NG*bgg|B=6mR*ziS_VAmY)Z;);rwEoBipVgF*kS{xMP+&Vq|FO!FPV2vZj89lark2Ka7)5C6el;A4? z?_i<+^G@mc9=^U7_ z)E^=TX6$6q|BPYLI}Rt|H&b+ZQ9d}IpK|cVrg1CVq@bS(1>li48Umnku2s8vzr|tN zrdnOyj#FS<7BFfG*tKQhZeA!WM`BMC(@y=GW2H|v$v6MeI0fD_?lJD-?WS2SCZz~K5y5wYyeuS9n0->m8JG;@rk;BBS>Aav$gq;bchcDC@{hOdHSKOJ5aibZ=; zU&i0s$3Oa|=jlK6rZ2mBacP{;oG|8F-Nb)d)2Hn7nA4zdmvWF7gG%LN>qLb0JaxoNj zY>~;mFepS3KFCxjWX0@914t(veIb=sseosP}D?0R)?DL2_77nZQ+Jhxo~Ltl15 zq-aik4J6?2(zy0>;+rbn*YV^qsphX4yPqD~4~oz>cF)-r^;>cHPwdxaH0L)O=o%j` zDmT%FB3tYTgHU>$$g*$-Zn@P!E|RcoJUQlZ)8gA3jiv=Rh`eM|YUskb(6yhA6K4!L zOK&GFlw#|misbFVvF9|2(!KSE$s)$!5zsj1LO-T5ZiEDAuO#72oqf%0D&dLiHtWnL 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 c`~Xjv9r1s7I%TTJ4k!9$y~sX&@D$nkIznp{L$ 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

R#=D{B5=Y}$6V1ne1${!vXX&ucgvkz=%6fB* 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≧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�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

  • 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%0As`FPox*qz3{#0)amc?Se zSWz#k>ffn4qGODaiyrnm>0iX1cQE&NaVJv)I=9ZA9TOgT3ZE@HeO(a|GS2`$C*9t! zYqJD!fV-VBPH%5# Z_vNTKo}8$&@B4Azudh!42slOu6aY>eQFQ

    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�Kz})uP`utT_Y@ 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